add image size and scale entries and make them be syched back and forth
[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
5d56a513
RK
17#overlayArea:-moz-system-metric(touch-enabled) {
18 font-size: 3mozmm;
19}
20
21#overlayArea input[type="button"]:-moz-system-metric(touch-enabled),
22#overlayArea select:-moz-system-metric(touch-enabled) {
23 font-size: 3mozmm;
24}
25
6a7aa57d
RK
26#settings {
27 display: none;
5d56a513 28 background-color: rgba(255, 255, 255, .8);
6a7aa57d
RK
29}
30
31#mainArea {
32 text-align: center;
33 margin: 1em 0;
34}
35
36#mbrotImage {
37 background-color: lightblue;
38}
13165b31
RK
39
40@media screen and (max-width: 500px) {
41 body {
42 font-size: 10px;
43 }
44}