forked from projects/fipamo
35 lines
705 B
CSS
35 lines
705 B
CSS
|
article[role="navigation"] {
|
||
|
width: 100%;
|
||
|
max-width: 900px;
|
||
|
margin: 100px auto;
|
||
|
}
|
||
|
|
||
|
article[role="navigation"] > section > div.nav-item {
|
||
|
display: block;
|
||
|
width: 98%;
|
||
|
background: var(--white);
|
||
|
border-radius: 3px;
|
||
|
color: var(--highlight);
|
||
|
margin: 0 0 10px;
|
||
|
font-size: 1.5em;
|
||
|
cursor: move;
|
||
|
}
|
||
|
|
||
|
article[role="navigation"] > section > div.nav-item > label {
|
||
|
display: inline-block;
|
||
|
padding: 5px;
|
||
|
margin: 12px 0 0 10px;
|
||
|
vertical-align: top;
|
||
|
cursor: move;
|
||
|
}
|
||
|
|
||
|
article[role="navigation"] > section > div.nav-item > div#nav-btns {
|
||
|
float: right;
|
||
|
padding: 5px;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
article[role="navigation"] > section > div.nav-item > div#nav-btns button {
|
||
|
margin-left: 5px;
|
||
|
}
|