-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.css
More file actions
68 lines (61 loc) · 1.22 KB
/
header.css
File metadata and controls
68 lines (61 loc) · 1.22 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
header {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 85px;
background-color: #3b5998;
min-width: 900px;
}
header .logo {
text-align: center;
font-size: 40px;
color: white;
display: inline-block;
position: absolute;
left: 0;
top: 50%;
bottom: 0;
transform: translate(50%, -50%);
cursor: pointer;
user-select: none;
}
header .login-form {
display: inline-block;
position: absolute;
top: 50%;
right: 0;
transform: translate(-50%, -50%);
color: white;
font-size: 12px;
}
header .email {
display: inline-block;
margin-right: 10px;
}
header .password {
display: inline-block;
position: relative;
}
header .forgot-account {
position: absolute;
left: 0;
}
header .login-btn {
display: inline-block;
}
header .login-btn button {
border-radius: 2px;
cursor: pointer;
font-size: 12px;
font-weight: bold;
line-height: 18px;
padding: 2px 6px;
text-align: center;
text-decoration: none;
text-shadow: none;
white-space: nowrap;
background-color: #4267b2;
border: 1px solid #29487d;
color: white;
}