-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.css
94 lines (87 loc) · 1.8 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
.header {
background-color: white;
height: 80px;
display: flex;
flex-direction: row;
flex: 1fr 1fr 1fr;
}
.header-left {
margin-left: 80px;
}
.header-left-logo {
margin-top: 0px;
height: 80px;
width: 200px;
border-radius: 50px;
}
.header-center {
margin-left: 50px;
margin-top: 5px;
width: 500px;
padding-top: 5px;
display: flex;
flex-direction: row;
justify-content: space-between;
}
.header-center-div {
background-color: rgb(255, 255, 255);
padding-top: 11px;
color: rgb(13, 112, 186);
font-weight: bold;
font-size: 18px;
width: 120px;
height: 30px;
text-align: center;
border-radius: 5px;
cursor: pointer;
}
.header-center-div:hover {
background-color: rgb(13, 112, 186);
color: white;
transition-duration: 0.4s;
}
.header-right {
margin-right: 70px;
margin-left: 200px;
width: 350px;
padding-top: 20px;
position: relative;
display: flex;
flex-direction: row;
justify-content: space-between;
cursor: pointer;
}
.header-right-button-login {
background-color: rgb(13, 112, 186);
color: white;
font-weight: bold;
margin-top: -10px;
height: 40px;
width: 150px;
border-radius: 10px;
border: none;
text-decoration: none;
cursor: pointer;
}
.header-right-button-login:hover {
background-color: rgb(8, 77, 130);
transform: scale(1.1);
transition-duration: 0.4s;
}
.header-right-button-register {
background-color: rgb(13, 112, 186);
color: white;
font-weight: bold;
margin-top: -10px;
height: 40px;
width: 150px;
border-radius: 10px;
border: none;
text-decoration: none;
cursor: pointer;
}
.header-right-button-register:hover {
background-color: rgb(8, 77, 130);
transform: scale(1.1);
transition-duration: 0.4s;
}