aboutsummaryrefslogtreecommitdiff
path: root/assets/sass/variables.scss
blob: 6defa8044b971dd9e824c0a37bf08ad8f8a4574a (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
// Variables
$max-width: 750px;
$avatar-size: 90px;
$margin-y: 16px;
$red: #ff0f00;
$dark: #000000;

// 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;
}