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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
|
/* vim: ts=4 sw=4 et: */
@import url(normalize.css);
@-webkit-keyframes fade {from {opacity: 0;} to { opacity: 1;}}
@-moz-keyframes fade {from {opacity: 0;} to { opacity: 1;}}
@-ms-keyframes fade {from {opacity: 0;} to { opacity: 1;}}
@-o-keyframes fade {from {opacity: 0;} to { opacity: 1;}}
@keyframes fade {from {opacity: 0;} to { opacity: 1;}}
body {
font-family: "Lucida Grande", "Gargi_1.7", "Garuda", "Jamrul", "Loma", "Malayalam", "Mukti Narrow", sans-serif;
font-size: 16px;
line-height: 1.5em;
color: #444;
background-color: #FAFAFA;
-webkit-animation: fade 600ms 1 ease-in-out;
-moz-animation: fade 600ms 1 ease-in-out;
-ms-animation: fade 600ms 1 ease-in-out;
-o-animation: fade 600ms 1 ease-in-out;
animation: fade 600ms 1 ease-in-out;
}
h1, h2, h3,
h4, h5, h6,
header .meta {
color: #222;
font-family: "Century Schoolbook L", "Georgia", "Nimbus Roman No9 L", "Norasi", "Rekha", serif;
line-height: 1.1em;
}
hr {
visibility: hidden;
padding-bottom: 1em;
}
hr:after,
#page-foot:before {
visibility: visible;
content: '\2042';
display: block;
text-align: center;
}
article {
margin-bottom: 4em;
}
article header h1 {
padding: .1em 0;
margin: 0;
}
article header .meta {
font-size: .9em;
}
article header .meta a { text-decoration: none; }
article:after {
content: '\00A7';
display: block;
text-align: center;
font-weight: lighter;
font-size: 1.5em;
}
article:last-of-type:after {
content: '';
}
#page-head {
text-align: center;
padding-top: .5em;
}
#page-head h1 {
font-size: 4em;
}
#page-head h1 a:hover {
text-decoration: none;
}
#page-side {
line-height: 1.2em;
}
#page-side ul {
padding: 0 0 0 1.3em;
margin: .4em 0 .6em .4em;
list-style-type: square;
}
#page-side li a {
color: #555;
}
#page-side li.active {
color: firebrick;
}
#page-side li.active a {
color: #222;
}
#page-foot {
font-size: .8em;
text-align: center;
}
#pagination {
display: block;
margin-bottom: 4em;
text-align: center;
}
#tag-cloud li:hover {
-webkit-transform: rotate(0deg), scale(1.3, 1.3) !important;
-moz-transform: rotate(0deg), scale(1.3, 1.3) !important;
-ms-transform: rotate(0deg), scale(1.3, 1.3) !important;
-o-transform: rotate(0deg), scale(1.3, 1.3) !important;
transform: rotate(0deg), scale(1.3, 1.3) !important;
}
#tag-cloud a {
text-decoration: none;
}
h1.small-title {
font-size: 1em;
font-style: italic;
font-weight: normal;
}
a, a:visited {
text-decoration: underline;
color: #29476B;
}
a:active, a:focus {
outline-width: 1px;
outline-style: dotted;
}
h1 a, h1 a:visited,
h2 a, h2 a:visited,
h3 a, h3 a:visited,
h4 a, h4 a:visited,
h5 a, h5 a:visited,
h6 a, h6 a:visited {
color: #222;
text-decoration: none;
}
a.goto {
font-size: .8em;
color: #444;
padding: 0;
margin: 0em .2em;
}
pre, img {
overflow: auto;
max-width: 95%;
}
pre {
font-family: monospace;
font-size: 0.95em;
line-height: 1.15em;
background-color: #F5F5F5;
border: 3px solid silver;
overflow: auto;
padding: 0.5em;
}
@media screen and (max-width: 650px) {
body {
font-size: 15px;
}
}
@media screen and (max-width: 500px) {
body {
font-size: 14px;
}
#page-head h1 {
font-size: 2.5em;
}
}
|