-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
51 lines (51 loc) · 806 Bytes
/
style.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
body {
font-family: "Fira Sans", sans-serif;
background-color: #4c91cf;
}
#login_container {
padding: 20vh;
text-align: center;
}
h1 {
color: white;
font-weight: bold;
}
i {
font-size: 40px;
color: white;
}
#Input_fields_box input {
padding: 12px;
border-radius: 3px;
border-style: none;
outline: none;
}
#Input_fields_box [type="password"] {
border-top: 1px solid grey;
}
#Input_fields_box input:hover {
background-color: grey;
cursor: pointer;
}
button {
width: 195px;
height: 30px;
margin: 5px;
border-radius: 3px;
border-style: none;
color: white;
background-color: #1881da;
}
button:hover {
background-color: grey;
cursor: pointer;
}
p {
color: white;
font-size: 14px;
}
.SignInHere {
text-decoration: none;
color: white;
font-weight: bold;
}