-
Notifications
You must be signed in to change notification settings - Fork 0
/
password.css
79 lines (70 loc) · 1.33 KB
/
password.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
@import url('https://fonts.googleapis.com/css?family=Lora');
body {
background-color: #00CED1;
color: #20B2AA;
text-align: center;
}
#container {
background-color: #E0FFFF;
max-width: 100%;
display: block;
margin: auto;
float: center;
width: 60vw;
height: 55vh;
-webkit-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
position: absolute;
top: 50%;
left: 50%;
box-shadow: 0px 0px 50px 20px #FFF5EE;
border-radius: 50%;
overflow: auto;
}
h1 {
font-size: 35px;
font-family: 'Lora', serif;
text-align: center;
margin-left: auto;
margin-right: auto;
margin-top: 9vh;
}
p {
font-size: 20px;
font-family: 'Lora', serif;
}
input {
width: 45%;
height: 30px;
display: inline-block;
margin: auto;
font-family: 'Lora', serif;
font-size: 18px;
text-align: center;
}
button {
width: 20%;
height: 25px;
display: inline-block;
margin-top: 10px;
font-family: 'Lora', serif;
font-size: 0.6em;
overflow: hidden;
}
#strongPassword {
font-family: 'Lora', serif;
font-size: 2em;
color: #2F4F4F;
margin-top: 10px;
}
footer {
position: absolute;
max-width: 100%;
display: block;
bottom: 0;
left: 15%;
float: center;
}
#footer-text {
font-size: 15px;
}