forked from cracker4o/purge-cf-cache-chrome-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
91 lines (78 loc) · 1.27 KB
/
main.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
body {
background-color: #FFAA00;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
color:white;
text-align: center;
}
h2 {
font-size: 1.2em;
font-weight: bold;
text-transform: uppercase;
}
button {
background-color: darkorange;
color:white;
font-size: 1.0em;
font-weight: bold;
padding: 5px;
border: 2px solid white;
border-radius: 6px;
box-shadow: 3px 3px 3px #ff7500;
cursor: pointer;
text-transform: uppercase;
}
.success {
margin:5px;
font-weight: bold;
font-size: 1.0em;
}
.error {
color:red;
margin:5px;
font-weight: bold;
font-size: 1.0em;
}
.button-group {
margin-top: 4px;
margin-bottom: 4px;
}
.field {
margin: 10px 4px;
font-weight: bold;
}
.field label {
width: 7em;
display: inline-block;
text-align: right;
}
.field.text-center label {
text-align: center;
width: 4.2em;
}
.field input[type=checkbox] {
padding: 5px;
}
.field input[type=text] {
width: 200px;
padding: 5px;
border: 2px solid white;
border-radius: 6px;
}
.group {
margin: 0.5em;
border: 2px solid white;
border-radius: 6px;
}
.prompt {
display: none;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 10;
background-color: #ff7500;
}
.prompt.active {
display: block;
}