diff options
| author | kartofen <mladenovnasko0@gmail.com> | 2022-08-28 23:22:15 +0300 | 
|---|---|---|
| committer | kartofen <mladenovnasko0@gmail.com> | 2022-08-28 23:22:15 +0300 | 
| commit | 9d952483f250a97cbeab4061fa1c4e68341b330f (patch) | |
| tree | 9d094911dc5178db9375eaa661e7f4bf0d5bf2cc /src/styles | |
| parent | 35b06b4fc851192916e000ad5e7e2f458846448c (diff) | |
posting thread and image works
Diffstat (limited to 'src/styles')
| -rw-r--r-- | src/styles/blackbox.css | 8 | ||||
| -rw-r--r-- | src/styles/thread.css | 18 | 
2 files changed, 26 insertions, 0 deletions
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; +}  | 
