1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| html {
/* apply a natural box layout model to all elements */
box-sizing: border-box;
background-color: $background-color;
font-size: 14px; // Default font-size: 16px;
@include breakpoint($medium) {
font-size: 16px; // Default font-size: 18px;
}
@include breakpoint($large) {
font-size: 16px; // Default font-size: 20px;
}
@include breakpoint($x-large) {
font-size: 18px; // Default font-size: 22px;
}
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
|
댓글남기기