-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.css
143 lines (143 loc) · 2.81 KB
/
default.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/*Default style sheet by HaRRy - http://geuze.name
Optimized for IE7+ and all modern desktop browsers
Do not forget to include html5shiv when using html5 elements*/
html{
font:12px/1.4em sans-serif; overflow-y:scroll
}
body{
-webkit-box-sizing:border-box; -moz-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;
}
*{
margin:0
}
*[hidden] {
display:none
}
a{
cursor:pointer; text-decoration:underline
}
iframe, img{
border:0; vertical-align:bottom
}
article, aside, details, figcaption, figure, footer, header, menu, nav, section, main{
display:block
}
datalist{
display:none
}
table{
border-collapse:collapse; border-spacing:0
}
td, th{
border:1px solid #AAA; padding:0.1em 0.4em 0.1em 0.3em; text-align:left
}
thead+tbody tr:first-child th,thead+tbody tr:first-child td{
border-top-width:2px
}
tfoot tr:first-child td, tfoot tr:first-child th{
border-top-width:2px
}
table[border='0'] td, table[border='0'] th {
border: 0
}
caption, figcaption{
text-align:left; padding:0.1em 0 0.1em 0.4em; font-style:oblique
}
input, textarea, button{
width:12em; font-size:1em; line-height:1em; vertical-align:bottom
}
textarea{
height:8em; width:18em; resize:both; overflow:auto
}
button::-moz-focus-inner, input[type=button]::-moz-focus-inner, input[type=submit]::-moz-focus-inner, input[type=reset]::-moz-focus-inner{
border: 0
}
button, input[type=button], input[type=submit], input[type=reset]{
padding:0 0.4em; width:auto; height:2em; font-size:1em; overflow:visible
}
input[type=radio], input[type=checkbox]{
width:auto
}
label{
cursor:pointer
}
h1{
font-size:3em; line-height:1em
}
h2{
font-size:2.5em; line-height:1em
}
h3{
font-size:2em; line-height:1em
}
h4{
font-size:1.5em; line-height:1em
}
h5{
font-size:1.25em; line-height:1em
}
h6{
font-size:1em; line-height:1em
}
ul, ol, p{
margin:0 0 1em
}
p img{
vertical-align:middle
}
dt, th{
font-weight:bolder
}
dd{
padding-left:1em
}
fieldset{
padding:0.5em
}
legend{
margin-left:-0.3em; padding:0.3em
}
hr{
width:90%; margin:0 auto; color:#BDBDBD; border:1px inset #000
}
ul, ol{
padding-left:2em
}
ul ul, ul ol, ol ul, ol ol{
padding-left:0.8em
}
nav ul{
list-style:none; padding:0;
}
nav li a{
white-space:nowrap
}
header noscript{
position:fixed; width:20em; top:0; left:0; padding:1em
}
header noscript > *{
background:#FAFFBD
}
/*Print style sheet*/
@media print{
html, body {
margin:0; width:100%
}
p,li,td,th,caption,legend,h1,h2,h3,h4,h5,h6,dt,input,textarea{
font-family:serif; color:#000
}
html,body,p,ul,div{
background-color:#fff
}
a[href]:after {
content:" (" attr(href) ") "; font-size:0.9em
}
nav a[href]:after {
/*Do not apply the above rule on items in the menu.*/
content:""
}
a[href^="/"]:after{
/*Change the url here and uncomment for internal url display*/
/*[disabled]content:" (http://example.com" attr(href) ") "*/
}
}