98 lines
2.0 KiB
SCSS
Raw Normal View History

// DIAGNOSTIKA
div#srv_diagnostic {
h2 {
font-size: 24px;
margin-top: 32px;
margin-bottom: 16px;
font-weight: $light;
&:first-of-type {
margin-top: 0;
}
}
table {
width: 100%;
td {
a.ok {
color: $dark-gray2 !important;
}
div.status_wrapper {
display: flex;
align-items: center;
justify-content: center;
div.status {
display: flex;
align-items: center;
justify-content: center;
height: 24px;
min-width: 88px;
border-radius: 2px;
font-size: 14px;
&.notok {
background-color: $status-red;
}
&.ok {
background-color: $status-green;
}
&.rec {
background-color: $status-blue;
}
a {
color: inherit;
text-decoration: none;
}
}
}
}
}
div.lastnosti_wrapper {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 32px;
div.lastnosti_left,
div.lastnosti_right {
width: 50%;
}
}
div.input_box {
2022-06-07 10:34:01 +02:00
display: flex;
width: 300px;
padding: 10px 0 10px 8px;
2022-06-07 10:34:01 +02:00
border: 1px solid $dark-gray;
input {
border: none;
margin: 0;
padding: 0;
font-size: 16px;
width: 90%
}
}
div.button_holder {
align-items: center;
margin-bottom: 0;
button {
margin: 0 0 0 8px;
}
}
}