Ghost/ghost/admin/assets/sass/layouts/about.scss

244 lines
4.5 KiB
SCSS
Raw Normal View History

2014-07-30 11:51:37 +04:00
//
// About Ghost
// --------------------------------------------------
// Slug: /ghost/settings/about
.settings-about {
h1 {
letter-spacing: 0;
}
2014-07-30 11:51:37 +04:00
.ghost_logo {
position: relative;
left: 3px;
@include icon($i-ghost, 1.7rem, $midgrey) {
2014-07-30 11:51:37 +04:00
position: relative;
top: -6px;
};
@include icon-after($i-ghost-logo, 3.2rem, $darkgrey) {
position: relative;
left: -5px;
};
2014-07-30 11:51:37 +04:00
}
h1 + p {
margin-top: 1px;
2014-07-30 11:51:37 +04:00
color: $midgrey;
}
}
2014-07-30 11:51:37 +04:00
//
// App Details
// --------------------------------------------------
.about-ghost-intro {
h1 {
margin-top: -6px;
margin-bottom: -21px;
2014-07-30 11:51:37 +04:00
.version {
font-weight: 300;
font-size: 1.8rem;
2014-07-30 11:51:37 +04:00
position: relative;
top: -3px;
left: -9px;
color: $blue;
2014-07-30 11:51:37 +04:00
}
}
2014-07-30 11:51:37 +04:00
@media (max-width: 550px) {
padding-top: 40px;
}
}
2014-07-30 11:51:37 +04:00
.about-environment-help {
margin-top: 35px;
}
2014-07-30 11:51:37 +04:00
.about-environment {
dl {
@include clearfix;
color: $midgrey;
margin: 2px 0 0 0;
line-height: 1.6;
}
dt, dd {
width: auto;
float: left;
display: inline-block;
2014-07-30 11:51:37 +04:00
margin: 0;
}
dt {
margin-right: 5px;
}
.about-environment-detail {
text-transform: capitalize;
2014-07-30 11:51:37 +04:00
}
}
2014-07-30 11:51:37 +04:00
.about-help {
padding-top: 8px;
2014-07-30 11:51:37 +04:00
@media (max-width: 500px) {
padding-top: 16px;
}
.btn {
2014-07-30 11:51:37 +04:00
width: 100%;
display: block;
font-size: 0.9rem;
padding-top: 9px;
padding-bottom: 9px;
2014-07-30 11:51:37 +04:00
min-height: 32px;
background: #A1ADB3;
color: #fff;
&:hover {
background: darken(#A1ADB3, 10%);
}
2014-07-30 11:51:37 +04:00
&:nth-child(1) {
margin-bottom: 11px;
}
}
2014-07-30 11:51:37 +04:00
} // .about-help
@media (min-width: 501px) {
.about-environment-help {
max-width: 430px;
}
.about-environment {
float: left;
width: calc(100% - 190px);
2014-07-30 11:51:37 +04:00
}
.about-help {
float: right;
width: 170px;
2014-07-30 11:51:37 +04:00
}
}
2014-07-30 11:51:37 +04:00
//
// Contributors
// --------------------------------------------------
.top-contributors {
padding-left: 0;
max-width: 660px;
2014-07-30 11:51:37 +04:00
li {
float: left;
list-style: none;
width: 10%;
2014-07-30 11:51:37 +04:00
a {
display: block;
2014-07-30 11:51:37 +04:00
@media (min-width: 601px) {
margin-right: 9px;
margin-bottom: 9px;
}
@media (max-width: 600px) {
margin-right: 6px;
margin-bottom: 6px;
}
2014-07-30 11:51:37 +04:00
img {
width: 100%;
display: block;
border-radius: 100%;
}
position: relative;
&:before {
opacity: 0;
content: attr(title);
position: absolute;
top: -27px;
left: 50%;
transform: translateX(-50%);
background: $darkgrey;
color: #fff;
padding: 2px 6px 3px;
border-radius: $rounded;
transition: opacity 0.15s ease-in-out;
font-size: 1rem;
pointer-events: none;
}
&:after {
opacity: 0;
content: '';
position: absolute;
top: -6px;
left: 50%;
transform: translateX(-50%);
transition: opacity 0.15s ease-in-out;
@include triangle(8px, $darkgrey, "down");
}
&:hover {
&:before,
&:after {
opacity: 1;
}
}
}
2014-07-30 11:51:37 +04:00
} // li
2014-07-30 11:51:37 +04:00
} // .top-contributors
//
// Credits & Copyright
// --------------------------------------------------
.about-credits {
margin-top: 45px;
2014-07-30 11:51:37 +04:00
h1 {
font-size: 2.4rem;
margin-bottom: 24px;
2014-07-30 11:51:37 +04:00
}
}
.about-contributors-info {
margin-top: -12px;
margin-bottom: 22px;
font-size: 1.6rem;
2014-07-30 11:51:37 +04:00
max-width: 620px;
}
.about-get-involved {
font-size: 1.2rem;
width: 100%;
display: inline-block;
max-width: 290px;
text-transform: uppercase;
text-align: center;
2014-07-30 11:51:37 +04:00
}
.about-copyright {
margin-top: 62px;
2014-07-30 11:51:37 +04:00
a {
&:link,
&:visited {
color: inherit;
}
&:hover,
&:focus,
&:active {
text-decoration: none;
color: $blue;
}
}
2014-07-30 11:51:37 +04:00
} // .about-copyright