48 lines
702 B
CSS
48 lines
702 B
CSS
.ad {
|
|
display: block !important;
|
|
position: fixed;
|
|
z-index: 5000;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background: var(--color-bg-alt);
|
|
backdrop-filter: blur(8px);
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
.ad .content {
|
|
max-width: 80rem;
|
|
margin: 0 auto;
|
|
padding: 1rem;
|
|
}
|
|
|
|
.ad .moji {
|
|
font-size: 33vh;
|
|
text-align: center;
|
|
}
|
|
|
|
.ad .fake-header {
|
|
display: block;
|
|
font-size: 2rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.ad .fake-subheader {
|
|
display: block;
|
|
font-size: 1.5rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.ad ul {
|
|
max-width: 80ex;
|
|
margin: 0 auto;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.ad ul li {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.ad ul .adblocker-description {
|
|
padding-left: 2rem;
|
|
}
|