forked from borkweb/BootstrapMediaWiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.css
83 lines (68 loc) · 1.14 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
.jumbotron {
background-color: #333;
color: #eee;
}
.jumbotron pre {
color: #eee;
}
.jumbotron .new {
color: red;
}
.jumbotron h1 .mw-headline {
text-shadow: 1px 1px 0 #000;
}
@media (min-width: 520px) {
.jumbotron pre {
width: 523px;
}
}
.mud-dir {
background: #fff;
border: 1px solid #eee;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
box-shadow: 0 0 5px rgba( 0, 0, 0, 0.05 );
position: relative;
}
.mud-dir .reverse-short,
.mud-dir .reverse-long,
.mud-dir .long,
.mud-dir .short {
padding: 0.5em;
}
.mud-dir .long {
display: none;
padding: 0.5em;
}
.mud-dir .toggle {
background: #eee;
color: #555;
cursor: pointer;
display: block;
font-size: 0.9em;
padding: 0.5em;
}
.mud-dir.show-long .long {
display: block;
}
.mud-dir.show-long .short {
display: none;
}
.mud-dir .reverse-short,
.mud-dir .reverse-long {
display: none;
}
.mud-dir.show-reverse .short,
.mud-dir.show-reverse .long {
display: none;
}
.mud-dir.show-reverse .reverse-short {
display: block;
}
.mud-dir.show-reverse.show-long .reverse-short {
display: none;
}
.mud-dir.show-reverse.show-long .reverse-long {
display: block;
}