mirror of
https://github.com/bspeice/speice.io
synced 2024-11-05 09:38:09 -05:00
50 lines
1.0 KiB
SCSS
50 lines
1.0 KiB
SCSS
/* ==========================================================================
|
|
Page
|
|
========================================================================== */
|
|
|
|
.c-page {
|
|
|
|
}
|
|
|
|
.c-page__header {
|
|
margin-bottom: 10rem; // 100px
|
|
|
|
h1 {
|
|
margin-bottom: 2.5rem; // 25px
|
|
@include fs--heading-2;
|
|
color: $c-base__02;
|
|
}
|
|
|
|
p {
|
|
@include fs--meta;
|
|
}
|
|
|
|
a {
|
|
border-bottom-style: none;
|
|
}
|
|
}
|
|
|
|
.c-page__footer {
|
|
margin-bottom: 10rem;
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-flex-wrap: wrap;
|
|
-ms-flex-wrap: wrap;
|
|
flex-wrap: wrap;
|
|
-webkit-box-pack: justify;
|
|
-webkit-justify-content: space-between;
|
|
-ms-flex-pack: justify;
|
|
justify-content: space-between;
|
|
-webkit-box-align: center;
|
|
-webkit-align-items: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
p {
|
|
@include fs--body;
|
|
color: $c-base__01;
|
|
}
|
|
}
|
|
|