58 lines
1.4 KiB
SCSS
Executable file
58 lines
1.4 KiB
SCSS
Executable file
// Font: Noto Sans
|
|
|
|
@font-face {
|
|
font-family: 'noto_sans';
|
|
src: url('../../static/fonts/noto-sans/noto-sans-regular-webfont.woff2') format('woff2'),
|
|
url('../../static/fonts/noto-sans/noto-sans-regular-webfont.woff') format('woff');
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'noto_sans';
|
|
src: url('../../static/fonts/noto-sans/noto-sans-italic-webfont.woff2') format('woff2'),
|
|
url('../../static/fonts/noto-sans/noto-sans-italic-webfont.woff') format('woff');
|
|
font-weight: 400;
|
|
font-style: italic;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'noto_sans';
|
|
src: url('../../static/fonts/noto-sans/noto-sans-bold-webfont.woff2') format('woff2'),
|
|
url('../../static/fonts/noto-sans/noto-sans-bold-webfont.woff') format('woff');
|
|
font-weight: 700;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'noto_sans';
|
|
src: url('noto-sans-bold-italic-webfont.woff2') format('woff2'),
|
|
url('noto-sans-bold-italic-webfont.woff') format('woff');
|
|
font-weight: 700;
|
|
font-style: italic;
|
|
}
|
|
|
|
main > .texts {
|
|
box-sizing: border-box;
|
|
|
|
a {
|
|
color: #e00;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.text {
|
|
margin: 8px;
|
|
h1 {
|
|
font-weight: bold;
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
@media screen and (max-width: 799px) {
|
|
.text {
|
|
margin-bottom: 16px;
|
|
h2 {
|
|
margin-bottom: 8px;
|
|
}
|
|
}
|
|
}
|
|
}
|