ro
f2a97af3f5
improperly used role attributes have been removed from navigation edit template there was also a duplicate class attribute error in notifications that has been fixed
47 lines
901 B
CSS
47 lines
901 B
CSS
article.navigation {
|
|
width: 100%;
|
|
max-width: 900px;
|
|
margin: 100px auto;
|
|
}
|
|
|
|
article.navigation > section > div.nav-item {
|
|
display: block;
|
|
width: 98%;
|
|
background: var(--secondary);
|
|
border-radius: 3px;
|
|
color: var(--secondary-highlight);
|
|
margin: 0 0 10px;
|
|
font-size: 1.5em;
|
|
cursor: move;
|
|
}
|
|
|
|
article.navigation > section > div.nav-item > label {
|
|
display: inline-block;
|
|
padding: 5px;
|
|
margin: 12px 0 0 10px;
|
|
vertical-align: top;
|
|
cursor: move;
|
|
}
|
|
|
|
article.navigation > section > div.nav-item > div#nav-btns {
|
|
float: right;
|
|
padding: 5px;
|
|
position: relative;
|
|
}
|
|
|
|
article.navigation > section > div.nav-item > div#nav-btns button {
|
|
margin-left: 5px;
|
|
}
|
|
|
|
@media only screen and (max-width: 500px) {
|
|
article.navigation > section > div.nav-item > label {
|
|
width: 55%;
|
|
margin: 0;
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
article.navigation > section i {
|
|
font-size: 1.5em;
|
|
}
|
|
}
|