summaryrefslogtreecommitdiff
path: root/scribble/mainstyle.css
diff options
context:
space:
mode:
authorDennis Kobert <d-kobert@web.de>2019-06-11 23:50:39 +0200
committerDennis Kobert <d-kobert@web.de>2019-06-11 23:50:39 +0200
commitc28c9fafa2c74b101f7ce777aac722dcdeecefc6 (patch)
treea91f7c7db62c4191cf5788d6c4909c87ac4302c8 /scribble/mainstyle.css
parentaec4f2e64ac4fb44bf14b026ac22b326e7007d02 (diff)
parent286be2a2fe89927c1a7bb6855b3d001a70dd312d (diff)
Merge branch 'webhogg'
Diffstat (limited to 'scribble/mainstyle.css')
-rw-r--r--scribble/mainstyle.css53
1 files changed, 53 insertions, 0 deletions
diff --git a/scribble/mainstyle.css b/scribble/mainstyle.css
new file mode 100644
index 0000000..82045d1
--- /dev/null
+++ b/scribble/mainstyle.css
@@ -0,0 +1,53 @@
+body {
+ padding: 0,2;
+ margin: 0;
+ background: #222222;
+}
+.wrapper {
+ max-width: 900px;
+ margin: auto;
+ font-family: "Arial";
+}
+
+.toolbar{
+ width: 100%;
+ background-color: #440044;
+ overflow: auto;
+}
+
+.toolbar a {
+ float: left;
+ width: 11%;
+ text-align: center;
+ padding: 6px 5px;
+ transition: all 0.5s ease;
+ color: white;
+}
+
+/* Change color on hover */
+.toolbar a:hover {
+ background-color: #000;
+ }
+
+/* Change color on selected icon */
+.selected {
+ background-color: #000;
+}
+
+#my-canvas{
+ width: 100%;
+ background: white;
+ border: 3px solid #000000;
+}
+
+#img-data-div{
+ width: 100%;
+ max-width: 900px;
+ height: 200px;
+}
+
+/* Resize image to container */
+.toolbar a img{
+ max-width:100%;
+ height:auto;
+}