lingo/lingo/manager/static/css/style.scss

131 lines
2.0 KiB
SCSS

$mobile-limit: 760px;
li span.identifier {
font-size: 80%;
opacity: 0.6;
}
h2 span.identifier {
font-size: 1rem;
opacity: 0.6;
}
div.paragraph {
background: white;
box-sizing: border-box;
border: 1px solid #386ede;
border-radius: 3px;
max-width: 100%;
padding: 5px 15px;
margin-bottom: 1rem;
h4 {
margin-top: 5px;
border-bottom: none;
}
}
a.button.button-paragraph {
text-align: left;
box-sizing: border-box;
display: block;
max-width: 100%;
margin-bottom: 1rem;
}
a.button.button-paragraph p {
font-weight: normal;
color: #333;
margin: 0;
line-height: 150%;
}
a.button.button-paragraph p:last-child {
padding-bottom: 5px;
}
a.button.button-paragraph:hover p {
color: white;
}
#lingo-manager-main {
background: none bottom right no-repeat;
// TODO background-image
min-height: 80vh;
background-size: 600px auto;
@media screen and (max-width: 1200px) {
background-size: 100% auto;
}
width: 99%;
height: 90%;
@media screen and (max-width: $mobile-limit) {
background: none !important;
min-height: 0;
height: auto;
}
}
.sortable {
span.handle {
cursor: move;
display: inline-block;
padding: 0.5ex;
text-align: center;
width: 2em;
height: 100%;
box-sizing: border-box;
font-weight: normal;
}
}
ul.objects-list.sortable {
li {
position: relative;
& > a {
display: inline-block;
}
}
}
ul.objects-list.single-links li a.link::before {
content: "\f08e"; /* fa-external-link */
}
div.test-tool-result .infonotice h3 {
margin-top: 0;
font-weight: normal;
}
.pk-tabs--container {
& > div {
padding: 1ex;
.panel--buttons a.button {
line-height: inherit;
}
}
}
#panel-pools span.tag,
h2#pool-title span.tag,
table.lines span.tag {
box-sizing: border-box;
border: none;
border-radius: 1ex;
padding: 0 1ex;
background: #386ede;
color: white;
&.tag-success {
background: #27eb00;
}
&.tag-warning {
background: #f47f13;
}
&.tag-error {
background: #f64474;
}
}
form.journal-filters li {
display: inline;
margin-right: 10px;
}