-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
119 lines (104 loc) · 1.92 KB
/
styles.css
File metadata and controls
119 lines (104 loc) · 1.92 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
* {
box-sizing: border-box;
width: 100%;
margin: 0 auto;
font-family: sans-serif;
}
body {
background-color: #18181B;
width: 100%;
min-height: 100vh;
padding: 40px 0 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.logo {
max-width: 640px;
margin-bottom: 24px;
margin-top: -40px;
}
.container-input {
max-width: 500px;
margin: 14px 0;
text-align: center;
}
.container-input span {
color: #FFF;
font-size: 24px;
}
.slider {
-webkit-appearance: none;
width: 100%;
border-radius: 5px;
background: #979696;
height: 18px;
outline: none;
margin-top: 8px;
}
.button-cta {
background-color: #06470C;
height: 40px;
border: 0;
border-radius: 4px;
cursor: pointer;
margin-top: 30px;
color: #FFF;
font-weight: bold;
font-size: 16px;
}
.container-password {
max-width: 490px;
margin: 14px 0;
align-items: center;
cursor: pointer;
display: flex;
flex-direction: column;
text-align: center;
}
.title {
color: #FFF;
font-size: 24px;
margin-top: 28px;
margin-bottom: 8px;
}
.password {
height: 65px;
background-color: rgba(0, 0, 0, 0.30);
border-radius: 5px;
display: flex;
justify-content: center;
align-items: center;
color: #FFF;
border: 1px solid #313131;
transition: transform 0.5s;
font-size: 24px;
}
.password:hover {
transform: scale(1.10);
}
.container-password span {
color: #FFF;
font-size: 24px;
margin: 4px 0;
}
.tooltip {
margin-top: 20px;
color: #FFF;
padding: 6px 8px;
background: rgb(30, 29, 29);
text-align: center;
font-size: 16px;
visibility: hidden;
opacity: 0;
transition: all 0.5s ease-in-out;
}
.hide{
display: none;
}
.container-password:hover .tooltip {
visibility: visible;
opacity: 1;
bottom: 50px;
}