Template:Divhide/styles.css: Difference between revisions
(Created page with ".hidden-begin { box-sizing: border-box; width: 100%; padding: 5px; border: none; font-size: 95%; } .hidden-title { font-weight: bold; line-height: 1.6; text-align: left; } .hidden-content { text-align: left; } @media all and ( max-width: 500px ) { .hidden-begin { width: auto !important; clear: none !important; float: none !important; } }") |
(restored border around box) |
||
| (One intermediate revision by the same user not shown) | |||
| Line 3: | Line 3: | ||
width: 100%; | width: 100%; | ||
padding: 5px; | padding: 5px; | ||
border: | border: 1px solid #aaa; | ||
font-size: 95%; | font-size: 95%; | ||
} | } | ||
| Line 20: | Line 20: | ||
.hidden-begin { | .hidden-begin { | ||
width: auto !important; | width: auto !important; | ||
clear: none | clear: none !important; | ||
float: none !important; | float: none !important; | ||
} | } | ||
} | } | ||
Latest revision as of 04:30, 26 April 2025
.hidden-begin {
box-sizing: border-box;
width: 100%;
padding: 5px;
border: 1px solid #aaa;
font-size: 95%;
}
.hidden-title {
font-weight: bold;
line-height: 1.6;
text-align: left;
}
.hidden-content {
text-align: left;
}
@media all and ( max-width: 500px ) {
.hidden-begin {
width: auto !important;
clear: none !important;
float: none !important;
}
}