-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWikia.css
122 lines (113 loc) · 3.21 KB
/
Wikia.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
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
/* Para Interface de Criação de Página */
.infoboxIcon {
background-image: url(https://vignette.wikia.nocookie.net/pt.starwars/images/3/3b/ICP_icons.png);
width: 100px;
height: 100px;
margin: 0 auto;
}
div[data-tipo="personagem"] .infoboxIcon, .infoboxIcon.personagem {
background-position: 0px 100px;
}
div[data-tipo="planeta"] .infoboxIcon, .infoboxIcon.planeta {
background-position: -100px 100px;
}
div[data-tipo="droide"] .infoboxIcon, .infoboxIcon.droide {
background-position: 0 0;
}
div[data-tipo="espaçonave"] .infoboxIcon, .infoboxIcon.nave {
background-position: 200px 0px;
}
div[data-tipo="evento"] .infoboxIcon, .infoboxIcon.evento {
background-position: 100px 0px;
}
div[data-tipo="tecnologia"] .infoboxIcon, .infoboxIcon.tecnologia {
background-position: 100px 100px;
}
div[data-tipo="outro"] {
font-size: 15px;
padding: 15px;
}
.ICPbuttons div {
width: 30px;
height: 30px;
display: inline-block;
border-top: 1px solid #CCC;
border-bottom: 1px solid #CCC;
border-left: 1px solid #CCC;
}
#linkButton {
background-image: url("https://vignette.wikia.nocookie.net/pt.starwars/images/f/fd/Link.png/revision/latest?cb=20141207221804");
background-repeat: no-repeat;
background-position-y: 4px;
background-position-x: -2px;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
#refButton {
background-image: url('https://vignette.wikia.nocookie.net/pt.starwars/images/9/9f/Ref.png/revision/latest?cb=20141208011243');
border-right: 1px solid #CCC;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
.ICPbuttons div:hover {
border-color: #969696;
}
#refButton:hover { border-right-color: #969696; }
.pi-data-value textarea { width: 100%; }
#ICPNewArticleGrid>div:hover { background-color: lightgray; }
#CuratedContentToolModal p {
font-size: 14px;
margin: 10px 0;
}
#CuratedContentToolModal section { overflow-y: auto; }
#CuratedContentToolModal { max-height: 80%; }
.ICPdisclaimer { font-size: 12px; }
#CuratedContentToolModal > nav li {
display: inline-block;
width: 33%;
line-height: 30px;
position: relative;
}
#CuratedContentToolModal > nav li:before {
content: '';
width: 100%;
height: 2px;
background: royalblue;
display: inline-block;
margin-right: 30px;
position: absolute;
top: 14px;
left: -50%;
z-index: 0;
}
#CuratedContentToolModal > nav li > div {
background: lightblue;
width: 30px;
height: 30px;
border-radius: 30px;
color: royalblue;
margin: 0 auto;
z-index: 5;
position: relative;
}
#CuratedContentToolModal > nav li:first-child:before {
content: none;
}
#CuratedContentToolModal > nav li.disabled > div {
background: #CCC;
color: #666;
}
#CuratedContentToolModal > nav li.disabled:before {
background: #CCC;
}
#CuratedContentToolModal > nav li.past > div {
background: lightblue;
cursor: pointer;
}
#CuratedContentToolModal > nav li.past:before {
background: lightblue;
}
#CuratedContentToolModal > nav li.active > div {
background: royalblue;
color: #fff;
}