-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
72 lines (61 loc) · 1.1 KB
/
styles.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
69
70
71
72
@import url('https://fonts.googleapis.com/css2?family=Quicksand:300');
*, *::before, *::after {
box-sizing: border-box;
}
html{
height: 100%;
}
body {
height: 100%;
padding: 0;
margin: 0;
background-image: linear-gradient(#3162DF,#ACC0F2);
font-family: 'Quicksand', sans-serif;
font-size: 1.4rem;
color: white;
min-height: 100vh;
}
.container {
max-width: 4000px;
margin: 0 0;
padding: 0 0;
justify-content: center;
}
.full-height-grow {
display: flex;
flex-direction: column;
}
.main-header {
display: flex;
justify-content: space-between;
align-items: center;
height: 85px;
}
.page-title {
display: flex;
align-items: center;
font-size: 3rem;
color: inherit;
text-decoration: none;
margin-left: 2rem;
margin-top: 0;
}
.main-nav ul {
display: flex;
margin: 0;
padding: 0;
list-style: none;
}
.main-nav a {
color: inherit;
text-decoration: none;
padding: 2.5rem;
}
.main-nav a:hover {
color: #adadad;
}
@media (max-width: 900px) {
.page-title {
display: none;
}
}