-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApp.css
More file actions
71 lines (58 loc) · 1.02 KB
/
App.css
File metadata and controls
71 lines (58 loc) · 1.02 KB
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
body {
font-family: 'Share Tech Mono', monospace;
margin-left: 30px;
margin-right: 30px
}
table {
width: 100%;
}
table td {
border-width: 1px;
padding: 5px;
}
table tr td:first-child {
text-align: right;
font-weight: bold;
color: darkblue;
width: 150px;
}
fieldset {
border: 1px solid #ccc;
box-shadow: 1px 1px 0 #ccc;
}
legend {font-weight: bold;font-size: 20px; color: #333; padding: 0 20px}
footer {
font-family: Arial;
padding-top: 10px;
margin-top: 20px;
line-height: 30px;
border-top: 1px solid #000;
}
h1 {
border-bottom: 1px solid;
padding-bottom: 20px;
}
.rom-file {
margin-bottom: 20px;
}
.spriteData {
margin: auto;
}
.chrBank {
display: inline-block;
padding: 15px;
}
canvas:hover {
transform-origin: 0 0;
transform: scale(2);
transition-delay: .2s;
}
canvas {
image-rendering: pixelated;
background-color: #fff;
display: block;
box-shadow: 3px 3px 10px #999;
transform-origin: 0 0;
transition-delay: .1s;
transition: transform .3s; /* Animation */
}