-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (59 loc) · 1.01 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
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400&family=Roboto&display=swap');
* {
margin: 0;
padding: 0;
}
body {
font-family: 'Quicksand', sans-serif;
display: grid;
place-items: center;
height: 100vh;
}
.container{
position: relative;
}
.text{
font-size: 30px;
}
.password{
width: 100%;
border: none;
border-bottom: solid 1px;
}
.password:focus{
outline: none;
}
.input__wrapper{
position: relative;
margin-top: 5rem;
}
.show-hide{
position: absolute;
top: 0;
right: 0;
font-size: 12px;
color: rgb(68, 68, 68);
}
.info{
margin-top: 3rem;
color: rgb(124, 124, 124);
font-family: 'Roboto', sans-serif;
}
.item{
display: flex;
align-items: center;
gap: 0.3rem;
margin-top: 0.8rem;
}
.item__active{
color: #2ecc71;
}
.button{
color: #fff;
background-color: #000;
position: absolute;
right: 0;
bottom: -100px;
padding: 0.5rem 2rem;
border-radius: 4px;
}