-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
83 lines (68 loc) · 1.28 KB
/
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
body{
background-color: #1b1f27;
font-family: Arial, Helvetica, sans-serif;
overflow: hidden;
}
section.area-login{
display: flex;
height: 100vh;
justify-content: center;
align-items: center;
}
div.login{
background-color: #181920;
width: 355px;
height: 320px;
padding: 35px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border-radius: 10px;
}
div.login form{
display: flex;
flex-direction: column;
width: 100%;
}
div.login input{
margin-top: 10px;
background-color: #252a34;
height: 45px;
border: none;
border-radius: 4px;
outline: none;
color: white;
padding-left: 10px;
}
div.login input:first-child{
margin-top: 0;
}
div.login input::placeholder{
color: white;
font-size: 14px;
}
div.login img{
width: 100px;
height: auto;
}
div.login input[type="submit"]{
display: block;
background-color: #5568fe;
font-size: 14px;
text-transform: uppercase;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease-in-out;
}
div.login input[type="submit"]:hover{
background-color: #8694ff;
}
p{
color: #cbd0f7;
}
a{
color: #5568fe;
text-decoration: none;
margin-left: 10px;
}