summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2022-11-27 22:23:26 +0100
committerRoland Reichwein <mail@reichwein.it>2022-11-27 22:23:26 +0100
commite0d4fb11157f6f6cc79f6750e7a5247e0c955582 (patch)
tree0d61064d044cbdde942c00fb3307f6454f8d6a8d
parent6a72251a10019bd42d10bb70ab26916826ac4527 (diff)
Version 1.0: added web designv1.0
-rw-r--r--html/banner256.pngbin0 -> 5647 bytes
-rw-r--r--html/index.html3
-rw-r--r--html/whiteboard.css12
3 files changed, 14 insertions, 1 deletions
diff --git a/html/banner256.png b/html/banner256.png
new file mode 100644
index 0000000..89efb4f
--- /dev/null
+++ b/html/banner256.png
Binary files differ
diff --git a/html/index.html b/html/index.html
index fdd56dc..04522d7 100644
--- a/html/index.html
+++ b/html/index.html
@@ -11,7 +11,8 @@
</head>
<body onload="init();">
<div class="page">
- <textarea rows="30" cols="80" id="board" name="board"></textarea>
+ <h1><img class="banner" src="banner256.png" alt="Reichwein.IT"/> Whiteboard</h1>
+ <textarea cols="80" rows="30" id="board" name="board"></textarea>
<br/>
<br/>
<button class="button" onclick="on_new_page();">New page</button>
diff --git a/html/whiteboard.css b/html/whiteboard.css
index 2f68794..5f804c1 100644
--- a/html/whiteboard.css
+++ b/html/whiteboard.css
@@ -20,6 +20,18 @@ div.status {
color: #FF0000;
}
+textarea {
+ /*
+ height: 30vh;
+ padding: 1em;
+ font-size: 1.5em;
+ text-align: left;
+ border: 1px solid #000;
+ */
+ box-sizing: border-box;
+ resize: none;
+}
+
.mobile {
width: 300px;
border-width: 80px 15px 80px 15px;