Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/announcementcenter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorsahalsaad <caalshift@gmail.com>2018-12-14 19:25:18 +0300
committerJoas Schilling <coding@schilljs.com>2019-01-10 22:48:22 +0300
commita0276508f73a3a25a425b739a0918d4660fb5363 (patch)
treecbe45868861ebfe96d56a81f599760cacc33dd2c /css
parent5a7e080471680f7a9b1b42f84bf0294c1d76226e (diff)
Implement markdown support by using marked.js.
Diffstat (limited to 'css')
-rw-r--r--css/style.css21
1 files changed, 21 insertions, 0 deletions
diff --git a/css/style.css b/css/style.css
index ef894b6..161fceb 100644
--- a/css/style.css
+++ b/css/style.css
@@ -67,6 +67,27 @@
color: #878787;
}
+.section > blockquote {
+ padding: 5px 10px;
+ border-left: 1px solid #ddd;
+}
+
+ul, ol {
+ padding-inline-start: 40px;
+}
+
+.section > ul {
+ list-style-type: disc;
+}
+
+.section > ul ul {
+ list-style-type: circle;
+}
+
+.section > ul ul ul {
+ list-style-type: square;
+}
+
#app-content .avatar {
vertical-align: middle;
display: inline-block;