-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
105 lines (93 loc) · 2 KB
/
index.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
html {
margin: 0;
padding: 0;
background-image: linear-gradient( 180deg, hsl(215deg 28% 17%) 0%, hsl(206deg 44% 20%) 31%, hsl(198deg 71% 21%) 43%, hsl(193deg 100% 22%) 52%, hsl(190deg 100% 24%) 59%, hsl(186deg 100% 26%) 64%, hsl(181deg 100% 27%) 69%, hsl(175deg 100% 30%) 74%, hsl(168deg 100% 33%) 81%, hsl(160deg 84% 39%) 100%);
height: 100%;
}
body {
padding: 0 10%;
margin: 0%;
}
.gen {
text-align: left;
color: white;
margin: 5% 0 0% 0%;
font-size: 40px;
font-weight: bold;
line-height: 1;
}
.accent-text {
color: #10D981;
font-size: 40px;
font-weight: bold;
line-height: 1;
}
.msg {
color: #D5D4D8;
line-height: 0;
font-size: 20px;
}
.bottom {
display: flex;
flex-wrap: wrap;
padding: 5%;
text-align: center;
}
.generatePW,
.removePW {
background-color: #10D981;
border-radius: 3px;
border-color: rgba(0, 0, 0, 0);
font-size: 1.5rem;
color: #424242;
}
#pw1,
#pw2,
#pw3,
#pw4 {
margin: 2% 5%;
font-size: 24px;
font-style: bold;
justify-content: center;
color: #10D981;
word-break: break-all;
border-color: rgba(0, 0, 0, 0);
border-radius: 12px;
background-color: #374F50;
min-width: 40%;
max-width: 40%;
min-height: 2rem;
display: flex;
/* background-image: url('img/ellipsis.svg');
background-repeat: no-repeat;
background-position: center; */
}
#length {
background-color: rgba(0, 0, 0, 0);
border-color: rgba(0, 0, 0, 0.4);
color: white;
margin: 10px;
font-size: 1.5rem;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
#lengthLabel {
color: #10D981;
font-size: 1.5rem;
}
button:hover {
cursor: pointer;
opacity: 0.8;
border-color: rgba(0, 0, 0, .7);
border-radius: 5px;
}
button:active {
cursor: pointer;
opacity: 0.5;
border-color: rgba(0, 0, 0, .4);
border-radius: 5px;
box-shadow: 2px -5px 3px rgba(0, 0, 0, .3);
}