fix #74
This commit is contained in:
20
style.css
20
style.css
@ -35,6 +35,19 @@ body {
|
|||||||
overflow-x:hidden;
|
overflow-x:hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#sidebartoggle {
|
||||||
|
display: block;
|
||||||
|
padding: 5px;
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
z-index: 3000;
|
||||||
|
background-color: rgba(8, 48, 78, 0.9);
|
||||||
|
color: #FFCE00;
|
||||||
|
border: 1px solid #20A8B1;
|
||||||
|
border-right: none;
|
||||||
|
border-radius: 5px 0 0 5px;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
.enl {
|
.enl {
|
||||||
color: #03fe03 !important;
|
color: #03fe03 !important;
|
||||||
@ -357,11 +370,16 @@ h3 {
|
|||||||
.mods {
|
.mods {
|
||||||
margin-bottom: 1px;
|
margin-bottom: 1px;
|
||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
|
height: 75px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mods span {
|
.mods span {
|
||||||
background: #313131;
|
background: #313131;
|
||||||
display: inline-block;
|
/* can’t use inline-block because Webkit’s implementation is buggy and
|
||||||
|
* introduces additional margins in random cases. No clear necessary,
|
||||||
|
* as that’s solved by setting height on .mods. */
|
||||||
|
display: block;
|
||||||
|
float:left;
|
||||||
height: 63.7px;
|
height: 63.7px;
|
||||||
margin-left: 4px;
|
margin-left: 4px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
Reference in New Issue
Block a user