64 lines
915 B
Stylus
64 lines
915 B
Stylus
// Tags
|
|
// --------------------------------------------------
|
|
hr {
|
|
height: 2px;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
// Components
|
|
// --------------------------------------------------
|
|
.btn {
|
|
padding: 0 10px;
|
|
}
|
|
|
|
.headband {
|
|
display: none;
|
|
}
|
|
|
|
// Page - Container
|
|
// --------------------------------------------------
|
|
.main-inner {
|
|
padding-bottom: 80px;
|
|
|
|
+mobile() {
|
|
width: auto;
|
|
}
|
|
}
|
|
|
|
.content {
|
|
padding-top: 80px;
|
|
|
|
+mobile() {
|
|
padding-top: 60px;
|
|
}
|
|
}
|
|
|
|
// Pagination
|
|
// --------------------------------------------------
|
|
.pagination {
|
|
margin: 120px 0 0;
|
|
text-align: left;
|
|
|
|
+mobile() {
|
|
margin: 80px 10px 0;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
// Footer
|
|
// --------------------------------------------------
|
|
.footer {
|
|
background: var(--content-bg-color);
|
|
color: var(--text-color);
|
|
padding: 10px 0;
|
|
}
|
|
|
|
.footer-inner {
|
|
text-align: left;
|
|
|
|
+mobile() {
|
|
text-align: center;
|
|
width: auto;
|
|
}
|
|
}
|