-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.css
More file actions
64 lines (56 loc) · 1.19 KB
/
header.css
File metadata and controls
64 lines (56 loc) · 1.19 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
.header {
margin: 0px;
padding: 15px;
max-width: 80vw;
height: 20vh;
display: grid;
grid-template-rows: 1fr 1.25fr;
box-shadow: 0px -1px 8px 1px rgba(0,0,0,0.4);
}
.header .top {
display: grid;
grid-template-columns: var(--icon-size) 50vw var(--icon-size) 70px 1fr;
grid-column-gap: 10px;
align-items: center;
}
.top #top-logo-container {
display: flex;
justify-content: center;
}
.header .bottom {
display: grid;
grid-template-columns: 80px 2fr 1fr;
align-items: center;
}
.header .bottom .btn-container {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 1vw;
}
.header .bottom button {
background-color: var(--primary-color);
color: white;
padding: 25px;
padding-bottom: 15px;
padding-top: 15px;
border: 2px solid rgba(0,0,0,0);
border-radius: 80px;
font-weight: 800;
}
.header .top #search-bar {
height: 30%;
border-radius: 100px;
max-width: 40vw;
padding-left: 20px;
}
.header .bottom #logo {
width: 70px;
height: 70px;
}
.header .bottom #text-container {
display: flex;
flex-direction: column;
padding-left: 8px;
}