-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.css
More file actions
114 lines (109 loc) · 1.92 KB
/
header.css
File metadata and controls
114 lines (109 loc) · 1.92 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
body{
position:relative;
}
.total_header{
display:flex;
background-color: rgb(0, 5, 13);
border-radius:40px;
position:fixed;
left:400px;
align-items: center;
border:solid;
/* border-color: white; */
z-index:100;
width:700px;
justify-content: space-between;
padding-left:20px;
padding-right:20px;
}
.logo{
width:60px;
border-radius: 30px;
margin-right:100px;
}
/* .home_button{
} */
.home_button button{
background-color: rgb(0, 5, 13);
color:white;
border:none;
font-size: 20px;
font-family: Roboto;
cursor:pointer;
transition:background-color 0.25s;
}
.home_button button:hover{
background-color: rgb(218, 218, 218,0.25);
}
.Home_bottom_box{
opacity:0;
position:absolute;
background-color:rgb(0, 5, 13);
border-radius: 4px;
box-shadow:2px 2px 5px rgb(255,255,255,0.3);
z-index:100;
margin-top:4px;
}
.Home_bottom_box a{
display:block;
padding:20px;
text-align: center;
text-decoration: none;
color:White;
}
.Home_bottom_box a:hover{
background-color: rgb(223, 223, 223,0.25);
}
.home_button:hover .Home_bottom_box{
opacity:1;
}
.Home_bottom_box:hover{
opacity:1;
}
.search{
padding-left:20px;
padding-right:80px;
padding-top: 5px;
padding-bottom:5px;
border-radius:12px;
border:none;
box-shadow:1px 2px 5px rgb(255,255,255,0.4);
margin-right:10px;
}
.searchDiv{
display:flex;
align-items: center;
justify-content: center;
}
.searchDiv svg{
margin-left:10px;
margin-right:30px;
cursor: pointer;
}
.Search::placeholder{
font-family: Roboto;
}
.Search:focus,input:focus{
outline-color:rgb(0, 145, 255);
}
.profile{
width:40px;
border-radius: 20px;
}
.profileDiv{
position:relative;
display:flex;
align-items: center;
justify-content: center;
}
.profileName{
position:absolute;
color:white;
bottom:-50px;
background-color: black;
padding:10px 20px;
border-radius: 8px;
opacity: 0;
pointer-events: none;
z-index: 10;
}