forked from KeelyHill/tuppers-formula
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
69 lines (58 loc) · 984 Bytes
/
index.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
66
67
68
69
body {
font-family:"Lucida Console", Monaco, monospace;
background: #ddd;
margin:40px auto;
max-width:80%;
line-height:1.6;
font-size:18px;
padding:0 10px;
}
@media (max-width: 800px) {
body {
max-width:97%;
}
}
body * {
font-family:"Lucida Console", Monaco, monospace;
line-height:1.2;
color:#333;
}
h1,h2,h3{line-height:1.2;}
.title {
text-align: center;
}
table {
border-spacing: 1px;
}
textarea {
font-size: 1rem;
width: 100%;
height: 150px;
}
#grid {
position: absolute;
display: block;
}
#grid-overlay {
position: relative;
border: 2px solid black;
display: inline-block;
}
#presets * {
font-size: 0.8em;
margin: 0.3em;
padding: 0.3em;
}
.hover {
background-color: rgba(0, 0, 0, 0.5) !important;
}
.unselected {
background-color: rgba(255, 255, 255, 0.5);
}
.selected {
background-color: black;
}
.error {
color: red;
font-size: 0.8rem;
}