Arthur Lu
d41162ebae
move nav bar to left side and implement hover animations, generalize color scheme using css variables, move button and btn-group related styles to buttons.css, consolidate form input and select styles in form.css Signed-off-by: Arthur Lu <learthurgo@gmail.com>
20 lines
308 B
CSS
20 lines
308 B
CSS
dialog {
|
|
background-color: var(--content-bkg-color);
|
|
border: 1px solid var(--content-txt-color);
|
|
border-radius: 5px;
|
|
padding: 10px;
|
|
}
|
|
|
|
dialog::backdrop {
|
|
background: rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
dialog .btn-group {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
#prompt {
|
|
text-align: center;
|
|
margin-bottom: 10px;
|
|
margin-top: 0px;
|
|
} |