-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
68 lines (65 loc) · 901 Bytes
/
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
body,html {
background-color: #151517;
min-height: 100%;
}
a {
color: #a360e7;
text-decoration: none;
}
p,q {
line-height: 1.4;
word-wrap: break-word;
}
ul#horiz {
padding: 0;
}
ul#horiz li {
display: inline;
}
.purple {
color: #a360e7;
}
.blue {
color: #557edb;
}
.green {
color: #3ba764;
}
.mongodb {
color: #00ed64;
}
.red {
color: #f34375;
}
.term {
margin-left:auto;
margin-right:auto;
font-family: courier, monospace;
color: #fcfdfe;
line-height: 1.5;
padding: 1em;
font-size: 13px;
}
@media only screen and (min-width: 360px) {
.term {
font-size: 14px;
}
}
@media only screen and (min-width: 480px) {
.term {
padding: 2em;
width: 30em;
font-size: 15px;
}
}
@media only screen and (min-width: 768px) {
.term {
width: 40em;
font-size: 16px;
}
}
@media only screen and (min-width: 1200px) {
.term {
width: 50em;
}
}