-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
129 lines (125 loc) · 1.79 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
@charset 'UTF-8';
/*
* commons
*/
* {
}
html, body{
border: 0;
margin: 0;
padding: 0;
height: 100%;
}
body {
font-size: 12px;
font-family: "Lucida Grande", Arial, Helvetica, "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
font-weight: 500;
color: #222222;
vertical-align: baseline;
background: #ffffff;
}
a,
a:visited {
color: #999999;
text-decoration: none;
}
a:active,
a:hover {
color: #222222;
text-decoration: none;
border-bottom: 4px solid black;
}
a img,
a:link img,
a:hover img,
a:visited img {
border: none;
text-decolation: none;
border-bottom: 0px solid white;
}
h1 {
font-size: 180%;
font-weight: 100;
}
h2 {
font-size: 140%;
font-weight: 200;
}
h3 {
font-size: 120%;
font-weight: 200;
}
hr {
border-color: #222222;
border-width: 1px;
border-style: solid;
}
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.clearfix {display: inline-table;}
/* \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* */
/*
* layout
*/
#wrapper {
position: relative;
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto 100 auto;
}
/* footer */
#footer {
position: relative;
height: 60px;
margin: 0 auto;
width: 680px;
padding: 0px 0;
overflow: hidden;
}
#footer-push {
clear: both;
height: 100px;
}
#footer ul {
margin: 10px 0;
padding: 0;
list-style: none;
}
#footer ul li {
display: inline;
margin-right: 10px;
}
#footer .footnote {
font-size: 80%;
color: #666;
}
/* page */
#page {
margin: 0;
padding: 20px 0;
}
#page .annotation {
font-size: 80%;
color: #ddd;
font-weight: lighter;
}
#page p {
margin: 20px 0;
}
#page ol {
margin-left: 0;
list-style: decimal;
}
#page ul {
margin-left: 0;
list-style: square;
}