File: default.scss

package info (click to toggle)
ruby-kramdown 1.17.0-1%2Bdeb10u2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,540 kB
  • sloc: ruby: 7,980; sh: 79; makefile: 8
file content (217 lines) | stat: -rw-r--r-- 3,867 bytes parent folder | download
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
@import 'design';

a:hover {
    background-color: rgba(0,0,0,0.1);
}

aside.banner {
    font-size: 18px;
    line-height: 27px;
}

aside a {
    text-decoration: none;

    &:hover, &:link {
        text-decoration: underline;
    }

}

#content {
    blockquote.information {
        border-left: 12px solid #080;
        background-color: #bfb;
        padding: 12px 12px 12px 0;
        margin-left: -48px;
        padding-left: 48px;
    }

    blockquote.markdown-difference {
        border-left: 12px solid #dc0;
        background-color: #ffa;
        padding: 12px 12px 12px 0;
        margin-left: -48px;
        padding-left: 48px;

        &:before {
            content: "Difference to Standard Markdown";
            display: block;
            font-weight: bold;
        }
    }

    blockquote pre {
        border: none;
    }

    table {
        border-collapse: collapse;
        margin-left: auto;
        margin-right: auto;
        width: 100%;

        td, th {
            padding: 3px 5px;
        }
        th {
            background-color: #080;
            color: white;
        }
    }

    pre.show-whitespaces .ws-space {
        background-color: #f44;
    }
    pre.show-whitespaces .ws-space-l {
        background-color: #f22;
    }
    pre.show-whitespaces .ws-space-r {
        background-color: #f00;
    }
    pre.show-whitespaces .ws-tab {
        background-color: #ff4;
    }
    pre.show-whitespaces .ws-tab-l {
        background-color: #ff2;
    }
    pre.show-whitespaces .ws-tab-r {
        background-color: #ff0;
    }
    pre.show-whitespaces.ws-lr .ws-tab {
        background-color: inherit;
    }
    pre.show-whitespaces.ws-lr .ws-space {
        background-color: inherit;
        opacity: 0;
    }

    table.kdexample td {
        vertical-align: top;
    }

    table.kdexample pre {
        margin: 5px 0px;
    }

    .kdexample:hover .kdexample-after-source {
        display: block;
    }

    .kdexample-after-source {
        display: none;
        background-color: #ffffee;
        border: 2px solid #e6e8e9;
        margin: 0 10px;
        padding: 5px;
    }

    .kdexample-after-live {
        background-color: #eeffee;
        border: 2px solid #e6e8e9;
        margin: 5px 0px 12px;
        padding: 5px;
    }

    div.kdsyntaxlink {
        float: right;
        position: relative;
        top: -17px;
        padding: 5px;
        border: 1px solid #e6e8e9;
        margin-right: 10px;
        margin-left: 10px;

        a {
            text-decoration: none;
        }
    }
}

.news-item {
    border-top: 2px solid #ddd;
    margin-top: 46px;
}

.news-date {
    float: right;
    margin-top: 2px;
    font-size: small;
    color: #888;
}

footer {
    clear: both;
    font-size: 92%;
    text-align: left;

    a {
        color: #898989;

        &:hover {
            text-decoration: none;
            color: #666;
        }
    }
}

/* common rules */
acronym {
    cursor: help;
    border-bottom: 1px solid #777;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.a-left, tr.a-left td {
    text-align: left;
}

.a-center, tr.a-center td {
    text-align: center;
}

.a-right, tr.a-right td {
    text-align: right;
}

.clear {
    clear: both;
}

.inline-important {
    font-weight: bold;
    display: block;
    text-align: center;
}


.patreon, .patreon:hover {
    border-radius: 50px;
    padding: 5px 10px;
    margin: 0 5px;
    display: inline-block;
    text-decoration: none !important;
    background-color: #e6461a !important;
    box-shadow: 0px 0px 5px 5px #e6461a;
    color: white !important;
    font-weight: bold;

    &:hover {
      box-shadow: 0px 0px 0px 5px #e6461a;
    }
}

#call-to-arms {
  text-align: center;
  margin: 40px 0 10px;
  background-color: rgba(255, 255, 255, 0.18);
  padding: 30px;
  border-radius: 100px;
}