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

github.com/hauke96/hugo-theme-hamburg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorKeichi Takahashi <keichi.t@me.com>2015-02-23 16:10:35 +0300
committerKeichi Takahashi <keichi.t@me.com>2015-02-23 16:11:59 +0300
commit9e14c071b3bc27950dbb54bd3243b3902edd8a9c (patch)
tree72235c50993596907ae640a07a09f6b4b54ea7c9 /static
parentd3bc7876fef3444b50e1a91cad26bf17ed6babdc (diff)
Add author contact button
Diffstat (limited to 'static')
-rw-r--r--static/css/main.css27
1 files changed, 27 insertions, 0 deletions
diff --git a/static/css/main.css b/static/css/main.css
index 2c2892a..ded9ed0 100644
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -185,6 +185,33 @@ a.btn-back {
height: 100px;
border-radius: 50px;
}
+
+.author-contact {
+ position: relative;
+ display: inline-block;
+ height: 100px;
+ text-align: center;
+ padding-top: 10px;
+}
+
+.author-contact a {
+ display: inline-block;
+ padding: 7px 16px;
+ border: 1px solid rgba(0, 0, 0, 0.2);
+ border-radius: 3px;
+ color: rgba(0, 0, 0, 0.7);
+ text-decoration: none;
+ font-weight: 300;
+ font-size: 13px;
+ transition: background-color,border-color,color 0.1s linear
+}
+
+.author-contact a:hover {
+ background-color: rgba(51, 122, 183, 1.0);
+ border: 1px solid rgba(51, 122, 182, 1.0);
+ color: rgba(255, 255, 255, 1.0);
+}
+
/* Override some of Bootstrap's styles */
pre {