20 lines
268 B
SCSS
20 lines
268 B
SCSS
@import "variables.scss";
|
|
@import "mixins.scss";
|
|
|
|
.spiderweb {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
opacity: 0.25;
|
|
max-width: 900px;
|
|
|
|
@include below-container-width {
|
|
width: $container-width-threshold;
|
|
}
|
|
}
|
|
|
|
code {
|
|
background: none;
|
|
border: none;
|
|
}
|