-
Notifications
You must be signed in to change notification settings - Fork 0
/
s.css
52 lines (52 loc) · 866 Bytes
/
s.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
body {
background: white;
}
.form {
margin: 50px auto;
width: 300px;
padding: 30px 25px;
background: #FFA233;
}
h1.login-title {
color: white;
margin: 0px auto 25px;
font-size: 50px;
font-weight: bold;
text-align: center;
}
.login-input {
font-size: 15px;
border: 1px solid #ccc;
padding: 10px;
margin-bottom: 25px;
height: 25px;
width: calc(100% - 23px);
}
.login-input:focus {
border-color:#6e8095;
outline: none;
}
.login-button {
color: black;
background: #55a1ff;
border: 0;
outline: 0;
width: 100%;
height: 50px;
font-size: 20px;
text-align: center;
cursor: pointer;
}
.link {
color: white;
font-size: 25px;
text-align: center;
margin-bottom: 0px;
}
.link a {
color: white;
}
h3 {
font-weight: normal;
text-align: center;
}