mirror of
https://expo.survex.com/repositories/expoweb/.git/
synced 2025-12-09 07:14:36 +00:00
Making page much more easily editable by using <dl><dt> and <dd> tags
This commit is contained in:
@@ -55,30 +55,36 @@ h2, h3, h4 {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
ul:not(#links) li ul, ul:not(#links) ul {
|
||||
dd {
|
||||
font: 18px Calibri, sanserif;
|
||||
font-weight: normal;
|
||||
list-style-type: disc;
|
||||
color: 6083BF;
|
||||
#list-style-type: disc;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
dd:before {
|
||||
content: "- ";
|
||||
}
|
||||
|
||||
/* Default State */
|
||||
ul:not(#links) {
|
||||
dt {
|
||||
font: 20px Calibri, sanserif;
|
||||
font-weight: bold;
|
||||
color: 6083BF;
|
||||
margin-top: 0.4em;
|
||||
margin-left: -1.2em;
|
||||
#margin-left: -1.2em;
|
||||
margin-left: 0;
|
||||
margin-right: 5em;
|
||||
list-style-type: none;
|
||||
line-height: 1.4;
|
||||
#list-style-type: none;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
|
||||
/* Toggled State */
|
||||
input[type=checkbox] ~ ul:not(#links) li ul {
|
||||
input[type=checkbox] ~ dl dd {
|
||||
display: none;
|
||||
}
|
||||
input[type=checkbox]:checked ~ ul:not(#links) li ul {
|
||||
input[type=checkbox]:checked ~ dl dd {
|
||||
display: block;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user