hexo-theme-keep/source/css/layout/_partial/empty-page.styl

35 lines
559 B
Stylus
Raw Normal View History

@require "../common/magic-theme.styl";
2020-10-30 10:18:42 +08:00
@require "../common/variables.styl";
.empty-page-container {
background: var(--background-color);
2020-11-13 14:43:22 +08:00
ils-container(1.005, 1.01, 30px);
2020-06-04 22:11:27 +08:00
+ils-tablet() {
2020-11-13 14:43:22 +08:00
ils-container(1.001, 1.005, 20px);
2020-06-04 22:11:27 +08:00
}
.empty-page-content {
h1, h2, h3, h4, h5, h6 {
&:first-child {
margin-top: 0;
}
}
2020-10-30 10:18:42 +08:00
margin-bottom: $component-interspace;
2020-06-04 22:11:27 +08:00
+ils-tablet() {
2020-11-18 11:15:03 +08:00
margin-bottom: $component-interspace * 0.9;
2020-10-30 10:18:42 +08:00
}
+ils-mobile() {
2020-11-18 11:15:03 +08:00
margin-bottom: $component-interspace * 0.8;
2020-06-04 22:11:27 +08:00
}
}
}