-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathpopup.css
124 lines (106 loc) · 1.76 KB
/
popup.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
@font-face {
font-family: "Roboto";
src: url("Roboto/Roboto-Bold.ttf") format("truetype");
}
body {
background: #242a36;
width: 340px;
padding: 1em;
}
.btn {
width: 100% !important;
padding: 5px;
height: 41px;
border-radius: 6px;
font-size: 20px;
overflow: hidden;
font-family: "Roboto", sans-serif;
border-width: 0;
outline: none;
margin-bottom: 0.4em;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
background-color: #2ecc71;
color: #ecf0f1;
cursor: pointer;
transition: background-color 0.3s;
}
.btn:hover,
.btn:focus {
background-color: #27ae60;
}
.btn > * {
position: relative;
}
.btn span {
display: block;
padding: 12px 24px;
}
.btn:active:before {
width: 120%;
padding-top: 120%;
transition: width 0.2s ease-out, padding-top 0.2s ease-out;
}
#message {
margin: 3.2em 0em 1em 0.5em;
font-family: "Roboto", sans-serif;
font-style: normal;
font-weight: bold;
padding-left: 0.3em;
padding-right: 0.3em;
font-size: 16px;
line-height: 21px;
align-items: center;
color: white;
}
.options {
float: right;
margin-right: 0.1em;
}
#activeContol {
float: left;
}
.main {
clear: both;
}
.content {
font-style: normal;
font-weight: bold;
font-size: 18px;
line-height: 21px;
display: flex;
align-items: center;
color: #ffffff;
}
/* Styles, not important */
*,
*:before,
*:after {
box-sizing: border-box;
}
h2 {
font-weight: normal;
}
.btn.orange {
background-color: #e67e22;
}
.btn.orange:hover,
.btn.orange:focus {
background-color: #d35400;
}
.btn.red {
background-color: #e74c3c;
}
.btn.red:hover,
.btn.red:focus {
background-color: #c0392b;
}
#tip {
text-align: center;
color: white;
font-size: 12px;
font-family: "Roboto", sans-serif;
font-size: 12px;
}
a {
color: white;
}