-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathadmin.css
More file actions
139 lines (137 loc) · 2.45 KB
/
admin.css
File metadata and controls
139 lines (137 loc) · 2.45 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
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
.aj_method,
.aj_steps_hidden,
#aj_step2_gtmetrix_results,
#aj_step2b_gtmetrix_results,
#aj_step2c_gtmetrix_results,
#aj_step2d_gtmetrix_results,
#aj_step2e_gtmetrix_results,
#aj_latest_please_wait,
#aj_step4_y,
#aj_step4_n,
#aj_notification {
display: none;
}
#aj_step2_gtmetrix_results td,
#aj_step2b_gtmetrix_results td,
#aj_step2c_gtmetrix_results td,
#aj_step2d_gtmetrix_results td,
#aj_step2e_gtmetrix_results td {
vertical-align: top;
text-align: center;
}
.aj_gtmetrix_result {
font-size: 2rem;
}
.aj_gtmetrix_screenshot,
#aj_notification {
-webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.75);
-moz-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.75);
box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.75);
max-width: 200px;
}
.aj_gtmetrix_screenshot_dashboard {
-webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.75);
-moz-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.75);
box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.75);
max-width: 125px;
}
.aj-steps-table h3 {
height: 2em;
}
.aj_step_img {
max-width: 150px;
}
.aj_field_error {
border: solid 1px #ff0000;
}
#aj_notification {
position: fixed;
top: 50%;
left: 40%;
width: 20%;
z-index: 105;
text-align: center;
font-weight: normal;
font-size: 14px;
font-weight: bold;
color: white;
background-color: #ff7800;
padding: 5px;
}
#aj_notification span.aj_dismiss {
border: 2px solid #fff;
padding: 0 5px;
cursor: pointer;
float: right;
margin-right: 10px;
}
#aj_notification a {
color: white;
text-decoration: none;
font-weight: bold;
}
.aj ol {
list-style-type: decimal;
}
.aj ul {
list-style-type: circle;
}
.aj ol,
.aj ul {
margin-left: 2em;
}
.aj_plugin {
border: solid 1px #cccccc;
padding: 15px;
background-color: #f5f5dc;
margin-top: 15px;
}
.aj_loader_loading_text {
margin: 0;
text-align: center;
}
.aj_loader {
height: 25px;
width: 100%;
content: "";
position: relative;
overflow: hidden;
background-color: #ddd;
}
.aj_loader:before {
display: block;
position: absolute;
content: "";
left: -200px;
width: 200px;
height: 25px;
background-color: #2980b9;
animation: aj_loading 3s linear infinite;
}
@keyframes aj_loading {
from {
left: -200px;
width: 30%;
}
50% {
width: 30%;
}
70% {
width: 70%;
}
80% {
left: 50%;
}
95% {
left: 120%;
}
to {
left: 100%;
}
}
.asItemDetail {
background: #fff;
border: 1px solid #ccc;
padding: 5px 15px;
margin: 15px 10px 10px 0;
}