blob: 500e2f7a2cac6fbc45879a092a4250a49c66ebe9 (
plain)
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
|
---
# Only the main Sass file needs front matter (the dashes are enough)
---
$grey-color: #424242;
$brand-color: hsla(214, 84%, 47%, 1);
@import "minima";
code {
/* white-space: nowrap; */
}
tfoot td {
font-style: italic;
}
div.pagetrail {
margin-bottom: 2ex;
text-align: center;
}
div.pagetrail a {
font-weight: bold;
border-left: 1px solid black;
border-right: 1px solid black;
padding: 0.25em;
}
div.pagetrail a.current_pagelink {
font-weight: unset;
background: $brand-color;
color: white;
}
section#isso-thread {
margin-left: 1em;
border-left: 1px solid black;
padding-left: 1em;
}
a {
text-decoration: underline !important;
}
a:visited {
color: purple !important;
}
.news-item {
border-radius: 10px;
padding: 5px;
background: #eeeeee;
margin-bottom: 1em;
position: relative;
}
.banner-close-button {
position: absolute;
top: 10px;
right: 10px;
}
hr.postsep {
width: 70%;
margin: auto;
margin-bottom: 1em;
}
|