42 lines
652 B
CSS
42 lines
652 B
CSS
.scroll-indicator {
|
|
display: none;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 50%;
|
|
height: 10px;
|
|
background: #C33;
|
|
}
|
|
|
|
th {
|
|
background-color: #4CAF50;
|
|
cursor:pointer;
|
|
text-align: center;
|
|
}
|
|
|
|
th, td {
|
|
padding: 1px;
|
|
border-bottom: 1px solid #ddd;
|
|
font-family: arial, sans-serif;
|
|
font-size: 12px;
|
|
}
|
|
|
|
body {
|
|
background-color: #3D3635;
|
|
font-family: arial, sans-serif;
|
|
color: white;
|
|
font-size: 12px;
|
|
}
|
|
|
|
td {
|
|
color: #ffffff;
|
|
background-color: #3D3635;
|
|
}
|
|
|
|
a:link, a:visited {
|
|
background-color: #3D3635;
|
|
color: white;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
}
|