-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
101 lines (87 loc) · 1.86 KB
/
style.css
File metadata and controls
101 lines (87 loc) · 1.86 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
body {
font-weight: bold;
background-color: rgba(0, 54, 102, 0.89);
font-family: 'Courier New', Courier, monospace;
font-size: 18px;
margin: 0;
padding: 0;
}
form {
background-color: rgba(80, 173, 255, 0.658);
text-align: center;
border: 3.5px solid black;
border-radius: .5rem;
padding: 25px;
width: auto;
height: auto;
margin-left: 18%;
margin-right: 18%;
box-shadow: 10px 5px 5px black;
}
label {
letter-spacing: 1px;
}
.title {
background-color: rgba(80, 173, 255, 0.658);
text-align: center;
border: 3.5px solid black;
border-radius: .5rem;
width: auto;
height: auto;
margin-top: 6%;
margin-left: 19%;
margin-right: 19%;
padding: 0px 20px;
box-shadow: 10px 5px 5px black;
font-size: 20px;
}
.form-list {
padding: 2.5% 30px 30% 30px;
}
#pw-length {
width: 52px;
border: black solid .125rem;
border-radius: .25rem;
background-color: rgb(236, 255, 255);
font-weight: bold;
}
#inc-nums, #inc-syms, #inc-upper, #inc-lower {
padding: 2px;
margin: 4px;
width: 16px;
height: 16px;
outline: black solid .12rem;
background-color: rgb(236, 255, 255);
}
.output-pw {
display: flex;
justify-content: center;
padding-top: 20px;
}
#copy-btn {
margin-left: 5px;
}
#output-pass {
outline: black solid .12rem;
background-color: rgb(236, 255, 255);
}
#pw-btn {
background-color: rgba(57, 98, 211, 0.705);
color: rgb(24, 24, 24);
margin-top: 20px;
font-size: 18px;
font-weight: bold;
width: 250px;
height: 30px;
border: rgb(14, 14, 14) solid .125rem;
border-radius: .2rem;
box-shadow: 4px 4px 1.5px black;
}
#pw-btn:hover {
box-shadow: 3px 3px 1px black;
margin-left: 1px;
}
#pw-btn:active {
box-shadow: 0 1px rgb(49, 49, 49);
transform: translateY(1px);
}