-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.css
107 lines (66 loc) · 1.41 KB
/
header.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
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
101
102
103
104
105
106
107
header{
box-shadow: 0px 1px 2px rgb(168, 168, 168);
position: fixed;
width: 100%;
background-color: white;
z-index: 3;
}
.headerDiv {
display: flex;
padding-left: 20px;
padding-right: 20px;
justify-content: space-between;
padding-bottom: 8px;
padding-top: 8px;
}
.iconHeader {
height: 35px;
}
#iconHeader_insideDiv {
display: flex;
gap: 20px;
margin-left: 8%;
margin-right: 5%;
}
#iconHeader_searchDiv {
max-width: 400px;
height: 30px;
border-style: solid;
display: flex;
border-radius: 5px;
border-width: 1px;
border-color: rgb(212, 212, 212);
}
#iconHeader_searchButton {
width: 50px;
height: 30px;
border-radius: 10px;
background-color: white;
border-style: none;
}
#iconHeader_searchButton:hover{
background-color: rgba(0, 0, 255, 0.1);
}
#iconHeader_searchIcon {
height: 28px;
}
#iconHeader_searchBox {
outline: none;
width: 300px;
margin-top: 3px;
border-radius: 10px;
display: flex;
justify-content: space-between;
width: 100%;
font-family: inherit;
height: 25px;
border-style: none;
font-size: large;
}
#iconHeader_createPostButton{
font-weight: bold;
background-color: white;
border-radius: 10px;
border-color: rgb(108, 108, 239);
color: rgb(108, 108, 239);
}