diff options
| author | Maksymilian Jopek <maks@jopek.eu> | 2021-10-26 16:49:09 +0200 |
|---|---|---|
| committer | Maksymilian Jopek <maks@jopek.eu> | 2021-10-26 16:49:09 +0200 |
| commit | dbb66972ebd987f60e10939bfb4493f87bbc73c3 (patch) | |
| tree | f951d36871d12089775e79a57c73855c21a2e72e /src/styles/main.css | |
| parent | 55d0e202677253ecf893bd52649871f10b52d3de (diff) | |
| download | isiqandisi-dbb66972ebd987f60e10939bfb4493f87bbc73c3.tar.gz isiqandisi-dbb66972ebd987f60e10939bfb4493f87bbc73c3.tar.zst isiqandisi-dbb66972ebd987f60e10939bfb4493f87bbc73c3.zip | |
Quick commit with sort-of working WYSiWYG and moving chit
Diffstat (limited to 'src/styles/main.css')
| -rw-r--r-- | src/styles/main.css | 68 |
1 files changed, 63 insertions, 5 deletions
diff --git a/src/styles/main.css b/src/styles/main.css index 5cbdb33..7918a59 100644 --- a/src/styles/main.css +++ b/src/styles/main.css @@ -1,3 +1,8 @@ +body { + background-color: black; + color: white; +} + #document-add { background-image: url('static/document-add.svg'); border: 0; @@ -10,11 +15,64 @@ border: 1px solid black; position: absolute; } +.edit { + position: absolute; + background-image: url('static/edit.svg'); + background-color: rgba(0, 0, 0, 0); + border: 0; + cursor: pointer; + height: 25px; + width: 25px; +} +.resize { + position: absolute; + background-image: url('static/resize.svg'); + background-color: rgba(0, 0, 0, 0); + cursor: pointer; + height: 25px; + width: 25px; + bottom: 0; + right: 0; +} +.delete { + position: absolute; + background-image: url('static/x.svg'); + background-color: rgba(0, 0, 0, 0); + cursor: pointer; + height: 25px; + width: 25px; + top: 0; + right: 0; +} #tinymce { - position: absolute; - top: 150; - left: 150; - width: 80vw; - height: 40vh; + display: none; +} +.tinymce-footer { + height: 40px; +} +#wysiwyg { + position: absolute; + top: 10%; + left: 17%; + width: 70vw; + height: 50vh; +} +#tfp { + height: 26px; + line-height: 26px; +} +#save { + background-image: url('static/save.svg'); + border: 0; + width: 24px; + height: 24px; + cursor: pointer; +} +#cancel { + background-image: url('static/x.svg'); + border: 0; + width: 24px; + height: 24px; + cursor: pointer; } |
