-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (58 loc) · 1006 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
@font-face {
font-family: Inter;
src: url("/Inter.woff2");
font-display: swap;
}
body {
background-color: #121826;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white !important;
font-family: Inter;
}
.login{
background-color: #1f2639;
padding: 40px 50px;
border-radius: 10px;
display: flex;
justify-content: center;
flex-direction: column;
}
.title{
text-align: center;
margin-top: 0;
font-size: 38px;
}
.input{
background-color: #262d43;
border: none;
border-radius: 8px;
padding: 10px;
color: white;
outline: #e45e5a;
font-size: 16px;
}
.input:focus{
outline: #e45e5a;
outline-style: solid;
}
.username{
margin-bottom: 8px;
}
.login-button{
margin-top: 12px;
background-color: #e45e5a;
border-radius: 8px;
border: none;
padding: 10px;
color: white;
font-size: 16px;
font-weight: 600;
left: 0;
transition: background-color 0.3s;
}
.login-button:hover{
background-color: #a94a46;
}