forked from Karl33to/jquery.inlineStyler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo-style.css
121 lines (102 loc) · 1.52 KB
/
demo-style.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
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
html {
font-size: 62.5%;
}
body {
font-size: 14px;
font-size: 1.4rem;
line-height: 1.7;
margin: 0;
padding: 20px;
font-family: 'Merriweather Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
background-color: #F0F0F0;
color: #444444;
font-weight: 300;
}
body,
a,
input,
teatarea,
select {
color: #444444;
}
a {
color: #444444;
}
a:hover {
color: #00afe3;
}
/*
// adds a symbol to all external links
a[href^="http://"]:after {
content: " \21D7";
}
*/
a img {
border: 0;
}
img {
vertical-align: bottom;
}
ul {
list-style-position: inside;
}
p {
margin: 1rem 0;
}
h1, h2, h3, h4, h5, h6 {
margin: 4rem 0 1rem 0;
line-height: 1.2;
font-family: 'Merriweather Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
color: #000;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
text-decoration: none;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
text-decoration: underline;
}
h1 {
font-size: 30px;
font-size: 3rem;
}
h1:first-of-type {
margin-top: 1rem;
}
h2 {
font-size: 26px;
font-size: 2.6rem;
}
h3 {
font-size: 24px;
font-size: 2.4rem;
}
h4 {
font-size: 22px;
font-size: 2.2rem;
}
table {
border-collapse: collapse;
}
thead th {
background-color: #ccc;
}
tbody th {
background-color: #ddd;
}
thead td {
background-color: #eee;
}
tbody td {
background-color: #f6f6f6;
}
th,
td {
padding: 10px;
border: 1px solid #ccc;
}