-
Notifications
You must be signed in to change notification settings - Fork 0
/
wiki-api-gui-styles.css
74 lines (72 loc) · 1.16 KB
/
wiki-api-gui-styles.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
.gnlv-wikidiv {
background-color:white;
width:100%;
height:93%;
overflow-y:scroll;
overflow-x:hidden;
text-align:left;
padding:5px;
font-size: 16px;
font-family: Tahoma, Arial, sans-serif;
}
.gnlv-wikidiv h2{
margin-top: 15px;
font-size: 16px;
}
.gnlv-thumb-div {
margin:2px;
display:inline-block;
text-align:center;
cursor: pointer;
vertical-align:middle;
}
.gnlv-wikidiv ul {
margin:0;
padding:0;
cursor:pointer;
}
.gnlv-wikidiv li {
background-color:#e9e9ff;
margin:2px;
padding:2px;
list-style-type: none;
}
.gnlv-wikidiv a:link, .gnlv-wikidiv a:visited {
color:#f37511;
text-decoration:none;
/* pop out text */
text-shadow: 0 1px 0 rgba(100,100,100, 0.45);
}
.gnlv-wikidiv a:hover {
color:#999;
text-decoration:none;
}
#wikithumbsdiv {
width:100%;
}
#wikilinksdiv{
width:100%;
border:thin solid maroon;padding:9px;
}
.gnlv-border-red img{
border:3px solid #900;
}
.gnlv-border-orange img {
border:2px solid #FC3;
}
.gnlv-blink {
color:grey;
padding:10px;
animation: 1.3s linear infinite gnlv-blink-ani;
}
@keyframes gnlv-blink-ani {
0% {
visibility: hidden;
}
50% {
visibility: hidden;
}
100% {
visibility: visible;
}
}