-
-
Notifications
You must be signed in to change notification settings - Fork 188
/
styles.css
115 lines (96 loc) · 1.65 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700');
*, *::before, *::after {
box-sizing: border-box;
}
body {
padding: 0;
margin: 0;
background-color: #2F303A;
font-family: Poppins, sans-serif;
font-size: 1.2rem;
color: white;
min-height: 100vh;
}
.full-height-grow {
display: flex;
flex-direction: column;
}
.brand-logo {
display: flex;
align-items: center;
font-size: 1.25em;
color: inherit;
text-decoration: none;
}
.brand-logo-name {
margin-left: 1rem;
}
.main-nav ul, .footer-nav ul {
display: flex;
margin: 0;
padding: 0;
list-style: none;
}
.main-nav a, .footer-nav a {
color: inherit;
text-decoration: none;
padding: 1rem;
}
.main-nav a:hover, .footer-nav a:hover {
color: #adadad;
}
.main-header, .main-footer {
display: flex;
justify-content: space-between;
align-items: center;
}
.main-header {
height: 140px;
}
.main-footer {
height: 70px;
background-color: #202027;
font-weight: bold;
}
.social-link img {
width: 1em;
margin-right: .25rem;
}
.main-footer .container {
display: flex;
justify-content: space-between;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
flex-grow: 1;
}
.title {
font-weight: 500;
font-size: 3em;
margin-bottom: 1rem;
margin-top: 0;
}
.subtitle {
font-weight: 500;
font-size: 1.2em;
margin-bottom: 2rem;
}
.btn {
color: white;
background-color: #1762A7;
padding: .75rem 1.5rem;
border-radius: .5rem;
text-decoration: none;
font-size: .9rem;
outline: none;
border: none;
cursor: pointer;
}
.btn:hover {
background-color: #2180d8;
}
.btn:focus {
background-color: #2796ff;
}