36 lines
564 B
SCSS
36 lines
564 B
SCSS
#article {
|
|
border: 2px solid green;
|
|
}
|
|
|
|
#sidebar {
|
|
border: 2px solid purple;
|
|
}
|
|
|
|
body {
|
|
border: 2px solid red;
|
|
}
|
|
|
|
html::after {
|
|
content: '';
|
|
position: fixed;
|
|
background-color: rgba(255, 0, 0, 0.5);
|
|
padding: 0;
|
|
margin: 0;
|
|
top: 0;
|
|
left: calc(-2px + 50vw - #{$text_width}/2);
|
|
height: 100%;
|
|
width: 2px;
|
|
}
|
|
|
|
body::after {
|
|
content: '';
|
|
position: fixed;
|
|
background-color: rgba(255, 0, 0, 0.5);
|
|
padding: 0;
|
|
margin: 0;
|
|
top: 0;
|
|
left: calc(50vw + #{$text_width}/2);
|
|
height: 100%;
|
|
width: 2px;
|
|
}
|