mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
83 lines
1.6 KiB
CSS
83 lines
1.6 KiB
CSS
.backdrop {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-color: rgba(128, 128, 128, 0.5);
|
|
z-index: 999;
|
|
}
|
|
|
|
.disclaimerDialog {
|
|
position: absolute;
|
|
width: 300px;
|
|
top: 50px;
|
|
left: 50%;
|
|
margin-left: -151px;
|
|
background-color: var(--disclaimer-modal-background-color, rgb(255, 255, 255));
|
|
border: var(--disclaimer-modal-border, 1px solid rgb(136, 0, 0));
|
|
color: var(--disclaimer-modal-text-color, rgb(136, 0, 0));
|
|
box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 0px 1px;
|
|
font-family: arial, helvetica, clean, sans-serif;
|
|
font-size: 13px;
|
|
line-height: 16.003px;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.hd {
|
|
position: relative;
|
|
background-color: var(--disclaimer-modal-header-background-color, rgb(136, 0, 0));
|
|
color: var(--disclaimer-modal-header-text-color, rgb(255, 255, 255));
|
|
padding: 4px 6px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.hd h2 {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-size: 131%;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.closeButton {
|
|
all: unset;
|
|
cursor: pointer;
|
|
width: 16px;
|
|
height: 16px;
|
|
position: absolute;
|
|
top: 4px;
|
|
right: 4px;
|
|
background-image: var(--disclaimer-modal-close-button-background-image);
|
|
background-size: 100%;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.bd {
|
|
padding: 10px;
|
|
}
|
|
|
|
.bd li {
|
|
list-style-type: decimal;
|
|
list-style-position: inside;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.bd li:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.bd a {
|
|
color: var(--disclaimer-modal-text-color, rgb(136, 0, 0));
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.disclaimerFooter {
|
|
padding: 10px;
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
}
|