-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
104 lines (89 loc) · 1.81 KB
/
Copy pathstyle.css
File metadata and controls
104 lines (89 loc) · 1.81 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
* {
box-sizing: border-box;
}
label,
input,
button {
display: block;
font: inherit;
color: inherit;
}
body {
max-width: 30rem;
margin: 0 auto;
padding: 2rem;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
color: hsl(202, 55%, 16%);
background-color: hsl(203, 100%, 94%);
}
label {
margin-top: 1.5rem;
font-weight: bold;
line-height: 1;
}
input {
width: 100%;
margin-top: 0.5rem;
}
button {
margin-top: 1.5rem;
}
label {
font-weight: bold;
}
input {
margin-top: 0.5rem;
border-radius: 2px;
border: 2px solid transparent;
box-shadow: 0 3px 6px hsla(280, 10%, 40%, 0.2);
padding: 0.5rem;
background-color: #fff;
}
.input__verify {
color:hsl(0, 100%, 45%);
width:0%;
font-size: 40px;
}
/*
input[aria-invalid="true"] {
border-color: hsl(340, 70%, 50%);
} */
button {
border-radius: 2px;
border: 0;
box-shadow: 0 3px 6px hsla(280, 10%, 20%, 0.2);
padding: 0.75rem 1.25rem;
text-transform: uppercase;
font-weight: bold;
letter-spacing: 1px;
background-color: hsl(202, 100%, 65%);
color: hsl(280, 30%, 20%);
}
.requirements {
margin-top: 0.5rem;
line-height: 1.6;
color: hsl(202, 98%, 25%);
}
.error {
margin-top: 0.5rem;
line-height: 1.1;
height: 1rem;
color: hsl(340, 70%, 50%);
}
.password__score-box {
margin-top: 0.25rem;
width: 100%;
}
.password__score {
width: 0%;
height: 10px;
border-radius: 5px;
background-color: hsl(0, 100%, 70%);
}
.password__time {
margin-top: 0.5rem;
line-height: 1.1;
height: 2rem;
color: hsl(202, 98%, 25%);
}