-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathindex.css
53 lines (46 loc) · 929 Bytes
/
index.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
html,body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
background-color: #282c34;
color: white;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
.main-layout {
display: flex;
flex-direction: row;
}
nav {
background-color: #363a45;
height: 100vh;
margin-right: 15px;
overflow-y: scroll;
text-align: center;
width: 250px;
}
nav ul {
align-items: center;
display: flex;
flex-direction: column;
justify-content: center;
padding-left: 0;
}
nav li {
list-style: none;
margin-bottom: 10px;
}
nav li a {
color: white;
font-size: 1.2rem;
text-decoration: none;
}
.nav-active {
color: grey;
transition: all .3s ease-out;
}