aboutsummaryrefslogtreecommitdiff
path: root/src/App.css
diff options
context:
space:
mode:
authorMartin Ashby <martin@martin-laptop.lan>2018-05-17 18:18:11 +0100
committerMartin Ashby <martin@martin-laptop.lan>2018-05-17 18:18:11 +0100
commitd40c7d9f09d9b012837d6060a4c598b23b19646f (patch)
tree8fa1f99664b3b6a74f7a0fd5856b7d0c41767b1f /src/App.css
parentaa86cb02fd95404fdfba8cf9d13cb5c18138b6b5 (diff)
downloadunicornpaint-d40c7d9f09d9b012837d6060a4c598b23b19646f.tar.gz
unicornpaint-d40c7d9f09d9b012837d6060a4c598b23b19646f.tar.bz2
unicornpaint-d40c7d9f09d9b012837d6060a4c598b23b19646f.tar.xz
unicornpaint-d40c7d9f09d9b012837d6060a4c598b23b19646f.zip
Palette, tools, load & save working
Diffstat (limited to 'src/App.css')
-rw-r--r--src/App.css33
1 files changed, 26 insertions, 7 deletions
diff --git a/src/App.css b/src/App.css
index 9de7f5a..c436008 100644
--- a/src/App.css
+++ b/src/App.css
@@ -1,19 +1,38 @@
-.paintarea {
+.toolkit {
+ float: right;
+ background: lightblue;
}
+.toolkititem {
+ padding: 5px;
+}
+
+.toolkititem.selected {
+ background: lightcoral;
+}
+
+/* .paintarea {
+
+} */
+
.paintareacell {
- width: 40px;
- height: 40px;
+ width: 20px;
+ height: 20px;
border: 1px solid grey;
}
.paletteitem {
- width: 40px;
- height: 40px;
- border: 1px solid grey;
+ width: 30px;
+ height: 30px;
+ border: 3px solid black;
display: inline-block;
}
.paletteitem.selected {
- border: 1px solid red;
+ border: 3px solid red;
+}
+
+.colorIndicator {
+ width: 100px;
+ height: 100px;
} \ No newline at end of file