11 lines
204 B
CSS
11 lines
204 B
CSS
|
.pagecontent {
|
||
|
background: url("/static/snow.gif");
|
||
|
border: 3px inset black;
|
||
|
color: black;
|
||
|
}
|
||
|
|
||
|
@media screen and (max-width: 800px) {
|
||
|
.pagecontent {
|
||
|
width: calc(100% - 4px);
|
||
|
}
|
||
|
}
|