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

github.com/parsiya/Hugo-Octopress.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsiya <parsiya@gmail.com>2018-01-12 05:44:18 +0300
committerparsiya <parsiya@gmail.com>2018-01-12 05:44:18 +0300
commitd7c0ac27c0dbbf1d1fdfd2e83cfcbb0678884d0a (patch)
tree0710bec676606ab8b91fc34a8b753041d7c342cf
parentf4e945c3b8d7dcefdf689d317bdb245b75b0ad0c (diff)
Fix some issues with Hugo figure shortcode
-rw-r--r--static/css/hugo-octopress.css47
1 files changed, 46 insertions, 1 deletions
diff --git a/static/css/hugo-octopress.css b/static/css/hugo-octopress.css
index af06a61..358c19e 100644
--- a/static/css/hugo-octopress.css
+++ b/static/css/hugo-octopress.css
@@ -2376,4 +2376,49 @@ h6 {
/* End credit gist */
-/* End - Making the gist work */ \ No newline at end of file
+/* End - Making the gist work */
+
+/* Hugo Figure shortcode */
+
+figure figcaption {
+ background: #fff;
+ text-align: center;
+ font-size: 1em;
+ color: #666;
+ display: block;
+}
+
+figure {
+ color: #666;
+}
+
+figure a {
+ color: #666;
+ text-align: center;
+ text-decoration: none;
+ display: inline-block;
+ white-space: nowrap;
+}
+
+/*figure figcaption h4 {
+ text-align: center;
+ line-height: 2em;
+ text-shadow: #cbcccc 0 1px 0;
+ color: #474747;
+ font-weight: normal;
+ margin-bottom: 0;
+ -moz-border-radius-topleft: 5px;
+ -webkit-border-top-left-radius: 5px;
+ border-top-left-radius: 5px;
+ -moz-border-radius-topright: 5px;
+ -webkit-border-top-right-radius: 5px;
+ border-top-right-radius: 5px;
+ background: #aaa top repeat-x;
+ border: 1px solid #565656;
+ border-top-color: #cbcbcb;
+ border-left-color: #a5a5a5;
+ border-right-color: #a5a5a5;
+ border-bottom: 0;
+ font-size: 90%;
+ margin: 0px;
+}*/ \ No newline at end of file