-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.css
76 lines (65 loc) · 1.03 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
body {
font-family: Avenir, sans-serif;
width: 300px;
padding: 10px;
background-color: #F7F7F7;
}
h1 {
font-size: 18px;
margin-bottom: 10px;
font-weight: 900;
}
p {
margin-bottom: 10px;
}
button {
background-color: #1f1f1f;
color: white;
border: none;
padding: 8px 16px;
font-size: 16px;
cursor: pointer;
text-align: center;
display: inline-block;
border-radius: 4px;
}
button:hover {
background-color: #777777;
}
#role-selector {
margin-bottom: 1.5em;
padding: .25em;
background-color: #F7F7F7;
}
#settings-button {
position: absolute;
top: 0;
right: 0;
margin: 1px;
background-color: #F7F7F7;
}
.spacer {
padding-top:1em;
}
*:disabled {
background-color: #777777;
cursor: not-allowed;
}
textarea {
width:95%;
min-height: 5em;
resize:vertical;
}
.spinner {
border: 4px solid rgba(0, 0, 0, 0.1);
border-left-color: #000;
border-radius: 50%;
width: 24px;
height: 24px;
animation: spin 1s linear infinite;
}
@keyframes spin {
100% {
transform: rotate(360deg);
}
}