-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
106 lines (88 loc) · 1.61 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
@import url('https://fonts.googleapis.com/css2?family=Comfortaa&family=Maven+Pro&display=swap');
* {
margin: 0;
box-sizing: border-box;
}
body {
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Comfortaa', Arial;
font-weight: 700;
}
p, a, ul, ol, li, button {
font-family: 'Maven Pro', sans-serif;
}
img {
width: 50px;
height: 50px;
}
.btn-container a {
background-color: rgba(0,0,0,0);;
border: 1px solid rgba(73,59,49,1);
border-radius: 4px;
color: rgba(73,59,49,1);
width: 10vw;
height: 2.5vw;
font-size: 18px;
text-align: center;
}
/**
* nav styles
*/
.nav-container {
display: flex;
justify-content: space-between;
flex-direction: row;
width: 100vw;
padding: 12px;
align-items: center;
}
.logo-container {
display: flex;
justify-content: center;
align-items: center;
}
.content {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
padding: 10vh 15vw;
}
.nav-list {
display: flex;
font-size: 18px;
align-items: center;
}
a, .nav-list li {
text-decoration: none;
list-style: none;
color: black;
padding: 5px;
}
/**
* content styles
*/
.content h1 {
padding: 20px;
}
.content p {
text-align: center;
}
.btn-container {
display: flex;
justify-content: space-between;
margin: 0 10vw;
}
.footer-content {
background-color: #f1f1f1;
height: 10vh;
width: 100vw;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
position: absolute;
bottom: 0px;
font-size: 14px;
}