-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (52 loc) · 1.02 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
* { margin:0; padding:0; font-size: 1em;} /* to remove the top and left whitespace */
html, body { width:100%; height:100%; } /* just to be sure these are full screen*/
body {
text-align: center;
}
canvas {
/* background: #eeeeee; */
background-color: white;
display: block; /* to remove the scrollbars */
}
#menu {
width: 100%;
margin: 0;
padding: 20px;
/* background-color: green; */
text-align: left;
}
#optionsForm {
margin: 0;
}
#naca {
width: 50px;
box-sizing: border-box;
display: inline-block;
}
.checkLabel {
display: inline-block;
}
.check {
margin-right: 20px;
}
#input_error {
background-color: #ffcccb;
padding: 10px;
margin-bottom: 20px;
color: red;
border-radius: 4px;
display: none;
}
/* Larger than phablet */
@media (min-width: 550px) {
* {
font-size: 1em;
}
#menu {
width: 800px;
margin: auto;
padding: 20px;
/* background-color: green; */
text-align: left;
}
}