-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
78 lines (74 loc) · 1.29 KB
/
styles.css
File metadata and controls
78 lines (74 loc) · 1.29 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
body {
background-color: #36454f;
}
#navbar {
font-family: "Lucida Sans Typewriter", sans-serif;
position: fixed;
text-align: center;
}
#navbar header {
color: white;
font-size: 150%;
margin-left: 200%;
text-decoration: underline;
}
#navbar ul {
list-style-type: none;
margin: 0;
padding: 0;
width: 25%;
height: 100%;
position: fixed;
overflow: auto;
}
#navbar li {
float: left;
width: 100%;
}
#navbar ul a {
display: block;
text-decoration: none;
text-align: center;
padding: 16px;
color: #ffffff;
}
#navbar ul a:hover {
display: block;
text-decoration: none;
text-align: center;
padding: 16px;
color: #ffffff;
background-color: black;
}
#navbar ul a:visited {
color: #ffffff;
}
h1 {
font-family: "Lucida Sans Typewriter", sans-serif;
text-align: center;
font-size: 250%;
color: #66ff33;
}
h2 {
font-family: "Lucida Sans Typewriter", sans-serif;
color: #15f4ee;
}
section {
margin-left: 27%;
color: #ffffff;
font-family: "Open Sans", sans-serif;
}
code {
color: #ff0000;
font-size: 125%;
}
.code_block {
margin: 20px;
padding: 10px;
background-color: #505f69;
}
@media only screen and (max-width: 600px) {
body {
background-color: #bc13fe;
}
}