-
Notifications
You must be signed in to change notification settings - Fork 0
/
HomeHeader.module.css
60 lines (54 loc) · 1.01 KB
/
HomeHeader.module.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
.head {
display: flex;
align-items: center;
justify-content: space-between;
height: 70px;
background-color: #fff;
}
.menu {
display: flex;
align-items: center;
gap: 40px;
font-size: 16px;
font-weight: 700;
}
.menu a {
color: #3B3C4A;
text-decoration: none;
}
.search {
background-color: #F4F4F5;
display: flex;
align-items: center;
height: 36px;
padding: 0px 15px;
border-radius: 7px;
}
.search button,
input {
background-color: transparent;
border: none;
outline: none;
}
.lightdark {
background-color: #F4F4F5;
border-radius: 50px;
width: 48px;
height: 24px;
display: flex;
align-items: center;
justify-content: start;
padding: 2px;
}
.round {
background-color: #fff;
border-radius: 20px;
height: 24px;
width: 24px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
top: 0;
left: 0;
}