-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (54 loc) · 1.01 KB
/
style.css
File metadata and controls
54 lines (54 loc) · 1.01 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
*{
padding: 0;
margin: 0;
border: none;
outline: none;
}
body{
height: 100vh;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
font-family: sans-serif;
color: white;
}
.content{
background: radial-gradient(circle, rgba(174,215,238,1) 0%, rgba(148,187,233,1) 100%);
border-radius: 0px 50px 0px 50px;
height: 350px;
width: 300px;
padding: 25px;
}
#password{
width: 88%;
height: 10%;
border-radius: 25px;
margin: 0 0 10px 0;
padding: 0 15px;
}
#btn{
display: flex;
margin: 0 auto;
background-color: white;
padding: 10px 40%;
border-radius: 25px;
font-weight: bold;
}
#btn:active{
padding: 11px 41%;
}
.checkbox-item{
margin: 40px 25px;
font-weight: bold;
}
.checkbox{
margin-right: 5px;
}
#pass-length{
width: 35px;
padding: 5px;
margin-left: 5px;
border-radius: 50px;
}