-
Notifications
You must be signed in to change notification settings - Fork 0
/
pass.css
61 lines (50 loc) · 798 Bytes
/
pass.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
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
body{
font-family: 'Roboto', sans-serif;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
margin: 0;
background-color: #00529F;
}
.container{
margin-top: 120px;
background-color: #FFD520;
}
h2{
text-align: center;
color: #294e71;
}
.pass{
background-color: #000090;
padding: 20px;
color: #fff;
}
td{
padding: 5px 10px;
}
#length{
width: 40px;
}
#upper{
margin-left: 32px;
}
#lower{
margin-left: 32px;
}
#num{
margin-left: 32px;
}
#sym{
margin-left: 32px;
}
#sub{
width: 100%;
margin: 10px 0px;
padding: 10px;
background-color: #00529F;
font-weight: bold;
cursor: pointer;
border: none;
}