2019-05-04 00:10:41 +02:00
|
|
|
p, span {
|
|
|
|
&.red {
|
|
|
|
color: $red;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.bold {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-04 05:52:19 +02:00
|
|
|
label {
|
|
|
|
display: block;
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
small {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:not([type="checkbox"]):not([type="radio"]),
|
|
|
|
select, textarea {
|
|
|
|
font-weight: normal;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.label-button {
|
|
|
|
font-size: 80%;
|
|
|
|
float: right;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-02 23:45:10 +02:00
|
|
|
.tag {
|
2019-05-02 21:01:42 +02:00
|
|
|
padding: 3px 9px;
|
|
|
|
border: $border;
|
|
|
|
border-radius: 3px;
|
|
|
|
background-color: $light;
|
2019-05-02 23:45:10 +02:00
|
|
|
line-height: 30px;
|
2019-05-03 21:59:52 +02:00
|
|
|
|
|
|
|
&.small {
|
|
|
|
font-size: 80%;
|
|
|
|
line-height: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.red {
|
|
|
|
background-color: $red;
|
|
|
|
color: $white;
|
|
|
|
}
|
2019-05-02 23:45:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
span .tag {
|
|
|
|
@extend .tag;
|
|
|
|
|
|
|
|
border-radius: 3px 0 0 3px;
|
|
|
|
|
|
|
|
&+.tag {
|
|
|
|
border-left: none;
|
|
|
|
border-radius: 0 3px 3px 0;
|
|
|
|
background-color: $white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
@extend .tag;
|
|
|
|
cursor: pointer;
|
2019-05-02 21:01:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.modal {
|
2019-05-03 21:59:52 +02:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
|
2019-05-02 21:01:42 +02:00
|
|
|
.modal-background {
|
2019-05-03 21:59:52 +02:00
|
|
|
position: absolute;
|
2019-05-02 21:01:42 +02:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
background-color: #000000;
|
|
|
|
opacity: 0.5;
|
2019-05-02 18:57:56 +02:00
|
|
|
}
|
|
|
|
|
2019-05-02 21:01:42 +02:00
|
|
|
.modal-content {
|
2019-05-03 21:59:52 +02:00
|
|
|
position: absolute;
|
2019-05-02 21:01:42 +02:00
|
|
|
top: 10%;
|
|
|
|
left: 20%;
|
|
|
|
bottom: 10%;
|
|
|
|
right: 20%;
|
|
|
|
background-color: $white;
|
|
|
|
border: $border;
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
|
|
.close-button {
|
2019-05-03 21:59:52 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 10px;
|
2019-05-02 21:01:42 +02:00
|
|
|
font-size: 200%;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2019-05-04 05:52:19 +02:00
|
|
|
|
|
|
|
nav ul {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
section {
|
|
|
|
padding: 20px;
|
|
|
|
margin-bottom: 80px;
|
|
|
|
overflow-y: auto;
|
|
|
|
height: 78%;
|
|
|
|
}
|
|
|
|
|
|
|
|
section~footer {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
background-color: $white;
|
|
|
|
}
|
2019-05-02 18:57:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-02 21:01:42 +02:00
|
|
|
.tabs {
|
|
|
|
ul {
|
|
|
|
border-bottom: $border;
|
|
|
|
}
|
|
|
|
li {
|
|
|
|
display: inline-block;
|
|
|
|
list-style: none;
|
|
|
|
margin: 0 2px -1px;
|
|
|
|
padding: 10px 20px;
|
|
|
|
border-top: $border;
|
|
|
|
border-left: $border;
|
|
|
|
border-right: $border;
|
|
|
|
border-radius: 5px 5px 0 0;
|
|
|
|
background-color: $mid;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
background-color: $white;
|
|
|
|
border-bottom: 1px solid $white;
|
|
|
|
}
|
|
|
|
}
|
2019-05-03 00:51:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.split {
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
div {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
margin: 0;
|
|
|
|
margin-right: 2%;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-right: unset;
|
|
|
|
margin-left: 2%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.two div {
|
|
|
|
width: 46%;
|
|
|
|
}
|
|
|
|
|
2019-05-03 21:59:52 +02:00
|
|
|
&.three div,
|
|
|
|
div.third {
|
2019-05-03 00:51:41 +02:00
|
|
|
width: 30%;
|
|
|
|
}
|
2019-05-03 21:59:52 +02:00
|
|
|
|
|
|
|
div.two-third {
|
|
|
|
width: 66%;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.quarter {
|
|
|
|
width: 22%;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.three-quarter {
|
|
|
|
width: 72%;
|
|
|
|
}
|
2019-05-02 18:57:56 +02:00
|
|
|
}
|