forked from createthegroup/css-reset
-
Notifications
You must be signed in to change notification settings - Fork 1
/
base.css
146 lines (121 loc) · 2.06 KB
/
base.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
144
145
146
/*
* base.css v0.2
* Encapsulated adaptation of [normalize.css](http://necolas.github.com/normalize.css/)
* designed to be used in conjunction with a reset stylesheet and edited on a
* project by project basis.
*
* Usage:
* [include a reset stylesheet here...]
* <div>
* <h1>This element is unformatted</h1>
* <div class="-base">
* <h2>This element is formatted</h2>
* <p>Adding `-base` to any element will turn it's html content into a
* formatted document without the need for extra classes or IDs.</p>
* </div>
* </div>
*/
/** LINKS **/
.\-base a:link,
.\-base a:visited {
color: #666;
text-transform: uppercase;
text-decoration: underline;
}
.\-base a:hover,
.\-base a:focus,
.\-base a:active {
color: #000;
text-decoration: underline;
}
/** TYPOGRAPHY **/
.\-base {
line-height: normal;
}
.\-base h1,
.\-base h2,
.\-base h3,
.\-base h4,
.\-base h5,
.\-base h6,
.\-base p {
margin: 1em 0;
}
.\-base abbr[title] {
border-bottom: 1px dotted;
cursor: help;
}
.\-base b,
.\-base strong {
font-weight: bold;
}
.\-base dfn,
.\-base dfn {
font-style: italic;
}
.\-base ins,
.\-base del,
.\-base s,
.\-base u {
text-decoration: underline;
}
.\-base b,
.\-base strong {
font-weight: bold;
}
.\-base address,
.\-base cite,
.\-base dfn,
.\-base em,
.\-base i {
font-style: italic;
}
.\-base blockquote {
margin-left: 40px;
margin-right: 40px;
}
.\-base mark {
background: #ff0;
color: #000;
}
.\-base p,
.\-base pre {
margin: 1em 0;
}
.\-base small {
font-size: 80%;
}
.\-base sub,
.\-base sup {
font-size: 75%;
bottom: -0.25em;
}
.\-base sup {
top: -0.25em;
}
.\-base code,
.\-base kbd,
.\-base pre,
.\-base samp {
font-family: "Courier New", "Andale Mono", monospace;
}
/** LISTS **/
.\-base dl,
.\-base menu,
.\-base ol,
.\-base ul {
margin: 1em 0;
}
.\-base dd {
margin: 0 0 0 40px;
}
.\-base ol,
.\-base ul {
padding: 0 0 0 40px;
}
.\-base ul {
list-style: disc;
}
.\-base ol {
list-style: decimal;
}