wiki/_sass/_container.scss

78 lines
1.3 KiB
SCSS
Raw Normal View History

2017-12-02 02:04:52 -08:00
// コンテナ
#container {
box-sizing: border-box;
2018-08-12 00:29:14 -07:00
display: grid;
grid-template-rows: auto 1fr auto;
display: -ms-grid;
-ms-grid-rows: auto 1fr auto;
header {
grid-row: 1 / 2;
-ms-grid-row: 1;
}
#content {
grid-row: 2 / 3;
-ms-grid-row: 2;
}
#menu {
grid-row: 2 / 3;
-ms-grid-row: 2;
}
footer {
grid-row: 3 / 4;
-ms-grid-row: 3;
}
2017-12-02 02:04:52 -08:00
@include media-desktop {
border-left: $border-default;
border-right: $border-default;
box-shadow: $container-box-shadow;
grid-template-columns: $container-columns;
-ms-grid-columns: $container-columns;
2018-08-12 00:29:14 -07:00
max-width: $container-max-width;
2017-12-02 02:04:52 -08:00
margin: 0 auto;
min-height: 100vh;
2017-12-02 02:04:52 -08:00
header {
border-bottom: $border-default;
grid-column: 1 / 3;
-ms-grid-column: 1;
-ms-grid-column-span: 2;
2017-12-02 02:04:52 -08:00
}
2018-08-12 00:29:14 -07:00
#content {
grid-column: 1 / 2;
-ms-grid-column: 1;
2017-12-02 02:04:52 -08:00
}
2018-08-12 00:29:14 -07:00
#menu {
border-left: $border-default;
grid-column: 2 / 3;
-ms-grid-column: 2;
2017-12-02 02:04:52 -08:00
}
footer {
grid-column: 1 / 3;
-ms-grid-column: 1;
-ms-grid-column-span: 2;
2017-12-02 02:04:52 -08:00
}
}
@include media-mobile {
margin: 0;
width: 100vw;
2018-08-12 00:29:14 -07:00
header {
border-bottom: $border-default;
2017-12-02 02:04:52 -08:00
}
2018-02-28 02:56:22 -08:00
2018-08-12 00:29:14 -07:00
#menu {
display: none;
2018-02-28 02:56:22 -08:00
}
2017-12-02 02:04:52 -08:00
}
}