blob: a7a792fcbc7c58652b1e0f2ac1c4ddb4de8c6d42 (
plain) (
blame)
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
|
// colors
$color-primary: #8AA2D3 !default; // https://irocore.com/aofuji/
$color-primary-dark: #3B469B !default; // https://irocore.com/aomurasaki/
$color-secondary: #8F82BC !default; // https://irocore.com/fujimurasaki/
$color-mute: #9EA1A3 !default; // https://irocore.com/suzu-iro/
$color-spliter: #E5E2E4 !default; // https://irocore.com/komachinezu/
// font size list
$font-size-logo: 2.5em !default; // Logo Only
$font-size-l1: 1.75em !default; // Primer CSS H1
$font-size-l2: 1.5em !default; // Primer CSS H2
$font-size-l3: 1.25em !default; // Primer CSS H3
$font-size-l4: 1em !default; // Primer CSS H4 & Normal Text
// divider css
$spliter: 1px solid $color-spliter !default;
// link color mixin
@mixin link-primary {
a {
color: $color-primary;
}
a:hover {
color: $color-secondary;
text-decoration: none;
}
}
@mixin link-secondary {
a {
color: $color-secondary;
}
a:hover {
color: $color-primary-dark;
text-decoration: none;
}
}
// title css which also used in 404
@mixin pdsans-title {
font-family: 'Product Sans', -apple-system, BlinkMacSystemFont, Arial, monospace;
font-weight: 700;
font-size: $font-size-logo;
white-space: nowrap;
display: block;
color: $color-primary;
}
|