tailwind body, html and other stuff.

This commit is contained in:
fiatjaf
2023-10-25 18:05:25 -03:00
parent b6b950fad8
commit 88dcf490c2
10 changed files with 40 additions and 109 deletions

View File

@@ -1,43 +1,3 @@
html {
font-size: 19px;
font-weight: 300;
}
@media (max-width: 580px) {
html {
font-size: 18px;
}
}
@media print {
html {
font-size: 17px;
margin: 0;
}
}
body {
margin: 0;
margin-bottom: 4rem;
}
.theme--default body {
color: #373737;
}
.theme--dark body {
color: #fafafa;
}
.theme--default body {
background: #ffffff;
}
.theme--dark body {
background: #1e1e1e;
}
@media print {
body {
margin: 0;
color: #000000 !important;
}
}
.column_content {
flex-grow: 0;
flex-shrink: 0;
@@ -157,14 +117,4 @@ body.other .column_content {
}
}
@media print {
@page {
margin: 2cm 3cm;
}
/* Safari specific styles */
body.safari {
margin: 1cm 3cm;
}
}
/*# sourceMappingURL=styles.css.map */

View File

@@ -91,33 +91,6 @@ $theme-map: null;
@return map-get($theme-map, $key);
}
/*# sourceMappingURL=styles.css.map */
html {
font-size: 19px;
font-weight: 300;
@media (max-width: 580px) {
font-size: 18px;
}
@media print {
font-size: 17px;
margin: 0;
}
}
body {
@include themed() {
color: t($base7);
}
@include themed() {
background: t($bg-up);
}
margin: 0;
margin-bottom: 4rem;
@media print {
margin: 0;
color: #000000 !important;
}
}
.column_content {
flex-grow: 0;
flex-shrink: 0;
@@ -223,13 +196,3 @@ body.other {
}
}
}
@media print {
@page {
margin: 2cm 3cm;
}
/* Safari specific styles */
body.safari {
margin: 1cm 3cm;
}
}