-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpopup.css
More file actions
107 lines (103 loc) · 2.17 KB
/
popup.css
File metadata and controls
107 lines (103 loc) · 2.17 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
ul {
list-style-type: none;
}
.popup{
min-width: 300px;
text-align: center;
align-items: center;
background-color: bisque;
color: black;
}
.title{
background: #37465b;
color: wheat;
border-radius: 50px;
}
.font-dropdown{
color:black;
border-radius: 30px;
font-size: medium;
}
.control-group{
display: flex;
color: black;
align-items: center;
justify-content: center;
padding: 5px;
}
.control-group button{
border-radius: 20px;
padding: 11px;
width: 82px;
margin: 10px;
}
.dark-button{
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 1rem;
color: black;
}
.dark-button{
background-color: white;
position: relative;
display: flex;
flex-direction: row;
align-items: center;
margin: 5%;
justify-content: space-between;
height: 2rem;
width: 4.5rem;
border-radius: 1rem;
cursor:pointer;
}
.row{
padding: 0.25rem;
pointer-events:none;
}
.circle{
position:absolute;
top: 0;
left: 0;
height: 2rem;
width: 2rem;
border-radius: 50%;
background-color: #37465b;
pointer-events: none;
outline-color: black;
}
@keyframes moveCircleRight {
from{
left:0;
background-color: #37465b;
}
to{
left: 100%;
transform: translateX(-100%);
background-color: white;
}
}
@keyframes moveCircleLeft {
from{
left: 100%;
background-color: #37465b;
}
to{
left:0;
background-color: white;
}
}
@keyframes transformToWhite{
from{
background-color: white;
}
to{
background-color: #37465b;
}
}
@keyframes transformToGrey{
from{
background-color: white;
}
to{
background-color: #37465b;
}
}