-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.scss
115 lines (99 loc) · 1.86 KB
/
styles.scss
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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
@use 'style/settings';
@use 'style/mixin';
@use 'style/function';
html {
box-sizing: border-box;
height: 100%;
font-family: settings.$fontFamily-primary;
font-size: medium;
line-height: 1.5;
letter-spacing: 0.05em;
word-break: break-word;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
body {
min-width: 320px;
height: 100%;
color: settings.$color-text-primary;
background-color: settings.$color-body-background;
}
img {
max-width: 100%;
height: auto;
vertical-align: bottom;
}
a {
color: inherit;
text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
strong {
font-weight: bold;
}
code {
font-family:
source-code-pro,
Menlo,
Monaco,
Consolas,
'Courier New',
monospace;
}
.wrapper {
width: 100%;
margin: function.em(14, 50) auto;
margin-top: 0;
margin-bottom: 0;
font-size: function.fz(14);
background-color: settings.$color-white;
border-color: settings.$color-gray;
border-style: solid;
border-width: 1px;
box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
@include mixin.pc {
width: function.em(16, 1230);
margin: function.em(16, 50) auto;
font-size: function.fz(16);
}
}
.container {
width: 100%;
margin-right: auto;
margin-left: auto;
font-size: function.fz(14);
@include mixin.tab {
width: 90%;
font-size: function.fz(16);
}
}
.section {
padding-bottom: function.em(14, 48);
text-align: center;
border-bottom-color: settings.$color-gray;
border-bottom-style: solid;
border-bottom-width: 1px;
@include mixin.tab {
padding-top: function.em(16, 48);
padding-bottom: function.em(16, 48);
}
@include mixin.pc {
text-align: initial;
}
}
.padding-block {
padding-top: function.em(16, 48);
padding-bottom: function.em(16, 48);
}
.border-bottom {
border-bottom-color: settings.$color-gray;
border-bottom-style: solid;
border-bottom-width: 1px;
}