This repository was archived by the owner on Sep 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.css
140 lines (119 loc) · 2.24 KB
/
options.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
html, body {
height: 100vh;
}
body {
background-color: #05162c;
color: #fff;
}
.wrapper {
width: 100%;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.page {
width: 100%;
max-width: 800px;
padding: 30px 0;
}
.card {
background-color: #262a34;
color: #c9cacc;
border-radius: 10px;
}
.card .card-header {
border-bottom: 1px solid #36383d;
}
.card .card-header h1 {
font-size: 18px;
font-weight: 500;
margin: 0;
padding: 0;
}
.card .card-content {
padding: 15px 15px 15px;
}
.card .card-footer {
text-align: center;
background-color: rgba(255, 255, 255, 0.05);
}
form h2 {
font-size: 16px;
}
form .btn-primary {
background-color: rgb(0, 255, 170);
border-color: rgb(0, 255, 170);
color: #333;
width: 100%;
max-width: 200px;
}
form .btn-primary:hover,
form .btn-primary:active,
form .btn-primary:focus {
background-color: rgb(0, 255, 132);
border-color: rgb(0, 255, 132);
color: #333;
}
form .btn-reset {
float: right;
}
.copyright {
/* display: inline-block; */
/* margin: 0 auto; */
/* position: absolute;
bottom: 0;
right: 0; */
/* background-color: rgb(0, 255, 170); */
/* color: #333; */
font-size: 14px;
/* padding: 10px; */
border-radius: 5px 0 0 0;
}
.extension-version {
font-weight: bold;
}
.saved-notif {
background-color: rgb(0, 255, 170);
color: #333;
position: absolute;
top: 15px;
right: 15px;
padding: 7px 15px;
border-radius: 5px;
font-size: 16px;
opacity: 0;
transition: all linear 200ms;
animation-duration: 500ms;
animation-direction: normal;
animation-fill-mode: forwards;
animation-play-state: paused;
}
.saved-notif.show {
animation-play-state: running;
animation-name: showNotif;
}
.saved-notif.hide {
animation-play-state: running;
animation-name: hideNotif;
}
@keyframes showNotif {
from {
transform: translateY(-100px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
@keyframes hideNotif {
from {
transform: translateY(0);
opacity: 1;
}
to {
transform: translateY(-100px);
opacity: 0;
}
}