-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyling.css
73 lines (64 loc) · 1.25 KB
/
styling.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
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1+Code:wght@500&family=Roboto+Mono&display=swap');
*{
margin: 0;
padding: 0;
}
/*logo design top right corner*/
/*Accessed through google font*/
/*Should display code to access for the specified font*/
.App {
font-family: 'Roboto Mono', monospace;
background-color:rgb(23, 23, 23);
font-size: 1rem;
}
.banner {
height: 10vh;
width: 40vw;
}
.banner img {
height: 10vh;
}
.navbar {
position: fixed;
top: 0;
left: 0;
width: 95vw;
height: 10vh;
display: flex;
padding: 0 2rem;
margin: 0 auto;
justify-content: space-between;
background-color: rgb(23, 23, 23);;
align-items: center;
}
.navbar ul {
display: flex;
list-style: none;
align-items: center;
}
.navbar ul li a {
margin-right: 20px;
text-decoration: none;
color: white;
text-transform: uppercase;
}
.item img {
max-width: 100%;
height: auto;
}
.carousel {
padding-top: 10vh;
}
.hamburger{
padding-bottom: 4vh;
}
.hamburger a{
padding: 0;
width:37px;
height: 37px;
display: flex;
border-radius: 50%;
background-color: rgba(115,115,115,0.7);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}