36 lines
744 B
CSS
36 lines
744 B
CSS
|
|
body {
|
|
background: white;
|
|
color: black;
|
|
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
|
|
}
|
|
p.image {
|
|
text-align: center;
|
|
}
|
|
|
|
|
|
@media (min-width: 768px) {
|
|
body {
|
|
background-color: steelblue;
|
|
color: white;
|
|
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
|
|
}
|
|
}
|
|
@media (min-width: 1200px) {
|
|
body {
|
|
background-color: darkblue;
|
|
color: white;
|
|
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
|
|
}
|
|
p {
|
|
column-count: 2;
|
|
column-gap: 2rem;
|
|
}
|
|
p.dotted {
|
|
column-gap: 2rem;
|
|
column-rule: 5px dotted black;
|
|
outline-style: dotted;
|
|
}
|
|
|
|
}
|