63 lines
863 B
CSS
63 lines
863 B
CSS
|
:root {
|
||
|
--background-color:rgb(43, 39, 39);
|
||
|
--fore-color: rgb(255, 255, 255);
|
||
|
}
|
||
|
body {
|
||
|
background-color: var(--background-color);
|
||
|
color: var(--fore-color);
|
||
|
}
|
||
|
.download_box
|
||
|
{
|
||
|
display: block;
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
width: 75%;
|
||
|
}
|
||
|
.download_button
|
||
|
{
|
||
|
position:relative;
|
||
|
|
||
|
top: 4px;
|
||
|
font-size: 8pt;
|
||
|
|
||
|
}
|
||
|
.progress_bar {
|
||
|
color: red;
|
||
|
width: 84%;
|
||
|
|
||
|
}
|
||
|
.selector
|
||
|
{
|
||
|
position: relative;
|
||
|
|
||
|
top: 4px;
|
||
|
font-size: 8pt;
|
||
|
}
|
||
|
.res_selector
|
||
|
{
|
||
|
position: relative;
|
||
|
|
||
|
top: 4px;
|
||
|
font-size: 8pt;
|
||
|
}
|
||
|
.download_text_box {
|
||
|
width: 100%;
|
||
|
border-color: var(--fore-color);
|
||
|
font-size: 12pt;
|
||
|
background-color: var(--fore-color);
|
||
|
color: var(--background-color)
|
||
|
}
|
||
|
|
||
|
.page
|
||
|
{
|
||
|
display: none;
|
||
|
width: 100%;
|
||
|
min-height: 100%;
|
||
|
position: absolute;
|
||
|
}
|
||
|
.active
|
||
|
{
|
||
|
display: block;
|
||
|
}
|
||
|
|