-
Notifications
You must be signed in to change notification settings - Fork 4
/
style.default.css
106 lines (91 loc) · 1.73 KB
/
style.default.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
/*
* Default CSS stylesheet.
* You should not edit directly this file, but copy it as style.local.css.
*/
body {
color: #444;
background-color: white;
background-image: linear-gradient(#fff, #b8f1f3);
background-image: -webkit-linear-gradient(#fff, #b8f1f3);
background-attachment: fixed;
font-size: 1em;
margin-left: 20px;
margin-top: 20px;
font-family: sans-serif;
font-weight: bold;
}
#header {} /* Future usage? */
#content {} /* Future usage? */
a {
color: indigo;
text-decoration: none;
font-size: small;
}
a:hover {
background-color: yellow;
text-decoration: none;
}
h1 {
color: black;
font-size: 2em;
margin: 0;
padding: 0;
}
#media {
border: 1px solid;
box-shadow: 0px 3px 5px rgba(100, 100, 100, 0.9);
margin-bottom: 5px;
margin: auto;
display: block;
max-width: 90%;
height: auto;
}
img.file {
border: 1px solid;
box-shadow: 0px 3px 5px rgba(100, 100, 100, 0.9);
}
embed {
border: 1px solid;
width: 800px;
height: 480px;
box-shadow: 0px 2px 6px rgba(100, 100, 100, 0.9);
}
.vignette {
max-width: 90%;
height: 10em;
overflow-y: auto;
overflow-x: hidden;
float: left;
padding: 5px;
border: 2px solid #423137;
border-radius: 4px;
background-color: #fdfbe1;
margin-left: 0;
margin-right: 10px;
margin-bottom: 10px;
}
.vignette .title {
font-size: 12pt;
color: #830000;
}
.vignette ul {
padding: 0;
list-style: none;
}
.fileinfo {
margin: 1em;
font-family: monospace;
}
#footer {
clear: both;
position: relative;
z-index: 10;
height: 3em;
margin-top: -3em;
}
.hidden {
display: none;
}
.unhidden {
display: block;
}