-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
124 lines (109 loc) · 2.78 KB
/
Copy pathindex.css
File metadata and controls
124 lines (109 loc) · 2.78 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
body {
margin: 0;
color: #ffffff;
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}
#container {
margin: 40px;
background-color: #1F2937;
border-radius: 6px;
padding: 115px 69px;
max-width: 40%;
margin-right: auto;
margin-left: auto;
}
h1 {
margin: 0
}
h2 {
color: #D5D4D8;
margin-top: 15px;
margin-bottom: 50px;
}
span {
color: #38BDF8;
}
#passwords {
display: flex;
justify-content: left;
border-top: 2px solid #2F3E53;
}
.password {
color: #BAE6FD;
width: 211px;
background-color: #273549;
margin-top: 35px;
margin-left: 0;
margin-right: 4px;
padding: 15px 20px;
border-radius: 6px;
height: 25px;
}
h4 {
padding: 0;
margin: 0;
}
#generatebtn {
padding: 9px 17px;
color: #FFFFFF;
font-family: inherit;
font-weight: normal;
background-color: #0284C7;
border: none;
border-radius: 6px;
margin-top: 0;
margin-bottom: 35px;
}
.copybtn {
margin-top: 40px;
margin-right: 12px;
font-family: inherit;
padding: 9px;
border-radius: 6px;
border: none;
background-color: #1F2937;
background-image: url("copy_icon.png");
background-size: cover;
height: 40px;
width: 40px;
}
/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
visibility: hidden; /* Hidden by default. Visible on click */
min-width: 250px; /* Set a default minimum width */
margin-left: -125px; /* Divide value of min-width by 2 */
background-color: #1F2937; /* Black background color */
color: #fff; /* White text color */
text-align: center; /* Centered text */
border-radius: 6px; /* Rounded borders */
padding: 16px; /* Padding */
position: fixed; /* Sit on top of the screen */
z-index: 1; /* Add a z-index if needed */
left: 50%; /* Center the snackbar */
bottom: 30px; /* 30px from the bottom */
}
/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
visibility: visible; /* Show the snackbar */
/* Add animation: Take 0.5 seconds to fade in and out the snackbar.
However, delay the fade out process for 2.5 seconds */
-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
from {bottom: 0; opacity: 0;}
to {bottom: 30px; opacity: 1;}
}
@keyframes fadein {
from {bottom: 0; opacity: 0;}
to {bottom: 30px; opacity: 1;}
}
@-webkit-keyframes fadeout {
from {bottom: 30px; opacity: 1;}
to {bottom: 0; opacity: 0;}
}
@keyframes fadeout {
from {bottom: 30px; opacity: 1;}
to {bottom: 0; opacity: 0;}
}