RSNewWebUI/webui-src/app/theme.css
rottencandy 87120c5f62 Add asynchronous background update tasks
background tasks can be initiated from rswebui.js,
Downloads component will automatically update the file list
whenever it is mounted.
2019-06-13 22:38:58 +05:30

91 lines
1.6 KiB
CSS

/******************************
Context-independent styles
******************************/
.frame-center {
display: flex;
flex-direction: column;
align-items: center;
}
h3 {
}
.field {
background: white;
text-align: center;
font-size: 1.2em;
font-weight: 500;
border-radius: 5px;
padding: 0.5em;
border: 2px solid #3ba4d7;
margin-bottom: 1em;
}
button {
background: rgb(59, 164, 215);
background: white;
color: #3ba4d7;
border: 1px solid #3ba4d7;
border-radius: 5px;
cursor: pointer;
font-size: 1.2em;
transition: all 0.2s;
} button:hover {
background: #3ba4d7;
color: white;
}
.error {
color: red;
}
.progressbar {
width: 100%;
background-color: grey;
position: relative;
}.progressbar:before{
position: absolute;
text-align: center;
left: 0;
right: 0;
}.progress-status {
display: inline-block;
height: 100%;
background-color: #3ba4d7;
text-align: center;
}
table {
padding: 20px;
table-layout: fixed;
width: 100%;
border-collapse: collapse;
text-align: center;
} table th {
background-color: #3ba4d7;
height: 1em;
}
/******************************
Target specific elements
******************************/
.tab-container {
padding: 1em 1em;
background-color: #333;
}
.tab-header {
text-align: center;
padding: 1em 1em;
text-decoration: none;
color: white;
transition: all 0.2s;
} .tab-header:hover {
background-color: #999;
} .tab-header:focus {
background-color: #3ba4d7;
}
.tab-section {
text-align: center;
}