Project

General

Profile

1
// styles in src/style directory are applied to the whole page
2

    
3
// 1. Your custom variables and variable overwrites.
4
$global-link-color: #DA7D02;
5

    
6
// 2. Import default variables and available mixins.
7
@import "../public/scss/variables-theme.scss";
8
@import "../public/scss/mixins-theme.scss";
9

    
10
// 3. Your custom mixin overwrites.
11
@mixin hook-card() { color: #000; }
12

    
13
// 4. Import UIkit.
14
@import "../public/scss/uikit-theme.scss";
15

    
16
body {
17
    background: #0147A7;
18
    color: #fff;
19
}
20
a {
21
    color: #03A9F4;
22
}
    (1-1/1)