-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.css
61 lines (57 loc) · 1.38 KB
/
custom.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
head {
display: block;
}
q_o_title {
font-size: 24px;
}
.info_link {
cursor:pointer;
}
.extension_module {
margin-top: 10px;
width: 92%;
margin-left: auto;
margin-right: auto;
border: 1px solid red;
box-shadow: 10px 10px 40px #888888;
z-index: 9999;
background-color: #ffb734;
border-radius: 25px;
padding: 20px;
margin-bottom: 20px;
}
/* ensure styles of module are separate from styles of the webpage the module is on */
.extension_module table {}
.extension_module table tbody {}
.extension_module table tbody tr {}
.extension_module table tbody tr td {}
.extension_module table tbody tr td img {}
.extension_module table tbody tr td a {}
.extension_module table tbody tr td a img {}
.extension_module table tbody tr td a, span.link {
color: blue;
}
.extension_module table tbody tr td a:visited, span.visited {
color: purple;
}
.extension_module table tbody tr td a:active, span.active {
color: red;
}
.extension_module table tbody tr td button {
border: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0px;
font-family: Arial;
color: #ffffff;
font-size: 14px;
background: #e63333;
padding: 10px 10px 10px 10px;
text-decoration: none;
}
.extension_module table tbody tr td button:hover {
background: #e64c4c;
text-decoration: none;
}
.extension_module div {}
.extension_module p {}