-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
98 lines (95 loc) · 1.58 KB
/
style.css
File metadata and controls
98 lines (95 loc) · 1.58 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
:root {
--text-color: rgb(6, 5, 5);
--background-color: lightgray;
--bodybackground-color: white;
--accent-color: black;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: var(--background-color);
padding: 8px 12px;
margin-bottom: 0;
}
body {
margin: 0;
background-color: var(--bodybackground-color);
}
.navbar__logo i {
color: var(--accent-color);
padding-left: 0;
}
a {
text-decoration: none;
color: var(--text-color);
}
.navbar__menu {
list-style: none;
display: flex;
margin: 0;
padding-left: 0;
}
.navbar__menu li {
padding: 10px 30px;
}
.navbar__icons {
list-style: none;
display: flex;
color: var(--icons-color);
margin: 0;
padding-left: 0;
}
.navbar__icons li {
padding: 8px 12px;
margin: 0;
}
.hero-image {
background-image: url("image/main.png");
height: 90vh;
margin-top: 0;
}
.mask {
background-color: rgba(76, 76, 76, 0.7);
height: 90vh;
display: flex;
align-items: center;
justify-content: center;
}
.main-text {
display: flex;
justify-content: center;
align-items: center;
color: white;
}
#start-button,
#pdf-button {
background-color: transparent;
border-color: white;
border-radius: 10px;
font-size: 2rem;
border-width: 5px;
color: white;
padding: 10px;
margin: 20px;
}
.text-white {
text-align: center;
}
h3 {
font-size: 2rem;
}
h1 {
font-size: 4rem;
}
footer {
/* position: absolute; */
bottom: 0;
text-align: center;
background-color: #232222;
color: #919191;
padding-top: 10px;
padding-bottom: 10px;
width: 100%;
left: 0;
}