forked from spen/seminar
13 lines
171 B
CSS
13 lines
171 B
CSS
|
body {
|
||
|
background-color: #c9d7e4;
|
||
|
}
|
||
|
@media (min-width: 768px){
|
||
|
.container {
|
||
|
width: 46.875em;
|
||
|
}
|
||
|
}
|
||
|
@media (max-width: 767px){
|
||
|
.container {
|
||
|
width: 100%;
|
||
|
}
|
||
|
}
|