f375a14a215a070599b2f2777e37b55a41bfd203
[mandelbrot-web.git] / style / mandelbrot.css
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/. */
4
5 body {
6   font-family: sans-serif;
7 }
8
9 h1 {
10   display: none;
11 }
12
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 }
29
30 @media screen and (max-width: 500px) {
31   body {
32     font-size: 10px;
33   }
34 }