-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.css
More file actions
100 lines (86 loc) · 1.58 KB
/
dashboard.css
File metadata and controls
100 lines (86 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
99
100
* {
padding: 0%;
margin: 0%;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
.hero-section {
display: flex;
flex-direction: column;
position: fixed;
background-color: rgb(0, 12, 34);
height: 20vh;
width: 100%;
}
.navbar {
display: flex;
background-color: black;
padding: 15px 20px;
color: white;
width: 100%;
align-items: center;
justify-content: center;
}
.data-container {
width: 100%;
max-width: 1200px;
display: flex;
justify-content: center;
align-items: center;
}
.hero-section-content {
margin-top: auto;
padding: 10px 20px;
}
.Logo {
width: 70px;
}
a {
text-decoration: none;
color: white;
padding: 10px 15px;
border-radius: 25px;
transition: background-color 0.3s ease-in;
margin: 0 10px;
font-weight: bold;
}
.menu-data {
margin-left: auto;
display: flex;
align-items: center;
}
a:hover {
background-color: white;
color: rgb(0, 12, 34);
}
.size-icon {
font-size: 26px;
}
#Menu-bar {
display: none;
margin-left: auto;
}
#close {
display: none;
}
@media (max-width:761px) {
.menu-data {
position: absolute;
flex-direction: column;
text-align: left;
align-items: flex-end;
left: 100%;
top: 0;
transform: translate(-100%);
background-color: black;
width: 250px;
padding: 20px;
transition: display ease-in 5s;
z-index: -10;
}
#Menu-bar {
display: block;
}
#close {
display: block;
}