24 lines
306 B
CSS
24 lines
306 B
CSS
|
html, body {
|
||
|
overflow: hidden;
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
#fridgemagnets {
|
||
|
width: 100vw;
|
||
|
height: 100vh;
|
||
|
}
|
||
|
|
||
|
#fridge {
|
||
|
overflow: hidden;
|
||
|
width: 100vw;
|
||
|
background: url('pingbg.png') repeat;
|
||
|
}
|
||
|
|
||
|
#footer {
|
||
|
background-color: #32cd32;
|
||
|
width: 100vw;
|
||
|
height: 18ex;
|
||
|
}
|
||
|
|