-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
82 lines (70 loc) · 1.24 KB
/
styles.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
80
81
82
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
body {
background: #556270;
}
#container {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
justify-content: space-around;
align-items: center;
}
#password-suggestion, #password-history {
margin: auto;
flex-basis: auto;
flex-grow: 0;
}
#password-suggestion {
padding: 10px;
height: 35px;
color: #eefaf9;
font:bold 35px Arial;
text-shadow:2px 2px #080a0b;
}
#password-history {
height: 450px;
}
#password-history ul {
height: 300px;
overflow: hidden;
padding: 0;
margin-bottom: 150px;
}
#password-history ul li {
height: 50px;
line-height: 50px;
margin: 0;
list-style: none;
text-align: center;
color: #c2cccb;
font: bold 25px Arial;
text-shadow: 2px 2px #080a0b;
}
#footer {
height: 60px;
bottom: 60px;
position: absolute;
}
#footer div {
vertical-align: top;
}
#footer .seal {
display: inline-block;
background: no-repeat url(seal.png);
width: 60px;
height: 60px;
margin-left: 50px;
}
#footer .productname {
display: inline-block;
color: #eefaf9;
margin-left: 20px;
height: 60px;
font:bold 20px Arial;
padding: 20px 0;
}