No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
table { | table { | ||
Line 28: | Line 22: | ||
} | } | ||
@media (max-width: | @media (max-width: 768px) { | ||
td { | td { | ||
padding: 10px; | padding: 10px; | ||
} | |||
} | |||
@media (min-width: 441px) and (max-width: 744px) { | |||
td { | |||
width: 33.33%; | |||
} | } | ||
} | } |
Revision as of 01:51, 7 October 2023
/* CSS placed here will be applied to all skins */
table {
width: 100%;
table-layout: fixed;
border-collapse: collapse;
border: 2px solid #333;
background-color: #c1c3ff;
}
td {
padding: 15px;
text-align: center;
border: 2px solid #333;
box-sizing: border-box;
width: 25%;
white-space: nowrap;
}
.last-modified-bar {
display: none;
}
@media (max-width: 768px) {
td {
padding: 10px;
}
}
@media (min-width: 441px) and (max-width: 744px) {
td {
width: 33.33%;
}
}