Ghost/ghost/admin/app/styles/layouts/about.css

139 lines
2.3 KiB
CSS
Raw Normal View History

2015-05-14 16:45:37 +03:00
/* About /ghost/settings/about/
/* ---------------------------------------------------------- */
2015-05-19 14:42:53 +03:00
.gh-logo {
2015-05-14 16:45:37 +03:00
position: relative;
2015-05-19 14:42:53 +03:00
width: 120px;
height: auto;
2015-05-14 16:45:37 +03:00
}
2015-05-19 14:42:53 +03:00
.gh-env-details {
display: flex;
align-items: center;
margin: 1em 0;
2015-05-14 16:45:37 +03:00
}
2015-05-19 14:42:53 +03:00
.gh-env-list {
2015-05-14 16:45:37 +03:00
margin: 0;
2015-05-19 14:42:53 +03:00
padding: 0 40px 0 0;
list-style: none;
2015-05-14 16:45:37 +03:00
}
2016-11-14 12:55:08 +03:00
.gh-env-list li {
margin: 0;
font-size: 1.4rem;
}
2015-05-19 14:42:53 +03:00
.gh-env-help {
max-width: 200px;
2015-05-14 16:45:37 +03:00
}
.gh-env-help .gh-btn {
margin: 4px 0;
2015-05-14 16:45:37 +03:00
}
2015-05-19 14:42:53 +03:00
@media (max-width: 670px) {
.gh-env-details {
flex-direction: column;
align-items: flex-start;
}
.gh-env-help {
margin: 1em 0;
max-width: none;
2015-05-14 16:45:37 +03:00
}
.gh-env-help .gh-btn {
display: inline-block;
}
2015-05-14 16:45:37 +03:00
}
2015-05-19 14:42:53 +03:00
.gh-credits {
margin: 2em 0;
max-width: 700px;
2015-05-19 14:42:53 +03:00
color: var(--midgrey);
font-size: 1.8rem;
font-weight: 200;
2015-05-14 16:45:37 +03:00
}
2015-05-19 14:42:53 +03:00
@media (max-width: 890px) {
.gh-credits {
max-width: 460px;
}
2015-05-14 16:45:37 +03:00
}
2015-05-19 14:42:53 +03:00
.gh-credits h2 {
font-size: 2.4rem;
2015-05-14 16:45:37 +03:00
}
/* Contributors
/* ---------------------------------------------------------- */
2015-05-19 14:42:53 +03:00
.gh-contributors {
display: flex;
flex-wrap: wrap;
margin: 1em 0;
2015-05-14 16:45:37 +03:00
}
2015-05-19 14:42:53 +03:00
.gh-contributors a {
2015-05-14 16:45:37 +03:00
position: relative;
2015-05-16 14:43:12 +03:00
display: block;
2015-05-19 14:42:53 +03:00
margin: 0 10px 10px 0;
width: 60px;
height: 60px;
2015-05-14 16:45:37 +03:00
}
2015-05-19 14:42:53 +03:00
.gh-contributors img {
border-radius: 100%;
2015-05-14 16:45:37 +03:00
}
2015-05-19 14:42:53 +03:00
.gh-contributors a:before {
2015-05-14 16:45:37 +03:00
content: attr(title);
position: absolute;
2015-05-19 14:42:53 +03:00
top: -20px;
2015-05-14 16:45:37 +03:00
left: 50%;
2015-05-19 14:42:53 +03:00
padding: 2px 6px;
2015-05-16 14:43:12 +03:00
background: var(--darkgrey);
2015-05-14 16:45:37 +03:00
border-radius: var(--border-radius);
2015-05-16 14:43:12 +03:00
color: #fff;
2015-05-14 16:45:37 +03:00
font-size: 1rem;
2015-05-19 14:42:53 +03:00
line-height: 1.3em;
2015-05-16 14:43:12 +03:00
opacity: 0;
transition: opacity 0.15s ease-in-out;
transform: translateX(-50%);
2015-05-14 16:45:37 +03:00
pointer-events: none;
}
2015-05-19 14:42:53 +03:00
.gh-contributors a:after {
2015-05-16 00:28:30 +03:00
content: "";
2015-05-14 16:45:37 +03:00
position: absolute;
top: -6px;
left: 50%;
2015-05-16 14:43:12 +03:00
opacity: 0;
2015-05-14 16:45:37 +03:00
transition: opacity 0.15s ease-in-out;
2015-05-16 14:43:12 +03:00
transform: translateX(-50%);
2015-05-14 16:45:37 +03:00
}
2015-05-19 14:42:53 +03:00
.gh-contributors a:hover:before,
.gh-contributors a:hover:after {
2015-05-14 16:45:37 +03:00
opacity: 1;
}
/* Upgrade
/* ---------------------------------------------------------- */
.gh-upgrade-notification {
padding-top: 1em;
}
.gh-upgrade-notification a {
text-decoration: underline;
}
2015-05-19 14:42:53 +03:00
/* Copyright Info
2015-05-14 16:45:37 +03:00
/* ---------------------------------------------------------- */
2015-05-19 14:42:53 +03:00
.gh-copyright-info {
color: var(--midgrey);
2015-05-16 14:43:12 +03:00
font-size: 1.2rem;
2015-05-14 16:45:37 +03:00
}