-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
106 lines (106 loc) · 1.92 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
*{
font-family: sans-serif;
width: 100%;
margin: 0 auto;
box-sizing: border-box;
}
body{
background-color: #18181B;
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.logo{
max-width: 210px;
margin-bottom: 24px;
}
.logoText{
width: 100%;
display: flex;
flex-direction: column;
color: #fff;
align-items: center;
justify-content: center;
font-size: 38px;
}
.container-input{
max-width: 280px;
margin: 14px 0;
}
.container-input span{
color: #fff;
font-size: 22px;
}
.slider{
-webkit-appearance: none;
width: 100%;
border-radius: 5px;
background: #dfdfdf;
height: 18px;
outline: none;
margin-top: 8px;
}
.button-cta{
height: 40px;
background-color: #3eb72b;
border: 0;
border-radius: 4px;
cursor: pointer;
margin-top: 40px;
color: #fff;
font-weight: bold;
font-size: 18px;
}
.container-password{
max-width: 480px;
margin: 14px 0;
display: flex;
flex-direction: column;
align-items: center;
cursor: pointer;
}
.hide{
display: none;
}
.title{
color: #fff;
text-align: center;
font-size: 24px;
margin-top: 14px;
margin-bottom: 8px;
}
.password{
height: 60px;
background-color: rgba(0,0,0, 0.4);
border-radius: 4px;
display: flex;
justify-content: center;
align-items: center;
color: #fff;
border: 1px solid #313131;
transition: transform 0.5s;
}
.password:hover{
transform: scale(1.05);
}
.tooltip{
color: #fff;
position: relative;
top: 20px;
padding: 6px 8px;
background: rgb(15, 15, 15);
text-align: center;
font-size: 16px;
border-radius: 6px;
visibility: hidden;
opacity: 0;
transition: all 0.5s ease-in-out;
}
.container-password:hover .tooltip{
visibility: visible;
bottom: 50px;
opacity: 1;
}