Welcome to mirror list, hosted at ThFree Co, Russian Federation.

variables.scss « sass « assets - github.com/ojroques/hugo-researcher.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 678a75ba6b322370c056e2479035eaa153064109 (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
// Sizes
$max-width: 750px;
$margin-y: 16px;
$avatar-size: 90px;

// Colors
$dark: #000000;
$green: #28a745;
$red: #dc3545;

// Placeholders
%link-default {
    color: $red;
    text-decoration: none;
    &:hover {
        color: $red;
        text-decoration: underline;
    }
}
%link-dark {
    color: $dark;
    text-decoration: none;
    &:hover {
        color: $dark;
        text-decoration: underline;
    }
}
%table-cell {
    border: 1px solid #cccccc;
    padding: 6px 12px;
    text-align: left;
}