17 lines
257 B
CSS
17 lines
257 B
CSS
:root{
|
|
--main-text-color: white;
|
|
--main-text-family: 'Source Sans Pro', sans-serif;
|
|
}
|
|
|
|
.ifram_main_div{
|
|
color: white
|
|
}
|
|
|
|
table{
|
|
font-family: var(--main-text-family);
|
|
font-size: 12pt;
|
|
color: var(--main-text-color);
|
|
width: 100%;
|
|
}
|
|
|