-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
54 lines (47 loc) · 819 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
html * {
font-family: 'Courier New';
}
img {
height: auto;
max-width: 95%;
}
.navBar {
display: flex;
align-items: center;
background-color: #616161;
color: #F7F7F7;
list-style-type: none;
margin: 0;
padding: 0px 20px 0px;
overflow: hidden;
position: fixed;
border-radius: 15px;
}
.navItem {
float: left;
}
.navTheme {
float: right;
background-color: rgba(0,0,0,0);
border: none;
padding: 7px 7px;
margin: 0px 10px 0px;
}
.navItem a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-weight: bold;
}
body {
max-width: 800px;
margin: auto;
background-color: #393E46;
color: #F7F7F7
}
.light-mode {
background-color: #F7F7F7;
color: #393E46;
}