54 lines
860 B
CSS
54 lines
860 B
CSS
/* ===== Scrollbar CSS ===== */
|
|
/* Firefox */
|
|
* {
|
|
scrollbar-width: auto;
|
|
scrollbar-color: #ffffff #ffffff;
|
|
}
|
|
|
|
/* Chrome, Edge, and Safari */
|
|
*::-webkit-scrollbar {
|
|
width: 12px;
|
|
}
|
|
|
|
*::-webkit-scrollbar-track {
|
|
background: black;
|
|
}
|
|
|
|
*::-webkit-scrollbar-thumb {
|
|
background-color: #ffffff;
|
|
border-radius: 15px;
|
|
border: 3px solid #ffffff;
|
|
}
|
|
|
|
:root{
|
|
--main-text-color: white;
|
|
--main-text-family: 'Source Sans Pro', sans-serif;
|
|
}
|
|
|
|
.ifram_main_div{
|
|
color: var(--main-text-color)
|
|
}
|
|
|
|
table{
|
|
|
|
width: 100%;
|
|
}
|
|
body{
|
|
font-family: var(--main-text-family);
|
|
font-size: 12pt;
|
|
color: var(--main-text-color);
|
|
}
|
|
a{
|
|
color: var(--main-text-color) !important;
|
|
text-decoration: none !important;
|
|
}
|
|
.team_svg_icon{
|
|
width: 14px;
|
|
height: 14px;
|
|
fill: white;
|
|
}
|
|
.td_key{
|
|
width: 150px
|
|
}
|
|
|