39 lines
910 B
CSS
39 lines
910 B
CSS
.noscript {
|
|
max-width: var(--site-max-width);
|
|
margin: var(--global-spacing) auto 0;
|
|
background: var(--traffic-red);
|
|
border: 1px solid var(--container-border);
|
|
padding: var(--global-spacing);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: var(--global-spacing);
|
|
}
|
|
|
|
.noscript-icon {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 40px;
|
|
height: 40px;
|
|
background: var(--traffic-red-darker);
|
|
font-family: var(--font-cursive);
|
|
font-size: 1.2em;
|
|
line-height: 1.5em;
|
|
clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
|
|
}
|
|
.noscript-icon-inner {
|
|
width: 30px;
|
|
height: 30px;
|
|
line-height: 32px;
|
|
margin-top: 3px;
|
|
text-align: center;
|
|
background: #fff;
|
|
color: #000;
|
|
clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
|
|
}
|
|
|
|
.noscript-text {
|
|
font-size: 1.2em;
|
|
line-height: 1.5em;
|
|
}
|