don't display h1, add a viewport tag, paint an initial image with explanations of...
[mandelbrot-web.git] / style / mandelbrot.css
CommitLineData
d0244cd3
RK
1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
3 * You can obtain one at http://mozilla.org/MPL/2.0/. */
95d05599
RK
4
5body {
6 font-family: sans-serif;
7}
8
51442fd4
RK
9h1 {
10 display: none;
11}
12
6a7aa57d
RK
13#overlayArea {
14 position: absolute;
15}
16
17#settings {
18 display: none;
19}
20
21#mainArea {
22 text-align: center;
23 margin: 1em 0;
24}
25
26#mbrotImage {
27 background-color: lightblue;
28}
13165b31
RK
29
30@media screen and (max-width: 500px) {
31 body {
32 font-size: 10px;
33 }
34}