-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdrab.css
More file actions
115 lines (95 loc) · 1.88 KB
/
drab.css
File metadata and controls
115 lines (95 loc) · 1.88 KB
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
body {
margin: 60px auto;
width: 70%;
font-family:'Helvetica', 'Arial', 'Sans-Serif';
font-size:70%;
}
/*--.container{
max-width:990px;
}--*/
@media (min-width: 400px) {
.one-column { width: 90%; font-size: 75%; }
/*--.onethird{float:none;clear:both;} --*/
}
@media (min-width: 700px) {
.one-column { width: 80%; font-size: 90%; }
}
@media (min-width: 850px) {
.one-column { width: 70%; font-size: 100%; }
/*--.onethird{float:left;}--*/
}
@media (min-width: 1000px) {
.one-column { width: 60%; font-size: 110%; }
}
@media (min-width: 1100px) {
.one-column { width: 50%; font-size: 115%;}
}
@media (min-width: 1450px) {
.one-column { width: 40%; font-size: 125%; }
}
nav ul, footer ul {
font-family:'Helvetica', 'Arial', 'Sans-Serif';
padding: 0px;
list-style: none;
font-weight: bold;
}
nav ul li, footer ul li {
display: inline;
margin-right: 20px;
}
a {
text-decoration: none;
color: #999;
}
a:hover {
text-decoration: underline;
}
h1 {
font-size: 3rem;
font-family:'Helvetica', 'Arial', 'Sans-Serif';
}
p {
font-size: 1rem;
line-height: 1.3rem;
color: #333;
}
footer {
border-top: 1px solid #d5d5d5;
font-size: .8rem;
}
ul.posts {
margin: 20px auto 40px;
font-size: 1.5rem;
}
ul.posts li {
list-style: none;
}
li, li li{
font-size:1rem;
line-height:2rem;
font-family:'Helvetica', 'Arial', 'Sans-Serif';
}/*--Make sure all fonts resize together and we don't get recursive resizing (2em x 2em or 1em of 1em etc)--*/
.onethird{
width:24%;
float:left;
margin-right:2em;
min-width:190px;
}
footer p{
color:#d5d5d5;
}
.nowrap {
white-space: nowrap;
word-break: keep-all;
}
table{
border-collapse:collapse;
margin-bottom:1.5em;
}
table, th, td{
border: 1px solid #d5d5d5;
padding:1.5em;
}
tr:nth-child(even) {
background-color: #d5d5d5;
}