Newer
Older
$dark_1: #35393c;
$dark_2: #3c4144;
$dark_3: #555d61;
$light_1: #96a5ae;
$light_2: #aabbc8;
$magenta: #ff00ff;
$purple: #902f90;
$green: #00ff00;
$kaki: #368736;
$blue_1: #1c3db2;
$red_1: #9c3030;
$red_2: #e74949;
$yellow_1: #e5a002;
// screen thresholds
$screen_l: 900px;
$screen_m: 780px;
$screen_s: 560px;
$screen_xs: 480px;
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
$page_contents_center_width: 1300px;
// mixins
@mixin page-contents-center {
width: $page_contents_center_width;
max-width: 100%;
margin: 0 auto;
}
@mixin page-header {
background-image: url("/assets/images/wallpaper_binary.png");
padding: 10px 0;
h1 {
padding: 15px 40px 0;
font-size: 25px;
color: $blue_2;
margin: 0 auto;
}
p {
color: $blue_3;
* {
color: $blue_3;
}
font-style: italic;
padding: 15px 40px 15px 100px;
margin: 0 auto;
}
@media screen and (max-width: $screen_s) {
h1 {
padding: 15px 20px 0;
}
p {
padding: 15px;
}
}
}
@mixin flex-center {
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
}
@mixin flex-center-col {
@include flex-center;
flex-direction: column;
}