File: extra.css

package info (click to toggle)
posting 2.9.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,556 kB
  • sloc: python: 9,719; makefile: 15
file content (185 lines) | stat: -rw-r--r-- 3,874 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
h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto Mono", monospace;
    font-weight: 700;
    font-style: normal;
    font-optical-sizing: auto;
    color: #f0f0f0 !important;
}

body {
    background-image: linear-gradient(
        0deg,
        hsl(272deg 33% 11%) 0%,
        hsl(276deg 30% 9%) 20%,
        hsl(279deg 29% 7%) 40%,
        hsl(282deg 24% 4%) 60%,
        hsl(313deg 30% 7%) 80%,
        hsl(311, 35%, 12%) 90%,
        hsl(307, 58%, 22%) 100%
    );
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: auto;

}

code {
    background: hsla(287deg, 100%, 10%, 0.4) !important;
    border: 1px solid hsl(287deg 100% 30%) !important;
}

table {
    background: hsla(287deg, 100%, 10%, 0.4) !important;
    border: 1px solid hsl(287deg 100% 30%) !important;
}

span.filename {
    background: hsla(287deg, 100%, 10%, 0.4) !important;
    border: 1px solid hsl(287deg 100% 30%) !important;
    border-bottom: none !important;
    color: hsla(286, 42%, 73%, 0.526) !important;
}

.md-nav__link {
    background-color: transparent !important;
    box-shadow: none !important;
}
.md-nav__link--active {
    color: hsl(287, 72%, 66%) !important;
}

nav.md-nav.md-nav--secondary {
    border-left-color: hsl(287, 72%, 66%) !important;
}

nav.md-tabs {
    background: transparent !important;
    box-shadow: none !important;
    box-sizing: content-box;
    max-width: 800px;
    margin: 0 auto;

    & .md-tabs__link {
        color: #f0f0f0 !important;
        opacity: 0.93;
        font-size: 0.83rem;
        position: relative;
        text-decoration: none;
    }

    & .md-tabs__link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -2px;
        left: 50%;
        background-color: hsl(287, 72%, 66%);
        transition: width 0.16s ease-out, left 0.16s ease-out;
    }

    & .md-tabs__link:hover::after {
        width: 100%;
        left: 0;
    }

    & .md-tabs__item--active {
        font-weight: bold;
        a {
            text-decoration: none;
            position: relative;
        }
        a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: hsl(287, 72%, 66%);
            transition: all 0.16s ease-in-out;
        }
        a:hover::after {
            height: 3px;
            box-shadow: 0 0 5px hsl(287, 72%, 66%);
        }
    }
}
.md-header{position:initial;background-color: rgba(0,0,0,0);}
.md-header--shadow {
  box-shadow: none;
}
.md-content {
    background-color: rgba(0,0,0,0);
    padding-bottom: 2.5rem;
}
.md-nav__title {
    box-shadow: none !important;
    background-color: transparent !important;
}

article p {
    color: #f0f0f0f0;
}

p a {
    color: hsl(287, 72%, 66%) !important;
}

a:hover {
    color: hsl(287, 72%, 66%) !important;
}

a.posting-button {
    color: whitesmoke;
    padding: 0.7rem 1.4rem;
    background-color: hsl(287deg 100% 10%);
    border: 3px solid hsl(287deg 100% 30%);
    border-radius: 2px;
    font-family: "Roboto Mono", monospace;
    
    &:hover {
        color: whitesmoke;
        font-weight: 600;
        border: 3px solid rgba(255, 100, 203, 1);
    }
}

.monospace {
    font-family: "Roboto Mono", monospace;
}

.md-search__output mark {
    color: hsl(287, 72%, 66%);
}

.md-search-result__more div {
    color: hsl(287, 72%, 66%) !important;
    opacity: 0.8;
}

article {
    max-width: 840px;
    margin: 0 auto !important;
    padding: 0 1rem;

    & p mark {
        background-color: rgba(255, 100, 203, 0.25) !important;
    }
}

footer {
    & div.md-ellipsis {
        font-family: "Roboto Mono", monospace;
    }
}

@media (min-width: 1220px) {
    article {
        margin: 0 0 !important;
    }
}

:root {

}