44 lines
837 B
SCSS
44 lines
837 B
SCSS
//Osnovne nastavitve
|
|
div.osnovne_nastavitve {
|
|
|
|
width: fit-content; //ne deluje, če želimo, da so nastavitve enako poravnane v vseh fieldsetih
|
|
|
|
div.osnovne_nastavitve_single {
|
|
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
|
|
margin-bottom: 16px;
|
|
&:last-of-type {
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
label {
|
|
margin-right: 8px;
|
|
cursor: default;
|
|
}
|
|
|
|
input,
|
|
select {
|
|
width: 206px;
|
|
height: 28px;
|
|
margin: 0 !important;
|
|
font-size: 16px;
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
// Ocenjevanje trajanja
|
|
table#timinganketa_table {
|
|
td {
|
|
input {
|
|
width: 100px;
|
|
height: 28px;
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
|
|
} |