-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathstyle.css
executable file
·95 lines (86 loc) · 1.64 KB
/
style.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
#wiki-preview {
position: absolute;
top: 0px;
left: 0px;
z-index: 999;
height: 550px;
width: 500px;
border: 1px solid #ccc;
box-shadow: 0px 0px 20px #bbb;
-webkit-box-shadow: 0px 0px 20px #bbb;
background-color: white;
}
#wiki-title {
color: #333;
position: relative;
height: 20px;
margin: 0 10px;
padding: 5px 0;
border-bottom: 1px solid #ccc;
font-size: 17px;
cursor: move;
z-index: 10;
background-color: white;
box-shadow: 0px 5px 10px -5px #bbb;
-webkit-box-shadow: 0px 5px 10px -5px #bbb;
}
#wiki-title-info {
padding-right: 75px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
#wiki-content {
position: absolute;
top: 0;
left: 0;
box-sizing: border-box;
-webkit-box-sizing: border-box;
width: 100%;
height: 100%;
border-top: 30px solid white;
overflow-y: auto;
overflow-x: hidden;
}
#wiki-content #content {
padding: 1em;
border-width: 0;
}
#controls p {
position: absolute;
top: 0;
right: -5px;
height: 30px;
line-height: 35px;
margin: 0;
padding: 0;
}
#wiki-preview [class^="icon-"],
#wiki-preview [class*=" icon-"] {
opacity: 0.5;
margin: 0 2px;
}
#wiki-loader {
display: none;
height: 16px;
width: 16px;
margin-top: 2px;
}
#wiki-curtain {
background-color: black;
opacity: 0.7;
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
margin: 0;
padding: 0;
display: none;
position: fixed;
z-index: 900;
}
.wiki-highlight {
background-color: #e4e4fa;
padding: 2px 0px;
}