diff options
Diffstat (limited to 'styles.css')
-rw-r--r-- | styles.css | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..aca9b9b --- /dev/null +++ b/styles.css | |||
@@ -0,0 +1,23 @@ | |||
1 | body | ||
2 | { | ||
3 | background-color: #a4b0be; | ||
4 | } | ||
5 | |||
6 | * | ||
7 | { | ||
8 | box-sizing: border-box; | ||
9 | } | ||
10 | |||
11 | .Asset | ||
12 | { | ||
13 | display: inline-block; | ||
14 | border: solid black 1px; | ||
15 | width: 34px; | ||
16 | height: 34px; | ||
17 | } | ||
18 | |||
19 | /* Prevent SVG elements from interferring with drag n drop. */ | ||
20 | #Grid * | ||
21 | { | ||
22 | pointer-events: none; | ||
23 | } | ||