33 lines
503 B
SCSS
33 lines
503 B
SCSS
|
@import "slovenscina-elements.scss";
|
||
|
.tableFixHead {
|
||
|
overflow-y: scroll;
|
||
|
max-height: 306px;
|
||
|
}
|
||
|
.tableFixHead thead th {
|
||
|
position: sticky;
|
||
|
top: 0;
|
||
|
}
|
||
|
table {
|
||
|
border-collapse: collapse;
|
||
|
width: 100%;
|
||
|
th,td {
|
||
|
padding: 8px 16px;
|
||
|
border: 1px solid #ccc;
|
||
|
}
|
||
|
th {
|
||
|
background: #eee;
|
||
|
}
|
||
|
input[type=submit] {
|
||
|
font-size: 1rem;
|
||
|
background:none;
|
||
|
outline:none;
|
||
|
border:none;
|
||
|
cursor:pointer;
|
||
|
color:$blue;
|
||
|
&:hover {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|