-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
75 lines (61 loc) · 1.06 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
66
67
68
69
70
71
72
73
74
75
/* Styles designed by Kyle Amoroso in 2016 */
* {
box-sizing: border-box;
}
html,body {
margin: 0px;
padding: 0px;
font-family: Verdana, Geneva, sans-serif;
}
.container {
margin: 0px auto;
padding: 0px 15px;
max-width: 1054px;
}
header {
background-color: #003f7f;
padding: 15px 0px;
color: #ffffff;
text-shadow: 0px -1px 1px rgba(0,0,0,0.5);
}
h1,h2,h3,h4,h5,h6 {
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
a {
color: #003f7f;
}
canvas {
display: block;
margin: 15px 0px;
max-width: 100%;
box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}
code {
display: block;
margin: 10px 0px;
padding: 10px;
max-height: 400px;
border: 1px solid #bfbfbf;
background-color: #efefef;
overflow: auto;
}
[data-code="move"] {
color: black;
}
[data-code="sensor"] {
color: blue;
}
[data-code="label"] {
color: green;
}
[data-code="jump"] {
color: orange;
}
table th {
text-align: left;
vertical-align: top;
}
footer {
padding: 30px;
background-color: #efefef;
}