Fixing styles for Pizzería Genuino.

This commit is contained in:
sergiotarxz 2023-05-05 16:42:46 +02:00
parent 9878aad812
commit d519a3f839
2 changed files with 26 additions and 1 deletions

View File

@ -43,7 +43,11 @@ body {
color: blueviolet;
background: #f2eb8c;
border: 3px solid blueviolet;
border-collapse: collapse; }
border-collapse: collapse;
width: 100%;
table-layout: fixed; }
body div.page-contents table td, body div.page-contents table th {
font-size: 9px; }
body div.page-contents th, body div.page-contents td {
border: 3px solid blueviolet;
border-collapse: collapse;
@ -171,6 +175,10 @@ body {
width: 20px;
height: 20px; }
@media (min-width: 450px) {
body div.page-contents table th, body div.page-contents table td {
font-size: initial; } }
@media (min-width: 1100px) {
body div.page-contents {
top: 0%;

View File

@ -59,6 +59,11 @@ body {
background: $color_div;
border: 3px solid $background_div;
border-collapse: collapse;
width: 100%;
td,th {
font-size: 9px;
}
table-layout: fixed;
}
th,td {
border: 3px solid $background_div;
@ -238,6 +243,18 @@ body {
}
@media (min-width: 450px) {
body {
div.page-contents {
table {
th, td {
font-size: initial;
}
}
}
}
}
@media (min-width: 1100px) {
body {
div.page-contents {