-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
82 lines (73 loc) · 1.62 KB
/
main.css
File metadata and controls
82 lines (73 loc) · 1.62 KB
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
@import url("./components/alert/alert.css");
@import url("./components/avatar/avatar.css");
@import url("./components/badge/badge.css");
@import url("./components/button/button.css");
@import url("./components/card/card.css");
@import url("./components/colorPalette/colors.css");
@import url("./components/grid/grid.css");
@import url("./components/image/image.css");
@import url("./components/input/input.css");
@import url("./components/typography/textUtils.css");
@import url("./components/toast/toast.css");
@import url("./components/modal/modal.css");
@import url("./components/rating/rating.css");
@import url("./components/docs.css");
@import url("./components/navbar/navbar.css");
@import url("./components/list/list.css");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-size: 16px;
}
.nav-bar {
width: 100%;
padding: 1.5rem;
display: flex;
flex-direction: row;
align-items: center;
position: fixed;
background-color: white;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
top: 0;
}
.nav-bar a:nth-child(2) {
margin-left: auto;
}
.main-content {
width: 100%;
height: calc(100vh - 2rem);
display: flex;
flex-direction: column;
padding: 2rem;
justify-content: center;
align-items: center;
gap: 1rem;
}
.footer {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 1rem;
gap: 1rem;
}
#cta-btngrp {
display: flex;
gap: 1rem;
}
a,
li {
text-decoration: none;
list-style: none;
color: var(--secondary-dark-blue);
}
.footer ul li i:hover {
color: var(--primary-blue);
}
li {
display: inline-block;
margin-right: 1rem;
}