/* atr https://dev.to/dcodeyt/creating-beautiful-html-tables-with-css-428l */
.suenawiki {
font-family: Ubuntu;
border-radius: 2px;
}
.suenawiki mw-editsection {
display: none;
}
.suenawiki mw-collapsible-text {
color: #fff;
}
.suenawiki h2, h3 {
padding: .6rem;
color: #fff;
background: var( --color-surface-4 );
}
.suenawiki body {
margin: 0;
padding: 0;
background: var( --color-surface-4 );
}
.suenawiki nav ul {
list-style: none;
background-color: #262626;
text-align: center;
padding: 0;
margin: 0;
}
.suenawiki nav li {
font-family: 'Oswald', sans-serif;
font-size: 1.2em;
line-height: 40px;
height: 40px;
}
.suenawiki a {
text-decoration: none;
color: #fff !important;
display: block;
}
.suenawiki nav li:hover {
background-color: #5e2750;
transition: .3s background-color;
}
/*
.nav a.active {
background-color: #fff;
color: #444;
cursor: default;
}
*/
@media screen and (min-width: 600px) {
.nav li {
width: 120px;
border-bottom: none;
height: 50px;
line-height: 50px;
font-size: 1.4em;
}
/* Option 1 - Display Inline */
.nav li {
display: inline-block;
margin-right: -4px;
}
/* Options 2 - Float
.nav li {
float: left;
}
.nav ul {
overflow: auto;
width: 600px;
margin: 0 auto;
}
.nav {
background-color: #444;
}
*/
}