Module:Shortcut/styles.css: Difference between revisions

From Test Wiki
Content deleted Content added
turns out just the class name works fine if you don't load the same(ish) CSS twice
m 1 revision imported
 
(15 intermediate revisions by 7 users not shown)
Line 2: Line 2:
.module-shortcutboxplain {
.module-shortcutboxplain {
float: right;
float: right;
margin-left: 1em;
margin: 0 0 0 1em;
border: 1px solid #aaa;
border: 1px solid var(--border-color-base, #a2a9b1);
background: #fff;
background-color: var(--background-color-base, #fff);
padding: 0.3em 0.6em 0.2em 0.6em;
padding: 0.3em 0.6em 0.2em 0.6em;
text-align: center;
text-align: center;
Line 12: Line 12:
.module-shortcutboxleft {
.module-shortcutboxleft {
float: left;
float: left;
margin-right: 1em;
margin: 0 1em 0 0;
}
}


.module-shortcutlist {
.module-shortcutlist {
display: inline-block;
display: inline-block;
border-bottom: 1px solid #aaa;
border-bottom: 1px solid var(--border-color-base, #a2a9b1);
margin-bottom: 0.2em;
margin-bottom: 0.2em;
}
}


.module-shortcutboxplain > ul {
.module-shortcutboxplain ul {
font-weight: bold;
font-weight: bold;
}
}
Line 37: Line 37:
padding: 0.4em 1em 0.4em 1em;
padding: 0.4em 1em 0.4em 1em;
line-height: 1.3;
line-height: 1.3;
margin: 0;
}
}