-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathapp.css
68 lines (57 loc) · 1.01 KB
/
app.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
/* ------------------------- */
/* Variables */
/* ------------------------- */
:root {
--main-accent:#fc575e;
--light-accent-color: #f0f1f5;
--dark-accent-color: #333;
--main-grey: #555;
}
/* ------------------------- */
/* Resets */
/* ------------------------- */
*{
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
box-sizing: border-box;
}
/* ------------------------- */
/* Global */
/* ------------------------- */
body {
background-color: var(--light-accent-color);
}
a {
text-decoration: none
}
a:hover {
cursor: pointer;
}
.container {
width: 80%;
margin: 0 auto;
}
/* ------------------------- */
/* Navbar */
/* ------------------------- */
#nav {
height: 60px;
background: var(--dark-accent-color);
margin-bottom: 25px;
}
#navContainer {
display: flex;
flex-direction: row;
height: 100%;
align-items: center;
justify-content: space-between;
}
.nav-header {
color: var(--light-accent-color);
font-size: 28px;
}
#addBtn {
font-size: 24px;
color: var(--light-accent-color);
}