40 lines
684 B
SCSS
40 lines
684 B
SCSS
@import 'variables';
|
|
@import '_mixins';
|
|
|
|
.dialog {
|
|
@include themeable(
|
|
background,
|
|
theme-container-background,
|
|
rgb(236, 236, 236)
|
|
);
|
|
@include themeable(
|
|
border-bottom,
|
|
theme-container-border,
|
|
1px solid $medium-gray
|
|
);
|
|
text-align: center;
|
|
padding: 20px 30px;
|
|
margin: 20vh auto;
|
|
max-width: 60%;
|
|
height: 100%;
|
|
@include themeable(color, theme-color, rgb(44, 46, 50));
|
|
border-radius: 5px;
|
|
@media screen and (max-width: 321px) {
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
font-size: 15px;
|
|
}
|
|
}
|
|
@media screen and (max-width: 768px) {
|
|
h3 {
|
|
word-break: break-all;
|
|
}
|
|
}
|
|
}
|
|
.blankmessage {
|
|
font-style: italic;
|
|
}
|