mirror of
https://github.com/linuxserver/odin.git
synced 2026-02-20 02:14:24 +08:00
108 lines
2.1 KiB
CSS
108 lines
2.1 KiB
CSS
.post-header .social-share {
|
|
margin-top: 1em;
|
|
}
|
|
.main-header-content .blog-logo {
|
|
float: none;
|
|
}
|
|
.main-header-content .blog-logo img {
|
|
width: 13rem;
|
|
height: auto;
|
|
display: inline;
|
|
border-radius: 50%;
|
|
padding: 0;
|
|
border: 3px solid rgb(255, 255, 255);
|
|
}
|
|
|
|
.post-template .post-header {
|
|
text-align: center;
|
|
}
|
|
|
|
.back-button {
|
|
float: left;
|
|
height: 38px;
|
|
padding: 0 15px 0 10px;
|
|
border: transparent 1px solid;
|
|
color: #9EABB3;
|
|
text-align: center;
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
line-height: 35px;
|
|
border-radius: 3px;
|
|
transition: all ease 0.3s;
|
|
background: white;
|
|
position:static;
|
|
}
|
|
.back-button:before {
|
|
position: relative;
|
|
bottom: -2px;
|
|
font-size: 13px;
|
|
line-height: 0;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.subscribe-button {
|
|
float: right;
|
|
height: 38px;
|
|
padding: 0 20px;
|
|
border: transparent 1px solid;
|
|
color: #9EABB3 !important;
|
|
text-align: center;
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
line-height: 35px;
|
|
white-space: nowrap;
|
|
border-radius: 3px;
|
|
transition: all ease 0.3s;
|
|
position:static;
|
|
background: white;
|
|
}
|
|
.subscribe-button:before {
|
|
font-size: 9px;
|
|
margin-right: 6px;
|
|
}
|
|
|
|
/* Add a border to the buttons on hover */
|
|
.back-button:hover,
|
|
.subscribe-button:hover {
|
|
border-color: rgba(0, 0, 0, 0.8);
|
|
color: rgb(0, 0, 0) !important;
|
|
}
|
|
|
|
.post-footer .author {
|
|
text-align: center;
|
|
margin-right: 0;
|
|
}
|
|
|
|
/* social link */
|
|
.main-header .social_link {
|
|
padding: 0;
|
|
list-style-type: none;
|
|
}
|
|
|
|
.main-header .social_link li{
|
|
display: inline;
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
.main-header .social_link li a {
|
|
display: inline-block;;
|
|
padding: 10px;
|
|
transition: all 0.1s ease-in-out;
|
|
color: rgba(255,255,255,0.8);
|
|
}
|
|
|
|
.main-header .social_link li a {
|
|
display: inline-block;;
|
|
padding: 10px;
|
|
transition: all 0.1s ease-in-out;
|
|
color: rgba(255,255,255,0.8);
|
|
}
|
|
|
|
.main-header.no-cover .social_link li a {
|
|
color: rgba(0,0,0,0.8);
|
|
}
|
|
|
|
.main-header .social_link li a:hover {
|
|
transform: scale(1.3);
|
|
}
|