-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
153 lines (130 loc) · 2.45 KB
/
style.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/*
Color Palette
#283149 - Dark blue (background)
#404b69 - Blue/grey (subtle accents, borders, outlines)
#f73859 - Sunset red/orange (buttons, main accents, pop-out elements)
#f56981 - Button Hover
#c42b46 - Button Click
#dbedf3 - Light grey (text)
#11141f - Results div background
*/
/* IDs */
* { margin:0; padding:0; }
#clipboard-btn {
margin: 10px auto auto auto;
position: relative;
display: flex;
text-align: center;
background-color: #f73859;
font-size: 12px;
border: 0;
border-radius: 5px;
padding: 3px 10px 3px 10px;
transition-duration: 0.3s;
}
#clipboard-btn:hover {
background-color: #f56981;
}
#clipboard-btn:active {
background-color: #c42b46;
}
#generate-pass {
margin: 10px auto auto auto;
position: relative;
display: flex;
text-align: center;
background-color: #f73859;
font-size: 20px;
border: 0;
border-radius: 5px;
padding: 15px 50px 15px 50px;
transition-duration: 0.3s;
position: relative;
}
#generate-pass:hover {
background-color: #f56981;
}
#generate-pass:active {
background-color: #c42b46;
}
#generated-pass {
font-size: 16px;
color: #dbedf3;
text-align: center;
position: relative;
}
/* Classes */
.parent {
display: flex;
}
.container {
height: auto;
width: auto;
border-style: solid;
border-width: 2px;
border-color: #dbedf3;
background-color: #283149;
border-radius: 5px;
padding: 10px 30px 10px 30px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.result-div {
height: 25px;
width: 400px;
background-color: #11141f;
position: relative;
display:block;
margin: 10px auto auto auto;
padding: 5px auto 5px auto;
border-radius: 3px;
text-align: center;
align-items: center;
}
.slider {
-webkit-appearance: none;
appearance: none;
width: 75%;
height: 7px;
margin: 10px auto auto auto;
position: relative;
display: flex;
border-radius: 5px;
opacity: 0.7;
transition: 0.2s;
}
.slider:hover {
opacity: 1;
cursor: pointer;
}
.slider-div {
margin: 0px auto 10px auto;
}
.user-setting {
display: flex;
justify-content: space-between;
align-items: center;
margin: 15px auto auto 50px;
}
input[type=checkbox] {
margin-right: 50px;
}
/* Tags */
h1 {
color: #dbedf3;
text-align: center;
font-size: 24px;
}
h2 {
color: #dbedf3;
text-align: center;
font-size: 12px;
font-weight: 400;
}
body {
background-color: #404b69;
color: #dbedf3;
font-family: "Raleway", sans-serif;
}