37 lines
419 B
CSS
37 lines
419 B
CSS
/* style.css für Tabliste */
|
|
div {
|
|
user-select: none;
|
|
}
|
|
|
|
|
|
|
|
|
|
th, td {
|
|
color: white;
|
|
font-size: 18px;
|
|
width:10%;
|
|
text-align: left;
|
|
}
|
|
.scroll {
|
|
height: 600px;
|
|
width: 600px;
|
|
font-size: 12px;
|
|
overflow: auto;
|
|
}
|
|
.force-overflow {
|
|
min-height: 600px;
|
|
}
|
|
|
|
#style1::-webkit-scrollbar {
|
|
width: 10px;
|
|
background-color: #F5F5F5;
|
|
}
|
|
|
|
#style1::-webkit-scrollbar-thumb {
|
|
background-color: #FF0040;
|
|
}
|
|
|
|
|
|
|
|
|