-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
76 lines (65 loc) · 1.13 KB
/
style.css
File metadata and controls
76 lines (65 loc) · 1.13 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
69
70
71
72
73
74
75
76
body{
background-color: #1B1F27;
font-family: arial;
overflow: hidden;
}
.area_login{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
justify-content: center;
align-items: center;
}
.login{
display: flex;
flex-direction: column;
align-items: center;
background-color: #181920;
width: 355px;
height: 320px;
padding: 35px;
border-radius: 10px;
}
.login form{
display: flex;
width: 100%;
flex-direction: column;
}
.login input{
margin-top: 10px;
background-color: #252A34;
padding-left: 10px;
color: #CBD0F7;
border: none;
height: 45px;
outline: none;
border-radius: 8px;
}
.login img{
width: 90px;
height: auto;
}
.input::placeholder{
color: #CBD0F7;
font-size: 14px;
}
form [type="submit"]{
display: block;
background-color: #5568FE;
font-size: 12px;
text-transform: uppercase;
font-weight: bold;
cursor: pointer;
}
button:hover{
background-color: deepskyblue;
}
P{
color: #CBD0F7;
}
a{
color: #5568FE;
text-decoration: none;
margin-left: 10px;
}