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

github.com/jnjosh/internet-weblog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Johnson <jnjosh@jnjosh.com>2016-02-21 04:28:15 +0300
committerJosh Johnson <jnjosh@jnjosh.com>2016-02-21 04:28:15 +0300
commit4c1da511025e7f2500098a3842a257ad65d311de (patch)
tree28bf20b0713268931d4ed827d1b4ba2a5bbb9e8c
parent84336e7c39dab25bbd26c887460749773ddcc9f7 (diff)
added style for blockquotes
-rw-r--r--static/css/weblog.css21
1 files changed, 21 insertions, 0 deletions
diff --git a/static/css/weblog.css b/static/css/weblog.css
index 698415f..a2e3b5b 100644
--- a/static/css/weblog.css
+++ b/static/css/weblog.css
@@ -19,6 +19,27 @@ h1, h2, h3, h4 {
color: #666666;
}
+img {
+ max-width: 100%;
+}
+
+blockquote {
+ background-color: #F0F2F5;
+ color: #999999;
+ padding: 5px;
+}
+
+blockquote p {
+ font-style: italic;
+ padding: 0 10px;
+}
+
+blockquote p:last-child {
+ font-style: normal;
+ padding-left: 30px;
+
+}
+
.site {
display: flex;
min-height: 100vh;