65 lines
915 B
CSS
65 lines
915 B
CSS
/* style.css für Tabliste */
|
|
.greyFont {
|
|
color: gray;
|
|
font-size: 14px;
|
|
width: 250px;
|
|
}
|
|
|
|
body {
|
|
overflow: hidden;
|
|
font-family: 'Roboto', sans-serif;
|
|
font-weight: 500;
|
|
color: #222;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
h2 {
|
|
font-family: 'Roboto', sans-serif;
|
|
font-weight: 700;
|
|
font-size: 18px;
|
|
color: white;
|
|
margin:5px;
|
|
padding: 5px;
|
|
border: 1px solid #808080;
|
|
width: 20.75em;
|
|
}
|
|
.TabWrapper {
|
|
background: rgba(0,0,0,0.6);
|
|
height: 600px;
|
|
width: 600px;
|
|
display: block;
|
|
padding: 5px;
|
|
position: absolute;
|
|
left: 32%;
|
|
top: 10%;
|
|
}
|
|
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;
|
|
}
|
|
|
|
|
|
|
|
|