-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.css
More file actions
86 lines (84 loc) · 1.43 KB
/
index.css
File metadata and controls
86 lines (84 loc) · 1.43 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
body {
font-family: "Lucida Grande", sans-serif;
background-color: darkgrey;
}
nav {
display: inline-flex;
}
h1 {
display: inline;
background-color: dimgrey;
color: lightgrey;
padding: 1em;
}
h2 {
background-color: slategrey;
color: darkslategrey;
padding: 1em;
}
h3 {
background-color: darkslategrey;
color: lightslategrey;
padding: 1em;
}
pre {
font-family: "Lucida Sans Typewriter", monospace;
background-color: #1f2f2f;
color: greenyellow;
}
ul li {
display: inline-flex;
background-color: lightgrey;
padding: 2em;
}
ul li:hover {
background-color: whitesmoke;
}
ol li {
background-color: #223434;
color: antiquewhite;
padding: 0 1em 0;
}
section#HTML pre {
line-height: 1.5em;
padding: 2em;
}
section#git pre,
section#JS pre,
section#DOM pre,
section#CSS pre {
display: inline-flex;
padding: 0.75em 1.25em;
}
section#git p,
section#JS p,
section#DOM p,
section#CSS p {
display: inline-flex;
background-color: dimgrey;
color: #dfefef;
padding: 0.75em 1.25em;
}
section#git a,
section#JS a,
section#DOM a,
section#CSS a {
display: inline-flex;
background-color: lightgrey;
padding: 0.75em;
}
section#git a:hover,
section#JS a:hover,
section#DOM a:hover,
section#CSS a:hover {
display: inline-flex;
background-color: whitesmoke;
}
footer h6 {
text-align: right;
background-color: dimgrey;
color: lightgrey;
padding-right: 2em;
padding-top: 0.5em;
padding-bottom: 0.5em;
}