32 lines
511 B
CSS
32 lines
511 B
CSS
body {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
div.container {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
div.content {
|
|
width: 40%;
|
|
height: auto;
|
|
margin: 0 auto;
|
|
position: relative;
|
|
}
|
|
|
|
@media screen and (max-width: 1080px) {
|
|
div.content {
|
|
width: 70%;
|
|
height: auto;
|
|
margin: 0 auto;
|
|
position: relative;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
div.content {
|
|
width: 100%;
|
|
height: auto;
|
|
margin: 0 auto;
|
|
position: relative;
|
|
}
|
|
} |