From 9d952483f250a97cbeab4061fa1c4e68341b330f Mon Sep 17 00:00:00 2001 From: kartofen Date: Sun, 28 Aug 2022 23:22:15 +0300 Subject: posting thread and image works --- src/styles/blackbox.css | 8 ++++++++ src/styles/thread.css | 18 ++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 src/styles/blackbox.css create mode 100644 src/styles/thread.css (limited to 'src/styles') diff --git a/src/styles/blackbox.css b/src/styles/blackbox.css new file mode 100644 index 0000000..4a0e63f --- /dev/null +++ b/src/styles/blackbox.css @@ -0,0 +1,8 @@ + .blackbox { + width: var(--wdt); + border: 10px solid black; + padding: 10px; + margin: 10px; + margin-left: 0px; + background-color: white; + } diff --git a/src/styles/thread.css b/src/styles/thread.css new file mode 100644 index 0000000..14997de --- /dev/null +++ b/src/styles/thread.css @@ -0,0 +1,18 @@ +.threadbox { + width: 600px; + border: 10px solid green; + padding: 10px; + margin: 10px; + margin-left: 0px; + background-color: white; +} +.commentbox { + width: 500px; + border: 5px solid green; + padding: 10px; + margin: 10px; + background-color: white; +} +:target, .targeted { + background-color: #ffa; +} -- cgit v1.2.3