-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
53 lines (52 loc) · 1.12 KB
/
Copy pathstyles.css
File metadata and controls
53 lines (52 loc) · 1.12 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
:root {
--navbarHeight: 6.5vh;
--logoHeight: 5vh;
}
* {
margin: 0;
padding: 0;
}
body {
background-color: rgb(29, 29, 29);
color: rgb(255, 255, 255);
font-size: 4vh;
font-family: MainFont;
}
button{
background-color: rgb(255, 255, 255);
color: rgb(0, 0, 0);
font-size: 3vh;
font-family: 'MainFont';
border-radius: 1vh;
border: 0vh;
margin: 1.5vh;
padding: 1vh;
}
#navBar{
display: flex;
justify-content: center;
align-items: center;
background-color: rgb(24, 24, 24);
position: relative;
z-index: 1000;
height: var(--navbarHeight);
color: rgb(177, 177, 177);
transition: all .3s;
box-shadow: 0 5px 8px rgba(24, 24, 24, 0.5);
#BarIcon{
width: auto;
height: auto;
max-height: var(--logoHeight);
};
}
#MainBody {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: calc(100vh - var(--navbarHeight));
}
@font-face {
font-family: 'MainFont';
src: url(Fonts/Montserrat.ttf) format('woff2');
}