Ghost/ghost/admin/app/styles/patterns/global.css

468 lines
7.0 KiB
CSS
Raw Normal View History

2015-05-14 16:45:37 +03:00
/* Global styles
/* ---------------------------------------------------------- */
/* Variables
/* ---------------------------------------------------------- */
:root {
/* Colours */
2016-11-14 12:55:08 +03:00
--darkgrey: #343f44;
--midgrey: #738a94;
--lightgrey: #e5eff5;
2016-11-14 12:55:08 +03:00
--blue: #3eb0ef;
--red: #f05230;
--orange: #fecd35;
--green: #a4d037;
2015-05-14 16:45:37 +03:00
/* Style values */
2015-05-15 23:18:24 +03:00
--border-radius: 4px;
2016-08-18 18:02:56 +03:00
--font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
2015-05-14 16:45:37 +03:00
--font-family-mono: Consolas, "Liberation Mono", Menlo, Courier, monospace;
}
/* Colour classes
/* ---------------------------------------------------------- */
.darkgrey {
color: var(--darkgrey);
}
.midgrey {
color: var(--midgrey);
}
.lightgrey {
color: var(--lightgrey);
}
.blue {
color: var(--blue);
}
.red {
color: var(--red);
}
.orange {
color: var(--orange);
}
.green {
color: var(--green);
}
2015-05-14 16:45:37 +03:00
/* Layout
/* ---------------------------------------------------------- */
2015-05-16 00:28:30 +03:00
*,
*:before,
*:after {
2015-05-14 16:45:37 +03:00
box-sizing: border-box;
}
html {
2015-05-16 14:43:12 +03:00
overflow: hidden;
width: 100%;
2015-05-14 16:45:37 +03:00
/* Prevent elastic scrolling on the whole page */
height: 100%;
2016-08-24 17:44:02 +03:00
font-family: var(--font-family);
font-size: 62.5%;
line-height: 1.65;
2015-05-16 14:43:12 +03:00
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
2015-05-14 16:45:37 +03:00
}
body {
2015-05-16 14:43:12 +03:00
overflow: auto;
overflow-x: hidden;
width: 100%;
/* Prevent elastic scrolling on the whole page */
height: 100%;
color: color(var(--darkgrey) lightness(+10%));
2015-05-14 16:45:37 +03:00
font-size: 1.4rem;
}
::selection {
background: color(var(--blue) lightness(+20%));
2015-05-14 16:45:37 +03:00
}
/* Text
/* ---------------------------------------------------------- */
2015-05-16 00:28:30 +03:00
h1,
h2,
h3,
h4,
h5,
h6 {
2015-05-14 16:45:37 +03:00
margin: 0 0 0.3em 0;
color: var(--darkgrey);
2015-05-16 14:43:12 +03:00
line-height: 1.15em;
2015-05-14 16:45:37 +03:00
text-rendering: optimizeLegibility;
}
h1 {
text-indent: -1px;
2016-11-14 12:55:08 +03:00
font-size: 2.9rem;
}
@media (max-width: 500px) {
h1 {
font-size: 2.4rem;
}
2015-05-14 16:45:37 +03:00
}
h2 {
text-indent: -1px;
2016-11-14 12:55:08 +03:00
font-size: 2.2rem;
}
@media (max-width: 500px) {
h2 {
font-size: 1.9rem;
}
2015-05-14 16:45:37 +03:00
}
h3 {
2016-11-14 12:55:08 +03:00
font-size: 1.9rem;
}
@media (max-width: 500px) {
h3 {
font-size: 1.7rem;
}
2015-05-14 16:45:37 +03:00
}
h4 {
2016-11-14 12:55:08 +03:00
font-size: 1.7rem;
2015-05-14 16:45:37 +03:00
}
h5 {
2016-11-14 12:55:08 +03:00
font-size: 1.5rem;
2015-05-14 16:45:37 +03:00
}
h6 {
2016-11-14 12:55:08 +03:00
font-size: 1.5rem;
2015-05-14 16:45:37 +03:00
}
2015-05-16 00:28:30 +03:00
p,
ul,
ol,
dl {
2015-05-14 16:45:37 +03:00
margin: 0 0 1.7em 0;
2016-11-14 12:55:08 +03:00
font-size: 1.6rem;
2015-05-14 16:45:37 +03:00
}
2015-05-16 00:28:30 +03:00
ol,
ul {
2016-11-14 12:55:08 +03:00
padding-left: 1.2em;
}
li {
margin-bottom: 10px;
line-height: 1.4em;
2015-05-14 16:45:37 +03:00
}
2015-05-16 00:28:30 +03:00
ol ol,
ul ul,
ul ol,
ol ul {
2015-05-14 16:45:37 +03:00
margin: 0 0 0.4em 0;
padding-left: 2em;
font-size: 0.9em;
}
mark {
background-color: #fdffb6;
}
a {
color: var(--blue);
text-decoration: none;
transition: background 0.3s, color 0.3s;
}
a:hover {
text-decoration: none;
transition: background 0.1s, color 0.1s;
}
a.highlight {
color: var(--orange);
font-weight: bold;
}
hr {
display: block;
2015-05-16 14:43:12 +03:00
margin: 3.2em 0;
padding: 0;
2015-05-14 16:45:37 +03:00
height: 1px;
border: 0;
border-top: 1px solid #dfe1e3;
2015-05-14 16:45:37 +03:00
}
dl {
margin: 1.6em 0;
}
dl dt {
float: left;
clear: left;
2015-05-16 14:43:12 +03:00
overflow: hidden;
margin-bottom: 1em;
width: 180px;
2015-05-14 16:45:37 +03:00
text-align: right;
text-overflow: ellipsis;
white-space: nowrap;
font-weight: bold;
}
dl dd {
margin-bottom: 1em;
2015-05-16 14:43:12 +03:00
margin-left: 200px;
2015-05-14 16:45:37 +03:00
}
blockquote {
2015-05-16 14:43:12 +03:00
margin: 1.6em 0;
2015-05-14 16:45:37 +03:00
padding: 0 1.6em 0 1.6em;
border-left: #dfe1e3 0.6em solid;;
2015-05-14 16:45:37 +03:00
}
blockquote p {
2015-05-16 00:28:30 +03:00
margin: 0.8em 0;
font-size: 1.2em;
2015-05-14 16:45:37 +03:00
font-weight: 300;
}
blockquote small {
display: inline-block;
margin: 0.8em 0 0.8em 1.5em;
color: var(--midgrey);
2015-05-16 14:43:12 +03:00
font-size: 0.9em;
2015-05-14 16:45:37 +03:00
}
/* Quotation marks */
2015-05-16 00:28:30 +03:00
blockquote small:before {
content: "\2014 \00A0";
}
2015-05-14 16:45:37 +03:00
2015-05-16 00:28:30 +03:00
blockquote cite {
font-weight: bold;
}
blockquote cite a {
font-weight: normal;
}
2015-05-14 16:45:37 +03:00
.markdown,
pre,
code,
tt {
font-family: var(--font-family-mono);
}
2015-05-16 00:28:30 +03:00
code,
tt {
2015-09-02 13:03:14 +03:00
padding: 0.2rem 0.3rem 0.1rem;
border: color(#f5f7f8 lightness(-10%)) 1px solid;
background: #f5f7f8;
2015-05-14 16:45:37 +03:00
border-radius: 2px;
2015-09-02 13:03:14 +03:00
color: #c25;
vertical-align: middle;
2015-05-16 14:43:12 +03:00
white-space: pre-wrap;
2015-09-02 13:03:14 +03:00
font-size: 0.8em;
line-height: 1em;
2015-05-14 16:45:37 +03:00
}
pre {
overflow: auto;
2015-05-16 14:43:12 +03:00
margin: 1.6em 0;
padding: 10px;
width: 100%;
2015-09-02 13:03:14 +03:00
border: color(#f5f7f8 lightness(-10%)) 1px solid;
background: #f5f7f8;
2015-05-14 16:45:37 +03:00
border-radius: 3px;
2015-05-16 14:43:12 +03:00
white-space: pre;
font-family: var(--font-family-mono);
font-size: 0.9em;;
2015-05-14 16:45:37 +03:00
}
pre code,
pre tt {
padding: 0;
2015-05-16 14:43:12 +03:00
border: none;
background: transparent;
2015-09-02 13:03:14 +03:00
color: inherit;
2015-05-16 14:43:12 +03:00
white-space: pre-wrap;
font-size: inherit;
2015-05-14 16:45:37 +03:00
}
kbd {
display: inline-block;
margin-bottom: 0.4em;
padding: 1px 8px;
border: #ccc 1px solid;
background: #f4f4f4;
border-radius: 4px;
2015-05-16 00:28:30 +03:00
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2),
0 1px 0 0 #fff inset;
2015-05-16 14:43:12 +03:00
color: var(--darkgrey);
text-shadow: #fff 0 1px 0;
font-size: 0.9em;
font-weight: bold;
2015-05-14 16:45:37 +03:00
}
button {
2015-05-16 14:43:12 +03:00
padding: 0;
2015-05-14 16:45:37 +03:00
outline: none;
2015-05-16 14:43:12 +03:00
border: none;
background: transparent;
2015-05-14 16:45:37 +03:00
box-shadow: none;
}
2015-06-03 17:44:12 +03:00
i {
display: block;
}
2015-05-14 16:45:37 +03:00
img {
max-width: 100%;
}
/* Utilities
/* ---------------------------------------------------------- */
.clearfix,
.clearfix:after {
content: "";
display: table;
clear: both;
}
.wrapper {
position: relative;
}
.show {
display: block !important;
}
.hidden {
visibility: hidden !important;
2015-05-16 14:43:12 +03:00
display: none !important;
2015-05-14 16:45:37 +03:00
}
.invisible {
visibility: hidden;
}
.sr-only {
position: absolute;
overflow: hidden;
clip: rect(0, 0, 0, 0);
2015-05-16 14:43:12 +03:00
margin: -1px;
padding: 0;
width: 1px;
height: 1px;
2015-05-14 16:45:37 +03:00
border: 0;
}
.sr-only-focusable:focus {
z-index: 900;
2015-05-14 16:45:37 +03:00
overflow: visible;
clip: auto;
2015-05-16 14:43:12 +03:00
margin: 0;
padding: 0 10px;
2015-05-16 14:43:12 +03:00
width: auto;
height: auto;
background-color: #f5f5f5;
color: #333;
text-decoration: none;
line-height: 49px;
font-weight: bold;
2015-05-14 16:45:37 +03:00
}
.right {
float: right;
}
.left {
float: left;
}
.vertical {
2015-05-16 00:28:30 +03:00
display: table-cell;
vertical-align: middle;
2015-05-14 16:45:37 +03:00
}
2017-02-17 17:10:02 +03:00
.flex {
display: flex;
}
2015-05-14 16:45:37 +03:00
/* Animations
/* ---------------------------------------------------------- */
@keyframes fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fade-in-snap {
to {
opacity: 1;
}
}
@keyframes fade-in-scale {
from {
opacity: 0;
2015-05-16 14:43:12 +03:00
transform: scale(0.95);
2015-05-14 16:45:37 +03:00
}
to {
opacity: 1;
2015-05-16 14:43:12 +03:00
transform: scale(1);
2015-05-14 16:45:37 +03:00
}
}
@keyframes fade-out {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes keyboard-focus-style-fade-out {
from {
box-shadow: inset 0 0 30px 1px color(var(--midgrey) lightness(+20%));
2015-05-14 16:45:37 +03:00
}
to {
box-shadow: none;
}
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
2015-05-14 16:45:37 +03:00
.fade-in {
animation: fade-in 0.2s;
animation-fill-mode: forwards;
}
.fade-in-scale {
animation: fade-in-scale 0.2s;
animation-fill-mode: forwards;
}
.fade-out {
animation: fade-out 0.5s;
animation-fill-mode: forwards;
}