wdisplays_github/resources/style.css

23 lines
373 B
CSS
Raw Normal View History

2019-07-06 05:51:52 +03:00
spinner {
opacity: 0;
transition: opacity 200ms ease-in-out;
background-color: rgba(64, 64, 64, 0.5);
}
spinner.visible {
opacity: 1;
}
2019-07-06 20:12:28 +03:00
2019-08-13 01:38:46 +03:00
.output-overlay {
2019-08-18 18:32:13 +03:00
font-size: 96px;
2019-07-06 20:12:28 +03:00
background-color: @theme_selected_bg_color;
2019-08-13 01:38:46 +03:00
color: @theme_selected_fg_color;
border-radius: 8px;
opacity: 0.9;
2019-08-18 18:32:13 +03:00
padding: 8px;
}
.output-overlay .description {
font-size: 12px;
2019-07-06 20:12:28 +03:00
}