- commit
- a0586d1c5d1127da54ecb57b668bd1dc0c3c601b
- parent
- 2ac7d8c3e07ed46ccee4669107259a7cc050b21d
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2020-05-03 10:39
styling
Diffstat
| M | index.html | 5 | ++--- |
| A | style.css | 15 | +++++++++++++++ |
2 files changed, 17 insertions, 3 deletions
diff --git a/index.html b/index.html
@@ -5,11 +5,10 @@ 5 5 <title>duct pad</title> 6 6 <meta http-equiv="Content-Security-Policy" content="default-src 'self'; connect-src http://via.ce9e.org"> 7 7 <meta name="viewport" content="width=device-width" />8 -1 <link rel="stylesheet" href="common.css">9 -1 <link rel="stylesheet" href="rtc.css">-1 8 <link rel="stylesheet" href="style.css"> 10 9 </head> 11 10 <body>12 -1 <textarea autocomplete="off"></textarea>-1 11 <textarea autocomplete="off" autofocus></textarea> 13 12 <script type="module" src="index.js"></script> 14 13 </body> 15 14 </html>
diff --git a/style.css b/style.css
@@ -0,0 +1,15 @@
-1 1 html,
-1 2 body {
-1 3 margin: 0;
-1 4 padding: 0;
-1 5 overflow: hidden;
-1 6 }
-1 7
-1 8 textarea {
-1 9 border: 0;
-1 10 resize: none;
-1 11 height: 100vh;
-1 12 width: 100%;
-1 13 padding: 0.5em;
-1 14 box-sizing: border-box;
-1 15 }