23 lines
193 B
CSS
23 lines
193 B
CSS
|
*, *::before, *::after
|
||
|
{
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
:root
|
||
|
{
|
||
|
font-size: 16px;
|
||
|
}
|
||
|
|
||
|
body
|
||
|
{
|
||
|
min-height: 100vh;
|
||
|
|
||
|
margin: 0;
|
||
|
|
||
|
background-color: #f2f0f1;
|
||
|
}
|
||
|
|
||
|
img
|
||
|
{
|
||
|
width: 100%;
|
||
|
}
|