aboutsummaryrefslogtreecommitdiff
path: root/app/scss
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2018-12-22 20:13:43 +0000
committerrubenwardy <rw@rubenwardy.com>2018-12-22 20:25:22 +0000
commitc551201f792aa288a49c986aab264f4692e3b478 (patch)
treed894bc68c7a0b06b642e7eceb7032fc5a1115420 /app/scss
parenta21a5c24d8baa2f14000ca64c10ea315fab708bd (diff)
downloadcheatdb-c551201f792aa288a49c986aab264f4692e3b478.tar.xz
Improve thread styling
Diffstat (limited to 'app/scss')
-rw-r--r--app/scss/comments.scss65
1 files changed, 22 insertions, 43 deletions
diff --git a/app/scss/comments.scss b/app/scss/comments.scss
index d2302b1..a3ce50f 100644
--- a/app/scss/comments.scss
+++ b/app/scss/comments.scss
@@ -1,49 +1,28 @@
-.comments, .comments li {
- list-style: none;
- padding: 0;
- margin: 0;
- border: 1px solid #444;
+.img-thumbnail-1 {
+ padding: 0px;
+ // width: 100%;
}
.comments {
- border-radius: 5px;
- margin: 15px 0;
- background: #333;
-
- .info_strip, .msg {
- display: block;
- margin: 0;
- }
-
- .info_strip {
- padding: 0.2em 1em;
- border-bottom: 1px solid #444;
- }
-
- .msg {
- padding: 1em;
- background: #222;
- }
-
- .author {
- font-weight: bold;
- float: left;
- display: inline-block;
- }
+ list-style: none;
+ padding: 0;
- .info_strip span {
- float: right;
- display: inline-block;
- color: #bbb;
+ .card {
+ position:relative;
+
+ .card-header:before {
+ position: absolute;
+ top: 11px;
+ right: 100%;
+ width: 0;
+ height: 0;
+ display: block;
+ content:" ";
+ border-color: transparent;
+ border-style: solid solid outset;
+ pointer-events:none;
+ border-right-color: #444;
+ border-width: 14px;
+ }
}
}
-
-.comment_form {
- margin: 1em 0;
-}
-
-.comment_form textarea {
- min-width: 60%;
- max-width: 100%;
- margin: 0 0 1em 0;
-}