This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/resources/assets/less/yuuno/bem/dialogue.less

40 lines
772 B
Text
Raw Normal View History

2016-09-19 18:07:02 +00:00
.dialogues:not(:empty) {
background: fade(#000, 50%);
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: flex;
justify-content: center;
align-items: center;
z-index: 2147483648; // fuck it
}
.dialogue {
font-family: "Open Sans", sans-serif;
display: inline-block;
background: #9475b2;
box-shadow: 0 0 5px #9475B2;
padding: 10px;
margin: 10px;
min-width: 200px;
&__buttons {
text-align: right;
}
&__button {
font-family: "Open Sans", sans-serif;
background: #8364a1;
border: 0 solid transparent;
padding: 2px 4px;
cursor: pointer;
2016-09-19 18:32:24 +00:00
margin-left: 2px;
2016-09-19 18:07:02 +00:00
&:last-child {
font-weight: 700;
}
}
}