mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
First pass refactor - cleaning the slate
This commit is contained in:
parent
afade36796
commit
02d3756cd8
@ -1,25 +1,21 @@
|
||||
# Dependencies
|
||||
markdown: rdiscount
|
||||
highlighter: pygments
|
||||
markdown: kramdown
|
||||
highlighter: rouge
|
||||
|
||||
# Permalinks
|
||||
permalink: pretty
|
||||
|
||||
# Server
|
||||
source: ./docs
|
||||
destination: ./_gh_pages
|
||||
source: docs
|
||||
destination: _gh_pages
|
||||
host: 0.0.0.0
|
||||
port: 9008
|
||||
port: 9001
|
||||
baseurl: /
|
||||
url: http://localhost:9001
|
||||
encoding: UTF-8
|
||||
|
||||
exclude:
|
||||
- "jade"
|
||||
- "vendor"
|
||||
|
||||
# Custom vars
|
||||
current_version: 0.1.0
|
||||
current_version: 2.0.0
|
||||
repo: https://github.com/TryGhost/Ghost-UI
|
||||
|
||||
download:
|
||||
|
@ -1,60 +1,7 @@
|
||||
/*
|
||||
* Mixins
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Baseline
|
||||
* Gradients
|
||||
*/
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Baseline
|
||||
========================================================================== */
|
||||
//
|
||||
// Styles
|
||||
// --------------------------------------------------
|
||||
|
||||
@mixin baseline {
|
||||
margin: 1.6em 0;
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Gradients
|
||||
========================================================================== */
|
||||
|
||||
@mixin gradient($color1: #aaa, $color2: none) {
|
||||
|
||||
@if $color2 == 'none' {
|
||||
background-color: lighten($color1, 10%);
|
||||
background-image: -webkit-linear-gradient(bottom, $color1, lighten($color1, 10%));
|
||||
background-image: -moz-linear-gradient(bottom, $color1, lighten($color1, 10%));
|
||||
background-image: -ms-linear-gradient(bottom, $color1, lighten($color1, 10%));
|
||||
background-image: linear-gradient(bottom, $color1, lighten($color1, 10%));
|
||||
} @else {
|
||||
background-color: $color2;
|
||||
background-image: -webkit-linear-gradient(bottom, $color1, $color2);
|
||||
background-image: -moz-linear-gradient(bottom, $color1, $color2);
|
||||
background-image: -ms-linear-gradient(bottom, $color1, $color2);
|
||||
background-image: linear-gradient(to top, $color1, $color2);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// The same as the above, but with the colours reversed.
|
||||
|
||||
@mixin inversegradient($color1: #aaa, $color2: none) {
|
||||
|
||||
@if $color2 == 'none' {
|
||||
background-color: $color1;
|
||||
background-image: -webkit-linear-gradient(bottom, lighten($color1, 10%), $color1);
|
||||
background-image: -moz-linear-gradient(bottom, lighten($color1, 10%), $color1);
|
||||
background-image: -ms-linear-gradient(bottom, lighten($color1, 10%), $color1);
|
||||
background-image: linear-gradient(bottom, lighten($color1, 10%), $color1);
|
||||
} @else {
|
||||
background-color: $color1;
|
||||
background-image: -webkit-linear-gradient(bottom, $color2, $color1);
|
||||
background-image: -moz-linear-gradient(bottom, $color2, $color1);
|
||||
background-image: -ms-linear-gradient(bottom, $color2, $color1);
|
||||
background-image: linear-gradient(to top, $color2, $color1);
|
||||
}
|
||||
|
||||
}
|
@ -1,34 +1,6 @@
|
||||
/*
|
||||
* Variables used in Ghost-UI
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Misc Default Values
|
||||
* Pixel Densities
|
||||
* Colours
|
||||
* Typography
|
||||
*/
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Misc Default Values
|
||||
========================================================================== */
|
||||
|
||||
$rounded: 2px;
|
||||
$shadow: rgba(0,0,0,0.05) 0 1px 5px;
|
||||
$default-transition-duration: 0.3s;
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Pixel Densities
|
||||
========================================================================== */
|
||||
|
||||
$at2x: 2 device-pixel-ratio;
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Colours
|
||||
========================================================================== */
|
||||
//
|
||||
// Colours
|
||||
// --------------------------------------------------
|
||||
|
||||
$darkgrey: #242628;
|
||||
$grey: #35393b;
|
||||
@ -56,11 +28,15 @@ $list-colours:
|
||||
('green' $green);
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Typography
|
||||
========================================================================== */
|
||||
//
|
||||
// Styles
|
||||
// --------------------------------------------------
|
||||
|
||||
$rounded: 2px;
|
||||
$shadow: rgba(0,0,0,0.05) 0 1px 5px;
|
||||
$default-transition-duration: 0.3s;
|
||||
|
||||
$font-family: 'Open Sans', sans-serif;
|
||||
$font-family-sans: $font-family;
|
||||
$font-family-serif: serif;
|
||||
$font-family-mono: Inconsolata, monospace;
|
||||
$font-family-mono: Inconsolata, monospace;
|
||||
|
||||
$at2x: 2 device-pixel-ratio;
|
@ -1,166 +0,0 @@
|
||||
/*
|
||||
* About Ghost page
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Ghost Logo
|
||||
* Version, environment & support
|
||||
* Contributors
|
||||
* Credits & Copyright
|
||||
*/
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Ghost Logo
|
||||
========================================================================== */
|
||||
|
||||
.settings-about {
|
||||
|
||||
.ghost_logo {
|
||||
@include icon($i-ghost, 1.28rem, $midgrey) {
|
||||
position: relative;
|
||||
top: -6px;
|
||||
};
|
||||
@include icon-after($i-ghost-logo, 2.5rem, $darkgrey);
|
||||
}
|
||||
|
||||
p {
|
||||
color: $midgrey;
|
||||
}
|
||||
|
||||
} // .settings-about
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Version, environment & support
|
||||
========================================================================== */
|
||||
|
||||
.about-ghost-intro {
|
||||
h1 {
|
||||
margin-top: -6px;
|
||||
margin-bottom: -21px;
|
||||
.version {
|
||||
font-weight: 300;
|
||||
font-size: 1.3rem;
|
||||
position: relative;
|
||||
top: -3px;
|
||||
}
|
||||
} // h1
|
||||
|
||||
@media (max-width: 550px) {
|
||||
padding-top: 40px;
|
||||
}
|
||||
|
||||
} // .about-ghost-intro
|
||||
|
||||
.about-environment-help {
|
||||
margin-top: 35px;
|
||||
}
|
||||
.about-environment {
|
||||
p {
|
||||
margin: 0;
|
||||
line-height: 1.7;
|
||||
}
|
||||
}
|
||||
.about-help {
|
||||
padding-top: 6px;
|
||||
@media (max-width: 500px) {
|
||||
padding-top: 16px;
|
||||
}
|
||||
.button-dark {
|
||||
width: 100%;
|
||||
display: block;
|
||||
font-size: 0.85rem;
|
||||
padding-top: 8px;
|
||||
padding-bottom: 8px;
|
||||
min-height: 32px;
|
||||
&:nth-child(1) {
|
||||
margin-bottom: 11px;
|
||||
}
|
||||
} // .button-dark
|
||||
} // .about-help
|
||||
|
||||
@media (min-width: 501px) {
|
||||
.about-environment-help {
|
||||
max-width: 430px;
|
||||
}
|
||||
.about-environment {
|
||||
float: left;
|
||||
width: calc(100% - 196px);
|
||||
}
|
||||
.about-help {
|
||||
float: right;
|
||||
width: 176px;
|
||||
}
|
||||
} // @media (min-width: 501px)
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Contributors
|
||||
========================================================================== */
|
||||
|
||||
.top-contributors {
|
||||
padding-left: 0;
|
||||
max-width: 650px;
|
||||
li {
|
||||
float: left;
|
||||
list-style: none;
|
||||
width: 10%;
|
||||
a {
|
||||
display: block;
|
||||
@media (min-width: 601px) {
|
||||
margin-right: 9px;
|
||||
margin-bottom: 9px;
|
||||
}
|
||||
@media (max-width: 600px) {
|
||||
margin-right: 6px;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
img {
|
||||
width: 100%;
|
||||
display: block;
|
||||
border-radius: 100%;
|
||||
}
|
||||
} // a
|
||||
} // li
|
||||
} // .top-contributors
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Credits & Copyright
|
||||
========================================================================== */
|
||||
|
||||
.about-credits {
|
||||
margin-top: 48px;
|
||||
h1 {
|
||||
font-size: 1.85rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
.about-contributors-info {
|
||||
margin-right: -0.9rem;
|
||||
font-size: 1.2rem;
|
||||
max-width: 620px;
|
||||
}
|
||||
|
||||
.button-save.large.about-get-involved {
|
||||
margin-top: -0.1rem;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.about-copyright {
|
||||
margin-top: 4.9rem;
|
||||
a {
|
||||
&:link,
|
||||
&:visited {
|
||||
color: inherit;
|
||||
}
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active {
|
||||
text-decoration: none;
|
||||
color: $blue;
|
||||
}
|
||||
}
|
||||
} // .about-copyright
|
@ -1,333 +0,0 @@
|
||||
/*
|
||||
* Auth layout for login, signup & reset password
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Globals
|
||||
* Login
|
||||
* Signup and Reset
|
||||
* Forgotten Password
|
||||
*/
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Globals
|
||||
========================================================================== */
|
||||
|
||||
.ghost-login,
|
||||
.ghost-signup,
|
||||
.ghost-forgotten,
|
||||
.ghost-reset {
|
||||
color: $midgrey;
|
||||
background: $darkgrey;
|
||||
|
||||
@media (max-width: 400px) {
|
||||
background: $darkgrey;
|
||||
}
|
||||
|
||||
main {
|
||||
top: 15px;
|
||||
}
|
||||
|
||||
input {
|
||||
line-height: 1.4em;
|
||||
font-size: 1.1em;
|
||||
font-weight: 200;
|
||||
border: none;
|
||||
color: #fff;
|
||||
background: transparent;
|
||||
box-shadow: none;
|
||||
margin: 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
input:-webkit-autofill {
|
||||
-webkit-box-shadow: 0 0 0px 1000px $lightgrey inset !important;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.login-box,
|
||||
.signup-box,
|
||||
.forgotten-box,
|
||||
.reset-box {
|
||||
max-width: 530px;
|
||||
height: 90%;
|
||||
margin: 0 auto;
|
||||
padding: 0;
|
||||
display: table;
|
||||
|
||||
@media (max-width: 630px) {
|
||||
max-width: 264px;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* =============================================================================
|
||||
Login
|
||||
============================================================================= */
|
||||
|
||||
.login-form {
|
||||
max-width: 530px;
|
||||
color: lighten($midgrey, 15%);
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
|
||||
@media (max-width: 630px) {
|
||||
max-width: 264px;
|
||||
}
|
||||
|
||||
div { // Yes. Really.
|
||||
// TODO: This ^ can be improved 1000%
|
||||
position: relative;
|
||||
margin: 0 0 5px 0;
|
||||
background: lighten($darkgrey, 10%);
|
||||
float: left;
|
||||
|
||||
@media (max-width: 630px) {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
}
|
||||
|
||||
// TODO: make more specific
|
||||
input {
|
||||
display: inline-block;
|
||||
clear: both;
|
||||
padding: 8px 0 8px 8px;
|
||||
width: 216px;
|
||||
@include transition(background ease 0.25s);
|
||||
|
||||
@media (max-width: 630px) {
|
||||
width: 264px;
|
||||
@include transition(none);
|
||||
}
|
||||
|
||||
&:focus {
|
||||
border: none;
|
||||
background: lighten($darkgrey, 15%);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.email-wrap {
|
||||
position: relative;
|
||||
@include icon($i-mail, 12px) {
|
||||
position: absolute;
|
||||
bottom: 11px;
|
||||
left: 8px;
|
||||
z-index: 100;
|
||||
}
|
||||
margin-right: 3px;
|
||||
@media (max-width: 630px) {
|
||||
margin-right: 0;
|
||||
|
||||
}
|
||||
.email {
|
||||
padding-left: 28px;
|
||||
border-radius: 2px 0 0 2px;
|
||||
}
|
||||
}
|
||||
|
||||
.password-wrap {
|
||||
position:relative;
|
||||
@include icon($i-lock, 10px) {
|
||||
position: absolute;
|
||||
bottom: 12px;
|
||||
left: 11px;
|
||||
z-index: 100;
|
||||
}
|
||||
.password {
|
||||
padding-left: 28px;
|
||||
border-radius: 0 2px 2px 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 631px) {
|
||||
.email-wrap,
|
||||
.email-wrap .email {
|
||||
border-radius: 2px 0 0 2px;
|
||||
}
|
||||
.password-wrap,
|
||||
.password-wrap .password {
|
||||
border-radius: 0 2px 2px 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 630px) {
|
||||
.email-wrap,
|
||||
.email-wrap .email,
|
||||
.password-wrap,
|
||||
.password-wrap .password {
|
||||
border-radius: 2px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
button {
|
||||
width: 85px;
|
||||
height: 36px;
|
||||
margin:0 0 0 10px;
|
||||
padding: 0.5em 1.37em;
|
||||
min-height: 30px;
|
||||
min-width: 80px;
|
||||
box-shadow: rgba(255,255,255,0.15) 0 1px 0 inset;
|
||||
|
||||
@media (max-width: 630px) {
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
}
|
||||
|
||||
.meta {
|
||||
clear: both;
|
||||
color: $midgrey;
|
||||
}
|
||||
|
||||
a {
|
||||
color: darken($midgrey, 10%);
|
||||
font-size: 0.9em;
|
||||
|
||||
&:hover {
|
||||
color: lighten($midgrey, 5%);
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
|
||||
} // .login-form
|
||||
|
||||
|
||||
/* =============================================================================
|
||||
Signup and Reset
|
||||
============================================================================= */
|
||||
|
||||
.signup-form,
|
||||
.reset-form {
|
||||
max-width: 280px;
|
||||
color: lighten($midgrey, 15%);
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
|
||||
@media (max-width: 630px) {
|
||||
width: 264px;
|
||||
}
|
||||
|
||||
div { // Yes. Really.
|
||||
// TODO: Same here as above
|
||||
position: relative;
|
||||
margin: 0 0 1em 0;
|
||||
background: lighten($darkgrey, 10%);
|
||||
float: left;
|
||||
display: table;
|
||||
}
|
||||
|
||||
input {
|
||||
width: 280px;
|
||||
padding: 8px 10px;
|
||||
@media (min-width: 631px) {
|
||||
@include transition(background ease 0.25s);
|
||||
}
|
||||
|
||||
@media (max-width: 630px) {
|
||||
width: 264px;
|
||||
}
|
||||
|
||||
&:focus {
|
||||
border: none;
|
||||
background: lighten($darkgrey, 15%);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.name-wrap {
|
||||
position: relative;
|
||||
border-radius: 2px;
|
||||
|
||||
.name {
|
||||
border-radius: 2px;
|
||||
}
|
||||
}
|
||||
|
||||
.email-wrap {
|
||||
position: relative;
|
||||
border-radius: 2px;
|
||||
|
||||
.email {
|
||||
border-radius: 2px;
|
||||
}
|
||||
}
|
||||
|
||||
.password-wrap {
|
||||
position: relative;
|
||||
border-radius: 2px;
|
||||
|
||||
.password {
|
||||
border-radius: 2px;
|
||||
}
|
||||
}
|
||||
|
||||
button {
|
||||
width: 100%;
|
||||
height: 36px;
|
||||
margin: 0 0 1em 0;
|
||||
padding: 0.5em 1.37em;
|
||||
min-height: 30px;
|
||||
min-width: 80px;
|
||||
box-shadow: rgba(255,255,255,0.15) 0 1px 0 inset;
|
||||
}
|
||||
|
||||
} // .signup-form, .reset-form
|
||||
|
||||
|
||||
/* =============================================================================
|
||||
Forgotten Password
|
||||
============================================================================= */
|
||||
|
||||
.forgotten-form {
|
||||
max-width: 280px;
|
||||
color: lighten($midgrey, 15%);
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
|
||||
div { // Yes. Really.
|
||||
// TODO: Again, can make this better.
|
||||
position: relative;
|
||||
margin: 0 0 1em 0;
|
||||
background: lighten($darkgrey, 10%);
|
||||
float: left;
|
||||
}
|
||||
|
||||
input {
|
||||
padding: 8px 10px;
|
||||
@include transition(background ease 0.25s);
|
||||
|
||||
&:focus {
|
||||
border: none;
|
||||
background: lighten($darkgrey, 15%);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.email-wrap {
|
||||
width: 100%;
|
||||
position:relative;
|
||||
border-radius: 2px;
|
||||
|
||||
.email {
|
||||
border-radius: 2px;
|
||||
}
|
||||
}
|
||||
|
||||
button {
|
||||
width: 100%;
|
||||
height: 36px;
|
||||
margin: 0 0 1em 0;
|
||||
padding: 0.5em 1.37em;
|
||||
min-height: 30px;
|
||||
min-width: 80px;
|
||||
box-shadow: rgba(255,255,255,0.15) 0 1px 0 inset;
|
||||
}
|
||||
|
||||
} // .forgotten-form
|
@ -1,308 +0,0 @@
|
||||
/*
|
||||
* Content screen styles
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Content Management
|
||||
* Preview
|
||||
*/
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Content Management
|
||||
========================================================================== */
|
||||
|
||||
.manage {
|
||||
.content-view-container {
|
||||
position: relative;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
|
||||
@media (max-width: 800px) {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
} // .content-view-container
|
||||
.content-list {
|
||||
width: 35%;
|
||||
padding: 15px;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
top: 0;
|
||||
left: 0;
|
||||
border-right: $lightbrown 2px solid;
|
||||
background: #fff;
|
||||
box-shadow: $shadow;
|
||||
|
||||
@media (max-width: 800px) {
|
||||
width: auto;
|
||||
right: 0;
|
||||
z-index: 500;
|
||||
border: none;
|
||||
}
|
||||
|
||||
|
||||
.content-filter {
|
||||
position: relative;
|
||||
z-index: 300;
|
||||
> a {
|
||||
padding: 5px;
|
||||
margin-left: -5px;
|
||||
}
|
||||
|
||||
.menu-drop {
|
||||
display: block;
|
||||
}
|
||||
} // .content-filter
|
||||
|
||||
.button-add {
|
||||
@include icon($i-add);
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 15px;
|
||||
z-index: 700;
|
||||
color: #fff;
|
||||
padding: 3px 4px 3px 5px;
|
||||
min-height: 0;
|
||||
} // .button-add
|
||||
|
||||
|
||||
.content-list-content {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
overflow: auto;
|
||||
padding-top: 40px;
|
||||
} // .content-list-content
|
||||
|
||||
.entry-title {
|
||||
font-size: 1.4em;
|
||||
line-height: 1.1em;
|
||||
margin-bottom: 0.5em;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.views {
|
||||
@include icon($i-stats, 10px, $brown);
|
||||
float: right;
|
||||
text-align: right;
|
||||
margin-left: 15px;
|
||||
@media (max-width: 800px) {
|
||||
float: none;
|
||||
}
|
||||
}
|
||||
|
||||
.featured .status {
|
||||
@include icon($i-featured, 11px) {
|
||||
margin-right: 10px;
|
||||
vertical-align: 7%;
|
||||
};
|
||||
}
|
||||
|
||||
.status .draft {
|
||||
color: $red;
|
||||
}
|
||||
.status .scheduled {
|
||||
color: $orange;
|
||||
}
|
||||
|
||||
|
||||
ol {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border-top: $lightbrown 1px solid;
|
||||
|
||||
li {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border-bottom: $lightbrown 1px solid;
|
||||
position: relative;
|
||||
|
||||
a {
|
||||
|
||||
display: block;
|
||||
padding: 20px 15px;
|
||||
color: $brown;
|
||||
@media (max-width: 400px) {
|
||||
padding: 15px;
|
||||
}
|
||||
@media (max-width: 800px) {
|
||||
padding-right: 40px;
|
||||
}
|
||||
|
||||
@include icon-after($i-chevron) {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
margin-top: -6px;
|
||||
right: 15px;
|
||||
}
|
||||
@media (min-width: 801px) {
|
||||
&:after {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
&:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
} // a
|
||||
|
||||
} // li
|
||||
|
||||
li.active {
|
||||
@media (min-width: 801px) {
|
||||
// only apply active styles on larger devices
|
||||
|
||||
border-bottom: lighten($midgrey, 40%) 1px solid;
|
||||
background: lighten($midgrey, 45%);
|
||||
box-shadow:
|
||||
lighten($midgrey, 40%) 0 -1px 0, // top border
|
||||
rgba(0,0,0,0.06) 7px 0 0 inset, // big left border
|
||||
lighten($midgrey, 40%) 1px 0 0 inset; // small left border
|
||||
|
||||
a:hover {
|
||||
box-shadow: rgba(0,0,0,0.1) 7px 0 0 inset;
|
||||
@include transition(all 0.4s ease);
|
||||
}
|
||||
|
||||
.entry-title {
|
||||
font-weight: bold;
|
||||
}
|
||||
.entry-meta {
|
||||
color: $darkgrey;
|
||||
}
|
||||
|
||||
.views {
|
||||
@include icon($i-stats, 10px, $darkgrey);
|
||||
color: $darkgrey;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
}
|
||||
} // li.active
|
||||
} // ol
|
||||
|
||||
} // .content-list
|
||||
} // .manage
|
||||
|
||||
|
||||
/* =============================================================================
|
||||
Preview
|
||||
============================================================================= */
|
||||
|
||||
.manage {
|
||||
|
||||
.content-preview {
|
||||
width: 65%;
|
||||
padding: 15px;
|
||||
position: absolute;
|
||||
bottom:0;
|
||||
top:0;
|
||||
right:0;
|
||||
border-left:$lightbrown 2px solid;
|
||||
background: #fff;
|
||||
box-shadow: $shadow;
|
||||
@media (max-width: 800px) {
|
||||
width: auto;
|
||||
left: 100%;
|
||||
right: -100%;
|
||||
margin-left: 15px;
|
||||
border:none;
|
||||
}
|
||||
|
||||
.unfeatured {
|
||||
@include icon($i-unfeatured, 14px);
|
||||
vertical-align: -6%;
|
||||
margin: 0 7px 0 -5px;
|
||||
padding: 5px;
|
||||
}
|
||||
.featured {
|
||||
@include icon($i-featured, 14px);
|
||||
vertical-align: -6%;
|
||||
margin: 0 7px 0 -5px;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.normal {
|
||||
text-transform: none;
|
||||
margin:0 3px;
|
||||
}
|
||||
|
||||
.content-preview-content {
|
||||
position: absolute;
|
||||
top:0;
|
||||
right:0;
|
||||
bottom:0;
|
||||
left:0;
|
||||
overflow: auto;
|
||||
padding: 80px 40px;
|
||||
word-break: break-word;
|
||||
hyphens: auto;
|
||||
|
||||
.wrapper {
|
||||
max-width: 700px;
|
||||
margin:0 auto;
|
||||
}
|
||||
} // .content-preview-content
|
||||
|
||||
.post-controls {
|
||||
float:right;
|
||||
position: relative;
|
||||
top: 3px;
|
||||
}
|
||||
|
||||
.post-settings-menu {
|
||||
position: absolute;
|
||||
top: 35px;
|
||||
right: -3px;
|
||||
}
|
||||
|
||||
.post-edit {
|
||||
@include icon($i-edit, 14px);
|
||||
margin-right: 2px;
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
img {
|
||||
width:100%;
|
||||
height:auto;
|
||||
}
|
||||
|
||||
} // .preview-post
|
||||
|
||||
.no-posts-box {
|
||||
position: relative;
|
||||
height: 90%;
|
||||
margin: 0px auto;
|
||||
padding: 0px;
|
||||
display: table;
|
||||
z-index: 600;
|
||||
@media (max-width: 800px) {
|
||||
position: fixed;
|
||||
top: 45%;
|
||||
left: 50%;
|
||||
}
|
||||
|
||||
.no-posts {
|
||||
vertical-align: middle;
|
||||
display: table-cell;
|
||||
text-align: center;
|
||||
@media (max-width: 800px) {
|
||||
display: block;
|
||||
position: relative;
|
||||
left: -50%;
|
||||
}
|
||||
|
||||
h3 {
|
||||
color: $brown;
|
||||
font-weight: 200;
|
||||
font-size: 2em;
|
||||
}
|
||||
} // ,no-posts
|
||||
|
||||
} // .no-posts-box
|
||||
|
||||
} // .manage
|
@ -1,928 +0,0 @@
|
||||
/*
|
||||
* Editor screen styles
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Editor
|
||||
* Post Preview Content
|
||||
* Full Screen Mode
|
||||
* Publish Bar
|
||||
* Markdown Help Modal
|
||||
* CodeMirror
|
||||
*/
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Editor
|
||||
========================================================================== */
|
||||
|
||||
// The main post title
|
||||
.entry-container .entry-title {
|
||||
@extend .box;
|
||||
height: 57px;
|
||||
padding: 2px 15px;
|
||||
margin-bottom: 5px;
|
||||
position: relative;
|
||||
|
||||
@media (max-width: 400px) {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
input {
|
||||
border: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-size: 3em;
|
||||
font-weight: bold;
|
||||
letter-spacing: -1px;
|
||||
width: 100%;
|
||||
background: transparent;
|
||||
&:focus {
|
||||
outline: 0;
|
||||
}
|
||||
}
|
||||
} // .entry-title
|
||||
|
||||
.editor {
|
||||
|
||||
.notifications {
|
||||
@media (min-width: 401px) {
|
||||
bottom: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
.entry-container {
|
||||
position: relative;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
// The two content panel wrappers, positioned left/right
|
||||
.entry-markdown { left: 0; border-right: $lightbrown 2px solid; }
|
||||
.entry-preview { right: 0; border-left: $lightbrown 2px solid; }
|
||||
|
||||
// The visual styles for both panels
|
||||
.entry-markdown,
|
||||
.entry-preview {
|
||||
width: 50%;
|
||||
padding: 15px;
|
||||
position: absolute;
|
||||
bottom: 40px; // height of the publish bar
|
||||
top: 61px; // height of the post title + margin
|
||||
background: #fff;
|
||||
box-shadow: $shadow;
|
||||
|
||||
@media (max-width: 400px) {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
// Convert all content areas to small boxes
|
||||
@media (max-width: 1000px) {
|
||||
top: 109px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
width: 100%;
|
||||
border: none;
|
||||
z-index: 100;
|
||||
min-height: 380px;
|
||||
.markdown, .entry-preview-content {
|
||||
height: 50px;
|
||||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
.floatingheader {
|
||||
|
||||
// Turn headers into tabs which act as links
|
||||
// both headers set to grey/inactive colour
|
||||
@media (max-width: 1000px) {
|
||||
cursor: pointer;
|
||||
width: 50%;
|
||||
border-right: $lightbrown 2px solid;
|
||||
color: #fff;
|
||||
font-weight: normal;
|
||||
background: $brown;
|
||||
position: absolute;
|
||||
top: -40px;
|
||||
left: 0;
|
||||
box-shadow: rgba(0,0,0,0.1) 0 -2px 3px inset;
|
||||
|
||||
a {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
color: $brown;
|
||||
}
|
||||
|
||||
.entry-word-count {
|
||||
float: right;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media (max-width: 1000px) {
|
||||
&:not(.active) {
|
||||
.markdown-help {
|
||||
&:hover:before {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Give the tab with the .active class the highest z-index
|
||||
&.active {
|
||||
z-index: 200;
|
||||
}
|
||||
|
||||
// Restore the normal height of the .active tab (inactive tab stays small, hidden behind)
|
||||
&.active .markdown,
|
||||
&.active .entry-preview-content {
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
// Restore the white bg of the currently .active tab, remove hand cursor from currently active tab
|
||||
&.active header {
|
||||
@media (max-width: 1000px) {
|
||||
cursor: auto;
|
||||
color: $brown;
|
||||
background: #fff;
|
||||
box-shadow: none;
|
||||
a {
|
||||
color: $brown;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Hide markdown icon + wordcount when we hit mobile
|
||||
@media (max-width: 400px) {
|
||||
.markdown-help,
|
||||
.entry-word-count {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
} // .entry-markdown, .entry-preview
|
||||
|
||||
.entry-markdown-content {
|
||||
|
||||
textarea {
|
||||
border: 0;
|
||||
width: 100%;
|
||||
min-height: auto;
|
||||
height: 100%;
|
||||
max-width: 100%;
|
||||
margin: 0;
|
||||
padding: 10px 20px 50px 20px;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
|
||||
@media (max-width: 600px) {
|
||||
padding: 10px;
|
||||
}
|
||||
@media (min-width: 601px) and (max-width: 1000px) {
|
||||
padding: 15px;
|
||||
}
|
||||
@media (min-width: 1001px) {
|
||||
top: 40px;
|
||||
}
|
||||
@media (max-height: 560px) {
|
||||
height: calc(100% - 40px);
|
||||
}
|
||||
|
||||
&:focus {
|
||||
outline: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.CodeMirror {
|
||||
height: auto;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
font-family: $font-family-mono;
|
||||
font-size: 1.4em;
|
||||
line-height: 1.3em;
|
||||
color: lighten($darkgrey, 10%);
|
||||
|
||||
.CodeMirror-focused,
|
||||
.CodeMirror-selected {
|
||||
color: $darkgrey;
|
||||
background: lighten($blue, 20%);
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
::selection {
|
||||
color: $darkgrey;
|
||||
background: lighten($blue, 20%);
|
||||
text-shadow: none;
|
||||
}
|
||||
}
|
||||
|
||||
.CodeMirror-lines {
|
||||
padding: 65px 0 40px 0; /* Vertical padding around content */
|
||||
@media (max-width: 1000px) {padding-top: 25px;}
|
||||
@media (max-width: 400px) {padding: 15px 0;}
|
||||
}
|
||||
.CodeMirror pre {
|
||||
padding: 0 40px; /* Horizontal padding of content */
|
||||
@media (max-width: 400px) {padding: 0 15px;}
|
||||
}
|
||||
|
||||
.cm-header {
|
||||
color: #000;
|
||||
font-size: 1.4em;
|
||||
line-height: 1.4em;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.cm-variable-2,
|
||||
.cm-variable-3,
|
||||
.cm-keyword {
|
||||
color: lighten($darkgrey, 10%);
|
||||
}
|
||||
|
||||
.cm-string,
|
||||
.cm-strong,
|
||||
.cm-link,
|
||||
.cm-comment,
|
||||
.cm-quote,
|
||||
.cm-number,
|
||||
.cm-atom,
|
||||
.cm-tag {
|
||||
color: #000;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
} // .entry-markdown-content
|
||||
|
||||
.entry-preview {
|
||||
// Align the tab of entry-preview on the right
|
||||
.floatingheader {
|
||||
@media (max-width: 1000px) {
|
||||
right: 0;
|
||||
left: auto;
|
||||
border-right: none;
|
||||
border-left: $lightbrown 2px solid;
|
||||
}
|
||||
}
|
||||
|
||||
.entry-preview-content {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
padding: 60px 40px 40px 40px;
|
||||
overflow: auto;
|
||||
word-break: break-word;
|
||||
hyphens: auto;
|
||||
@include user-select(none);
|
||||
cursor: default;
|
||||
|
||||
// Tweak padding for smaller screens
|
||||
@media (max-width: 1000px) {
|
||||
padding-top: 20px;
|
||||
}
|
||||
@media (max-width: 400px) {
|
||||
padding: 15px;
|
||||
}
|
||||
}
|
||||
} // .entry-preview
|
||||
|
||||
// Special case, when scrolling, add shadows to content headers.
|
||||
.scrolling {
|
||||
|
||||
.floatingheader {
|
||||
@media (max-width: 1000px) {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
&::before,
|
||||
&::after {
|
||||
@media (max-width: 1000px) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
.CodeMirror-scroll,
|
||||
.entry-preview-content {
|
||||
@media (max-width: 1000px) {
|
||||
box-shadow: 0 5px 5px rgba(0,0,0,0.05) inset;
|
||||
}
|
||||
}
|
||||
} // .scrolling
|
||||
|
||||
} // .editor
|
||||
|
||||
.markdown-help {
|
||||
position: relative;
|
||||
top: -5px;
|
||||
right: -5px;
|
||||
@include icon($i-question, '', lighten($brown, 15%));
|
||||
float: right;
|
||||
padding: 5px;
|
||||
|
||||
&:hover {
|
||||
@include icon($i-question, '', $brown);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* =============================================================================
|
||||
Post Preview Content
|
||||
============================================================================= */
|
||||
|
||||
// The styles for the actual content inside the preview
|
||||
// TODO: These should just be defaults, overridden by editor.hbs in theme dir
|
||||
.entry-preview-content,
|
||||
.content-preview-content {
|
||||
font-size: 1.4em;
|
||||
line-height: 1.5em;
|
||||
|
||||
a {
|
||||
color: $blue;
|
||||
text-decoration: underline;
|
||||
}
|
||||
p {
|
||||
margin: 1.2em 0 1.6em;
|
||||
&:first-of-type {
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
h1 {
|
||||
font-size: 3em;
|
||||
}
|
||||
h2 {
|
||||
font-size: 2.2em;
|
||||
}
|
||||
h3 {
|
||||
font-size: 1.8em;
|
||||
}
|
||||
.btn {
|
||||
text-decoration: none;
|
||||
color: $grey;
|
||||
}
|
||||
.img-placeholder {
|
||||
border: 5px dashed $grey;
|
||||
height: 100px;
|
||||
position: relative;
|
||||
span {
|
||||
display: block;
|
||||
height: 30px;
|
||||
position: absolute;
|
||||
margin-top: -15px;
|
||||
top: 50%;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
a {
|
||||
&.image-edit {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
}
|
||||
img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* =============================================================================
|
||||
Full Screen Mode
|
||||
============================================================================= */
|
||||
|
||||
body.zen {
|
||||
background: lighten($lightbrown, 3%);
|
||||
.usermenu {
|
||||
display: none;
|
||||
}
|
||||
#global-header,
|
||||
#publish-bar {
|
||||
opacity: 0;
|
||||
height: 0;
|
||||
overflow: hidden;
|
||||
@include transition(all 0.5s ease-out);
|
||||
}
|
||||
|
||||
main {
|
||||
top: 15px;
|
||||
@include transition(all 0.5s ease-out);
|
||||
}
|
||||
.entry-markdown,
|
||||
.entry-preview {
|
||||
bottom: 0;
|
||||
@include transition(all 0.5s ease-out);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* =============================================================================
|
||||
Publish Bar
|
||||
============================================================================= */
|
||||
|
||||
#publish-bar {
|
||||
height: 40px;
|
||||
padding: 0;
|
||||
color: $midgrey;
|
||||
background: darken($darkgrey, 4%);
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 900;
|
||||
box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
|
||||
@include transform(translateZ(0));
|
||||
|
||||
@media (max-width: 1000px) {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.post-settings {
|
||||
&:hover,
|
||||
&.active {
|
||||
color: $lightgrey;
|
||||
}
|
||||
}
|
||||
|
||||
.post-settings-menu {
|
||||
position: absolute;
|
||||
bottom: 44px;
|
||||
right: -3px;
|
||||
}
|
||||
|
||||
.button-save,
|
||||
.button-delete {
|
||||
min-height: 30px;
|
||||
height: 30px;
|
||||
line-height: 12px;
|
||||
padding: 0 10px;
|
||||
margin-top: 5px;
|
||||
border-top: rgba(255,255,255,0.4) 1px solid;
|
||||
}
|
||||
|
||||
.options {
|
||||
width: 30px;
|
||||
min-height: 30px;
|
||||
height: 30px;
|
||||
margin-top: 5px;
|
||||
border-top: rgba(255,255,255,0.4) 1px solid;
|
||||
}
|
||||
|
||||
.splitbutton-save,
|
||||
.splitbutton-delete{
|
||||
.button-save,
|
||||
.button-delete{
|
||||
@include transition(width 0.25s ease, background-color 0.3s linear);
|
||||
}
|
||||
|
||||
.editor-options{
|
||||
@extend .menu;
|
||||
@extend .menu-right;
|
||||
bottom: 140%;
|
||||
right: -3%;
|
||||
|
||||
a {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.extended-tags { // When the tag bar is exapanded
|
||||
position: static;
|
||||
min-height: 100%;
|
||||
|
||||
#entry-tags {
|
||||
&:after {
|
||||
right: 10px;
|
||||
}
|
||||
}
|
||||
.tags {
|
||||
width: 281px;
|
||||
}
|
||||
|
||||
.tag-label,
|
||||
.tag-label.touch {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.tag-input {
|
||||
width: 100%;
|
||||
margin-top: 5px;
|
||||
padding-top: 5px;
|
||||
padding-left: 10px;
|
||||
border-top: 1px solid $darkgrey;
|
||||
|
||||
}
|
||||
.right {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
#entry-tags {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
text-transform: none;
|
||||
padding: 10px 0 0 0;
|
||||
|
||||
&:after {
|
||||
content: "";
|
||||
position: fixed;
|
||||
top: 10px;
|
||||
right: 220px;
|
||||
width: 20px;
|
||||
height: 26px;
|
||||
@include linear-gradient(left, rgba(26, 28, 29, 0.00), rgba(26, 28, 29, 1.00));
|
||||
z-index: 9999;
|
||||
pointer-events: none;
|
||||
|
||||
@media (max-width: 400px) {
|
||||
right: 200px;
|
||||
}
|
||||
}
|
||||
|
||||
.tags {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
width: auto;
|
||||
max-width: 80%;
|
||||
max-width: calc(100% - 250px);
|
||||
height: 22px;
|
||||
padding-left: 5px;
|
||||
padding-bottom: 20px;
|
||||
overflow-x: auto;
|
||||
overflow-y: hidden;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
white-space: nowrap;
|
||||
@include transition(width 0.2s linear);
|
||||
|
||||
@media (max-width: 400px) {
|
||||
display: block;
|
||||
max-width: calc(100% - 230px);
|
||||
padding-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.tag-label {
|
||||
display: block;
|
||||
float: left;
|
||||
@include icon($i-tag);
|
||||
padding: 1px 8px 0 8px;
|
||||
@include transition;
|
||||
|
||||
&:hover {
|
||||
cursor: pointer;
|
||||
color: $lightgrey;
|
||||
}
|
||||
|
||||
&.touch {
|
||||
color: inherit;
|
||||
}
|
||||
}
|
||||
|
||||
input[type="text"].tag-input {
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
color: $lightgrey;
|
||||
font-weight: 300;
|
||||
background: transparent;
|
||||
border: none;
|
||||
|
||||
width: 150px;
|
||||
margin-top: -8px;
|
||||
line-height: 1;
|
||||
padding: 9px;
|
||||
|
||||
@media (max-width: 400px) {
|
||||
position: absolute;
|
||||
top: 11px;
|
||||
right: 170px;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
&:focus {
|
||||
outline: none;
|
||||
}
|
||||
}
|
||||
|
||||
.tag {
|
||||
@include icon-after($i-x, 8px, $darkgrey) {
|
||||
margin-left: 4px;
|
||||
vertical-align: 10%;
|
||||
text-shadow: rgba(255,255,255,0.15) 0 1px 0;
|
||||
@include transition;
|
||||
}
|
||||
display: inline;
|
||||
margin-right: 2px;
|
||||
padding: 0 5px;
|
||||
color: $lightgrey;
|
||||
white-space: nowrap;
|
||||
background: lighten($grey, 15%);
|
||||
border-radius: $rounded;
|
||||
box-shadow: rgba(255,255,255,0.2) 0 1px 0 inset, #000 0 1px 3px;
|
||||
|
||||
@include user-select(none);
|
||||
|
||||
&:hover {
|
||||
cursor: pointer;
|
||||
@include icon-after($i-x, 8px, $lightgrey) {
|
||||
margin-left: 4px;
|
||||
vertical-align: 10%;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.suggestions {
|
||||
@extend .menu;
|
||||
bottom: 100%;
|
||||
|
||||
li.selected{
|
||||
background: $blue;
|
||||
box-shadow: rgba(255,255,255,0.2) 0 1px 0 inset, rgba(0,0,0,0.5) 0 1px 5px;
|
||||
}
|
||||
|
||||
li a {
|
||||
padding-left: 25px;
|
||||
}
|
||||
|
||||
mark{
|
||||
background: none;
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
#entry-controls {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
padding: 0;
|
||||
z-index: 9000;
|
||||
|
||||
&.unsaved {
|
||||
.post-settings-menu {
|
||||
padding-bottom: 0;
|
||||
|
||||
.post-setting:nth-child(3) td {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.delete {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#entry-actions {
|
||||
margin-right: 6px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#entry-actions-menu {
|
||||
position: absolute;
|
||||
bottom: 50px;
|
||||
right: -5px;
|
||||
}
|
||||
|
||||
/* =============================================================================
|
||||
Markdown Help Modal
|
||||
============================================================================= */
|
||||
|
||||
.markdown-help-container{
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
|
||||
.modal-markdown-help-table {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
|
||||
/* =============================================================================
|
||||
CodeMirror
|
||||
============================================================================= */
|
||||
|
||||
.CodeMirror {
|
||||
/* Set height, width, borders, and global font properties here */
|
||||
font-family: monospace;
|
||||
height: 300px;
|
||||
}
|
||||
|
||||
.CodeMirror-scroll {
|
||||
/* Set scrolling behaviour here */
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/* PADDING */
|
||||
|
||||
.CodeMirror-lines {
|
||||
padding: 4px 0; /* Vertical padding around content */
|
||||
}
|
||||
|
||||
.CodeMirror pre {
|
||||
padding: 0 4px; /* Horizontal padding of content */
|
||||
}
|
||||
|
||||
.CodeMirror-scrollbar-filler {
|
||||
background-color: white; /* The little square between H and V scrollbars */
|
||||
}
|
||||
|
||||
/* GUTTER */
|
||||
|
||||
.CodeMirror-gutters {
|
||||
border-right: 1px solid #ddd;
|
||||
background-color: #f7f7f7;
|
||||
}
|
||||
|
||||
/* CURSOR */
|
||||
|
||||
.CodeMirror div.CodeMirror-cursor {
|
||||
border-left: 1px solid black;
|
||||
z-index: 3;
|
||||
}
|
||||
/* Shown when moving in bi-directional text */
|
||||
.CodeMirror div.CodeMirror-secondarycursor {
|
||||
border-left: 1px solid silver;
|
||||
}
|
||||
|
||||
|
||||
.cm-tab { display: inline-block; }
|
||||
|
||||
/* DEFAULT THEME */
|
||||
|
||||
.cm-s-default .cm-keyword {color: #708;}
|
||||
.cm-s-default .cm-atom {color: #219;}
|
||||
.cm-s-default .cm-number {color: #164;}
|
||||
.cm-s-default .cm-def {color: #00f;}
|
||||
.cm-s-default .cm-variable {color: black;}
|
||||
.cm-s-default .cm-variable-2 {color: #05a;}
|
||||
.cm-s-default .cm-variable-3 {color: #085;}
|
||||
.cm-s-default .cm-property {color: black;}
|
||||
.cm-s-default .cm-operator {color: black;}
|
||||
.cm-s-default .cm-comment {color: #a50;}
|
||||
.cm-s-default .cm-string {color: #a11;}
|
||||
.cm-s-default .cm-string-2 {color: #f50;}
|
||||
.cm-s-default .cm-meta {color: #555;}
|
||||
.cm-s-default .cm-error {color: #f00;}
|
||||
.cm-s-default .cm-qualifier {color: #555;}
|
||||
.cm-s-default .cm-builtin {color: #30a;}
|
||||
.cm-s-default .cm-bracket {color: #997;}
|
||||
.cm-s-default .cm-tag {color: #170;}
|
||||
.cm-s-default .cm-attribute {color: #00c;}
|
||||
.cm-s-default .cm-header {color: blue;}
|
||||
.cm-s-default .cm-quote {color: #090;}
|
||||
.cm-s-default .cm-hr {color: #999;}
|
||||
.cm-s-default .cm-link {color: #00c;}
|
||||
|
||||
.cm-negative {color: #d44;}
|
||||
.cm-positive {color: #292;}
|
||||
.cm-header, .cm-strong {font-weight: bold;}
|
||||
.cm-em {font-style: italic;}
|
||||
.cm-link {text-decoration: underline;}
|
||||
|
||||
.cm-invalidchar {color: #f00;}
|
||||
|
||||
/* STOP */
|
||||
|
||||
/* The rest of this file contains styles related to the mechanics of
|
||||
the editor. You probably shouldn't touch them. */
|
||||
|
||||
.CodeMirror {
|
||||
line-height: 1;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
background: white;
|
||||
color: black;
|
||||
}
|
||||
|
||||
.CodeMirror-scroll {
|
||||
/* 30px is the magic margin used to hide the element's real scrollbars */
|
||||
/* See overflow: hidden in .CodeMirror */
|
||||
margin-bottom: -30px; margin-right: -30px;
|
||||
padding-bottom: 30px; padding-right: 30px;
|
||||
height: 100%;
|
||||
outline: none; /* Prevent dragging from highlighting the element */
|
||||
position: relative;
|
||||
}
|
||||
.CodeMirror-sizer {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* The fake, visible scrollbars. Used to force redraw during scrolling
|
||||
before actuall scrolling happens, thus preventing shaking and
|
||||
flickering artifacts. */
|
||||
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler {
|
||||
position: absolute;
|
||||
z-index: 6;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.CodeMirror-vscrollbar {
|
||||
right: 0; top: 0;
|
||||
overflow-x: hidden;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
.CodeMirror-hscrollbar {
|
||||
bottom: 0; left: 0;
|
||||
overflow-y: hidden;
|
||||
overflow-x: scroll;
|
||||
}
|
||||
|
||||
.CodeMirror-scrollbar-filler {
|
||||
right: 0; bottom: 0;
|
||||
z-index: 6;
|
||||
}
|
||||
|
||||
.CodeMirror-gutters {
|
||||
position: absolute; left: 0; top: 0;
|
||||
height: 100%;
|
||||
padding-bottom: 30px;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.CodeMirror-lines {
|
||||
cursor: text;
|
||||
}
|
||||
|
||||
.CodeMirror pre {
|
||||
/* Reset some styles that the rest of the page might have set */
|
||||
-moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
|
||||
border-width: 0;
|
||||
background: transparent;
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
margin: 0;
|
||||
white-space: pre;
|
||||
word-wrap: normal;
|
||||
line-height: inherit;
|
||||
color: inherit;
|
||||
z-index: 2;
|
||||
position: relative;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.CodeMirror-wrap pre {
|
||||
word-wrap: break-word;
|
||||
white-space: pre-wrap;
|
||||
word-break: normal;
|
||||
}
|
||||
|
||||
.CodeMirror-wrap .CodeMirror-scroll {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.CodeMirror-measure {
|
||||
position: absolute;
|
||||
width: 100%; height: 0px;
|
||||
overflow: hidden;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.CodeMirror-measure pre { position: static; }
|
||||
|
||||
.CodeMirror:not(.CodeMirror-focused) {
|
||||
div.CodeMirror-cursor {
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
.CodeMirror div.CodeMirror-cursor {
|
||||
position: absolute;
|
||||
border-right: none;
|
||||
width: 0;
|
||||
}
|
||||
|
||||
.CodeMirror-selected { background: #d9d9d9; }
|
||||
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
|
||||
|
||||
/* IE7 hack to prevent it from returning funny offsetTops on the spans */
|
||||
.CodeMirror span { *vertical-align: text-bottom; }
|
||||
|
||||
@media print {
|
||||
/* Hide the cursor when printing */
|
||||
.CodeMirror div.CodeMirror-cursor {
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
@ -1,108 +0,0 @@
|
||||
/*
|
||||
* Error page styles
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Error pages
|
||||
*/
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Error pages
|
||||
========================================================================== */
|
||||
|
||||
.error-content {
|
||||
max-width: 530px;
|
||||
margin: 0 auto;
|
||||
padding: 0;
|
||||
display: table;
|
||||
height: 100%;
|
||||
|
||||
@media (max-width: 630px) {
|
||||
max-width: 264px;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
.error-details {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.error-image {
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
width: 96px;
|
||||
height: 150px;
|
||||
|
||||
@media (max-width: 630px) {
|
||||
width: 72px;
|
||||
height: 112px;
|
||||
}
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.error-message {
|
||||
position: relative;
|
||||
top: -5px;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.error-code {
|
||||
margin: 0;
|
||||
font-size: 7.8em;
|
||||
line-height: 0.9em;
|
||||
color: #979797;
|
||||
|
||||
@media (max-width: 630px) {
|
||||
font-size: 5.8em;
|
||||
}
|
||||
}
|
||||
|
||||
.error-description {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-weight: 300;
|
||||
font-size: 1.9em;
|
||||
color: #979797;
|
||||
border: none;
|
||||
|
||||
@media (max-width: 630px) {
|
||||
font-size: 1.4em;
|
||||
}
|
||||
}
|
||||
|
||||
.error-stack {
|
||||
margin: 1em auto;
|
||||
padding: 2em;
|
||||
max-width: 800px;
|
||||
background-color: rgba(255,255,255,0.3);
|
||||
}
|
||||
|
||||
.error-stack-list {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.error-stack-list li {
|
||||
display: block;
|
||||
|
||||
&::before {
|
||||
color: #BBB;
|
||||
content: "\21AA";
|
||||
display: inline-block;
|
||||
font-size: 1.2em;
|
||||
margin-right: 0.5em;
|
||||
}
|
||||
}
|
||||
|
||||
.error-stack-function {
|
||||
font-weight: bold;
|
||||
}
|
@ -1,42 +0,0 @@
|
||||
.invite-new-user {
|
||||
.modal-body {
|
||||
@include clearfix;
|
||||
fieldset {
|
||||
margin: 1em 0 0 0;
|
||||
}
|
||||
}
|
||||
.form-group {
|
||||
|
||||
margin-bottom: 0;
|
||||
padding: 0;
|
||||
|
||||
label {
|
||||
position: static;
|
||||
display: block;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
&:nth-of-type(1) {
|
||||
float: left;
|
||||
width: 60%;
|
||||
}
|
||||
&:nth-of-type(2) {
|
||||
float: left;
|
||||
width: 35%;
|
||||
margin-left: 5%;
|
||||
}
|
||||
|
||||
input {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
} // .form-group
|
||||
|
||||
.button-add {
|
||||
width: 100%;
|
||||
padding: 0.85rem 1.9rem;
|
||||
font-size: 14px;
|
||||
line-height: 16px;
|
||||
}
|
||||
|
||||
} // .invite-new-user
|
@ -1,152 +0,0 @@
|
||||
/*
|
||||
* Post Settings Menu
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Post Settings Menu
|
||||
*/
|
||||
|
||||
/* ==========================================================================
|
||||
Post Settings Menu
|
||||
========================================================================== */
|
||||
|
||||
.post-settings {
|
||||
@include icon($i-settings, 14px);
|
||||
display: inline-block;
|
||||
padding: 0 10px;
|
||||
color: $midgrey;
|
||||
@include transition;
|
||||
position: relative;
|
||||
top: 1px;
|
||||
|
||||
&:hover,
|
||||
&.active {
|
||||
color: $darkgrey;
|
||||
}
|
||||
} // .post-settings
|
||||
|
||||
.post-settings-menu {
|
||||
padding-top: 0;
|
||||
text-transform: none;
|
||||
|
||||
table {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
td {
|
||||
padding: 0;
|
||||
border-top: none;
|
||||
border-bottom: lighten($grey, 5%) 1px solid;
|
||||
}
|
||||
|
||||
.post-setting-label {
|
||||
padding: 8px 10px 8px 15px;
|
||||
border-right: lighten($grey, 5%) 1px solid;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
label {
|
||||
position: static;
|
||||
width: auto;
|
||||
font-weight: normal;
|
||||
color: $midgrey;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
input {
|
||||
width: 200px;
|
||||
margin: 0;
|
||||
|
||||
@media (max-width: 550px) {
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
&[type="text"] {
|
||||
border: none;
|
||||
padding: 8px 0 8px 10px;
|
||||
color: $lightgrey;
|
||||
border-radius: 0;
|
||||
background: transparent;
|
||||
|
||||
&:focus {
|
||||
background: $grey;
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
} // input
|
||||
|
||||
.post-setting-item {
|
||||
padding: 5px 0 0 10px;
|
||||
&.no-padding {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.gh-select {
|
||||
height: 36px;
|
||||
&:after {
|
||||
color: $lightgrey;
|
||||
margin-top: -(0.85em / 2);
|
||||
}
|
||||
select {
|
||||
border: 0;
|
||||
background: transparent;
|
||||
border-radius: 0;
|
||||
color: $lightgrey;
|
||||
height: 36px;
|
||||
&:focus {
|
||||
background: $grey;
|
||||
}
|
||||
}
|
||||
@media (max-width: 550px) {
|
||||
&,
|
||||
select {
|
||||
height: 41px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.checkbox {
|
||||
position: relative;
|
||||
margin-top: 0;
|
||||
top: 0; // Resets a global `form label` style
|
||||
border: 0;
|
||||
&:after {
|
||||
border-color: lighten($grey, 10%);
|
||||
background: $grey;
|
||||
}
|
||||
} // .checkbox
|
||||
|
||||
// Colour the checkbox border correctly for a dark background
|
||||
input[type='checkbox'] {
|
||||
&:focus {
|
||||
& + .checkbox {
|
||||
&:after {
|
||||
border-color: lighten($grey, 10%);
|
||||
}
|
||||
}
|
||||
}
|
||||
} // input[type='checkbox']
|
||||
|
||||
// .select-wrapper {
|
||||
// width: calc(100% - 10px);
|
||||
// }
|
||||
|
||||
.delete {
|
||||
display: block;
|
||||
padding: 10px 15px;
|
||||
width: 100%;
|
||||
text-align: left;
|
||||
@include icon($i-trash) {
|
||||
position: relative;
|
||||
top: -1px;
|
||||
margin-right: 10px
|
||||
};
|
||||
|
||||
&:hover {
|
||||
background: $red;
|
||||
color: #fff;
|
||||
}
|
||||
} // .delete
|
||||
|
||||
} // .post-settings-menu
|
@ -1,418 +0,0 @@
|
||||
/*
|
||||
* Setting pages styles
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Settings
|
||||
* Sidebar
|
||||
* Content
|
||||
* Code Injection
|
||||
*/
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Settings
|
||||
========================================================================== */
|
||||
|
||||
.settings {
|
||||
|
||||
// The main white bg for the page
|
||||
.wrapper {
|
||||
background: #fff;
|
||||
box-shadow: $shadow;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
||||
@media (max-width: 800px) {
|
||||
top: -55px;
|
||||
margin-top: 55px;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
} // .wrapper
|
||||
|
||||
.title {
|
||||
text-transform: uppercase;
|
||||
font-weight: normal;
|
||||
font-size: 1.6em;
|
||||
line-height: 0.8em;
|
||||
margin: 0 0 18px 0;
|
||||
padding: 0;
|
||||
border: none;
|
||||
} // .title
|
||||
} // .settings
|
||||
|
||||
|
||||
/* =============================================================================
|
||||
Sidebar
|
||||
============================================================================= */
|
||||
|
||||
// The whole left column sidebar, duh.
|
||||
.settings-sidebar {
|
||||
width: 20%;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
z-index: 700;
|
||||
background: #fff;
|
||||
box-shadow: $lightbrown 1px 0 0;
|
||||
@media (max-width: 800px) {
|
||||
width: 100%;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
> header {
|
||||
position: relative;
|
||||
z-index: 400;
|
||||
height: 17px;
|
||||
padding: 30px 15px 47px 40px;
|
||||
margin-bottom: 0;
|
||||
border-bottom: none;
|
||||
box-shadow: #edece4 0 -1px 0 inset, #edece4 1px 0 0;
|
||||
|
||||
// Transparent gradient to make bg fade out as it goes out the top.
|
||||
// TODO: Much improve
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(25%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,0.90)));
|
||||
background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 25%,rgba(255,255,255,0.90) 100%);
|
||||
background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 25%,rgba(255,255,255,0.90) 100%);
|
||||
|
||||
@media (max-width: 1000px) {
|
||||
padding-left: 15px;
|
||||
};
|
||||
|
||||
} // > header
|
||||
} // .settings-sidebar
|
||||
|
||||
// Main settings-menu styles, apply to every item
|
||||
.settings-menu {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
right: -1px;
|
||||
overflow: auto;
|
||||
@media (max-width: 800px) {
|
||||
right: 0;
|
||||
};
|
||||
|
||||
// Create placeholder the same height as the floating header
|
||||
// to push content down by the same amount
|
||||
&:before {
|
||||
display: block;
|
||||
content: "";
|
||||
height: 77px; // 30px + 17px title + 30px
|
||||
}
|
||||
|
||||
ul {
|
||||
border-top: none;
|
||||
@media (max-width: 800px) { border-bottom: #edece4 1px solid; }
|
||||
}
|
||||
|
||||
li {
|
||||
margin-right: 1px;
|
||||
border-top: #fff 1px solid;
|
||||
@media (max-width: 800px) {
|
||||
margin-right: 0;
|
||||
border-top: #edece4 1px solid;
|
||||
}
|
||||
|
||||
a {
|
||||
padding: 15px 15px 15px 40px;
|
||||
border-bottom: none;
|
||||
@media (max-width: 1000px) { padding-left: 15px; }
|
||||
@media (max-width: 800px) {
|
||||
@include icon-after($i-chevron) {
|
||||
float: right;
|
||||
margin-top: 5px;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
&:first-child {
|
||||
border-top: none;
|
||||
}
|
||||
&:first-child.active {
|
||||
border-top: none;
|
||||
}
|
||||
|
||||
&.active {
|
||||
@media (min-width: 801px) {
|
||||
// only apply active styles on larger devices
|
||||
|
||||
margin-right: 0;
|
||||
position: relative;
|
||||
z-index: 300;
|
||||
border-top: #edece4 1px solid;
|
||||
box-shadow: #fff 1px 0 0, #edece4 0 1px 0;
|
||||
@include transition;
|
||||
|
||||
a {
|
||||
color: $darkgrey;
|
||||
font-weight: bold;
|
||||
background: #fff;
|
||||
&:focus {
|
||||
background: $lightbrown;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
} // .active
|
||||
|
||||
} // li
|
||||
|
||||
// Give all icons some space
|
||||
li a:before {
|
||||
margin-right: 20px;
|
||||
@media (max-width: 1000px) {
|
||||
margin-right: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
// Add the icons for specific menu items
|
||||
.about a {
|
||||
@include icon($i-ghost);
|
||||
}
|
||||
.general a {
|
||||
@include icon($i-settings);
|
||||
}
|
||||
.publishing a {
|
||||
@include icon($i-content);
|
||||
}
|
||||
.services a {
|
||||
@include icon($i-services);
|
||||
}
|
||||
.users a {
|
||||
@include icon($i-users);
|
||||
}
|
||||
.appearance a {
|
||||
@include icon($i-appearance);
|
||||
}
|
||||
.apps a {
|
||||
@include icon($i-app);
|
||||
}
|
||||
.code a {
|
||||
@include icon($i-code);
|
||||
}
|
||||
|
||||
} // .settings-menu
|
||||
|
||||
|
||||
/* =============================================================================
|
||||
Content
|
||||
============================================================================= */
|
||||
|
||||
// The main content panel on the right
|
||||
.settings-content {
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
left: 20%;
|
||||
bottom: 0;
|
||||
background: #fff;
|
||||
|
||||
@media (max-width: 800px) {
|
||||
width: 100%;
|
||||
left: 100%;
|
||||
right: -100%;
|
||||
margin-left: 15px;
|
||||
}
|
||||
|
||||
.settings-general img {
|
||||
max-width: 100%;
|
||||
max-height: 400px;
|
||||
}
|
||||
|
||||
// TODO: Header could really be more specific (class)
|
||||
> header {
|
||||
position: relative;
|
||||
z-index: 200;
|
||||
height: 17px;
|
||||
padding: 30px 220px 46px 40px;
|
||||
border-bottom: $lightbrown 1px solid;
|
||||
margin-bottom: 40px;
|
||||
text-transform: none;
|
||||
font-weight: normal;
|
||||
line-height: inherit;
|
||||
color: inherit;
|
||||
|
||||
// Transparent gradient to make bg fade out as it goes out the top.
|
||||
// TODO: Significantly improve
|
||||
background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 25%, rgba(255,255,255,0.90) 100%);
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(25%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,0.90)));
|
||||
background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 25%,rgba(255,255,255,0.90) 100%);
|
||||
background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 25%,rgba(255,255,255,0.90) 100%);
|
||||
background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 25%,rgba(255,255,255,0.90) 100%);
|
||||
background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 25%,rgba(255,255,255,0.90) 100%);
|
||||
|
||||
@media (max-width: 1000px) {
|
||||
padding-left: 15px;
|
||||
}
|
||||
// @media (max-width: 800px) {
|
||||
// padding-left: 115px;
|
||||
// }
|
||||
@media (max-height: 600px) {
|
||||
height: auto;
|
||||
padding: 5px;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
border: none;
|
||||
background: transparent;
|
||||
|
||||
.title {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@media (max-width: 650px) {
|
||||
padding-left: 15px;
|
||||
|
||||
.button-back {
|
||||
position: fixed;
|
||||
top: 5px;
|
||||
left: 14px;
|
||||
min-height: 0;
|
||||
padding-top: 8px;
|
||||
padding-bottom: 8px;
|
||||
display: block;
|
||||
|
||||
&:before {
|
||||
left: -9px;
|
||||
border-width: 15px 9px 15px 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.header-inner {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 100px;
|
||||
outline: 1px solid red;
|
||||
}
|
||||
|
||||
} // header
|
||||
|
||||
|
||||
.page-actions {
|
||||
position: absolute;
|
||||
top: 20px;
|
||||
right: 40px;
|
||||
z-index: 700;
|
||||
font-size: 1em;
|
||||
|
||||
@media (max-width: 1000px) {
|
||||
right: 15px;
|
||||
}
|
||||
@media (max-width: 650px) {
|
||||
position: fixed;
|
||||
top: 5px;
|
||||
right: 4px;
|
||||
|
||||
.button-save {
|
||||
min-height: 0;
|
||||
height: 30px;
|
||||
padding: 0.5em 1.37em;
|
||||
}
|
||||
}
|
||||
&.page-actions-alt {
|
||||
left: 40px;
|
||||
@media (max-width: 1000px) {
|
||||
left: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
.button-add {
|
||||
position: relative;
|
||||
padding-left: 50px;
|
||||
border: rgba(0,0,0,0.07) 1px solid;
|
||||
@include icon($i-add, 1.4em, rgba(255,255,255,0.6)) {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
padding: 9px 8px 0 0;
|
||||
left: 9px;
|
||||
bottom: 0;
|
||||
width: 26px;
|
||||
border-right: rgba(0,0,0,0.07) 1px solid;
|
||||
};
|
||||
@media (max-width: 650px) {
|
||||
height: 30px;
|
||||
min-height: 30px;
|
||||
padding: 6px 10px 8px 40px;
|
||||
&:before {
|
||||
padding-top: 7px;
|
||||
left: 8px;
|
||||
width: 22px;
|
||||
}
|
||||
}
|
||||
}
|
||||
} // > header
|
||||
|
||||
.content {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
padding: 40px;
|
||||
overflow: auto;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
|
||||
// Create placeholder the same height as the floating header
|
||||
// to push content down by the same amount
|
||||
&:before {
|
||||
display: block;
|
||||
content: "";
|
||||
height: 87px;
|
||||
}
|
||||
|
||||
&.no-padding {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
@media (max-width: 1000px) {
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
}
|
||||
@media (max-width: 550px) {
|
||||
padding: 0 15px 40px;
|
||||
}
|
||||
} // .content
|
||||
|
||||
.description-container,
|
||||
.bio-container {
|
||||
textarea {
|
||||
min-height: 115px;
|
||||
}
|
||||
}
|
||||
|
||||
.word-count {
|
||||
float: right;
|
||||
font-weight: bold;
|
||||
color: darken($brown, 5%);
|
||||
}
|
||||
|
||||
@media (max-width: 550px) {
|
||||
textarea {
|
||||
max-width: 100%;
|
||||
+ p {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
} // .settings-content
|
||||
|
||||
|
||||
/* =============================================================================
|
||||
Code Injection
|
||||
============================================================================= */
|
||||
|
||||
.header-injection,
|
||||
.footer-injection {
|
||||
margin-top: 3.2em;
|
||||
}
|
@ -1,134 +0,0 @@
|
||||
/*
|
||||
* Ghost Setup Screen
|
||||
*
|
||||
* These styles cover /ghost/setup/ which is the first screen that appears
|
||||
* when a new instance of Ghost is setup and run.
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Main Styles
|
||||
========================================================================== */
|
||||
|
||||
.ghost-setup {
|
||||
color: $midgrey;
|
||||
background: $darkgrey;
|
||||
@media (max-width: 550px) {
|
||||
background: darken($darkgrey, 5%);
|
||||
}
|
||||
|
||||
main {
|
||||
top: 15px;
|
||||
@media (max-width: 550px) {
|
||||
top: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// The wrapper to center the form in all ways
|
||||
.setup-box {
|
||||
display: table;
|
||||
max-width: 500px;
|
||||
height: 90%;
|
||||
margin: 0 auto;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
// The form itself with the dark background
|
||||
.setup-form {
|
||||
max-width: 530px;
|
||||
padding: 40px;
|
||||
color: lighten($midgrey, 15%);
|
||||
background: darken($darkgrey, 5%);
|
||||
border-radius: 2px;
|
||||
|
||||
@media (max-width: 400px) {
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
header {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
label {
|
||||
// width: 90px;
|
||||
color: $lightgrey;
|
||||
font-weight: 300;
|
||||
|
||||
@media (max-width: 550px) {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
// .form-group {
|
||||
// padding-left: 110px;
|
||||
|
||||
// @media (max-width: 550px) {
|
||||
// padding-left: 0;
|
||||
// }
|
||||
// }
|
||||
|
||||
input {
|
||||
// width: 300px;
|
||||
padding: 7px;
|
||||
border: none;
|
||||
color: #fff;
|
||||
background: lighten($darkgrey, 10%);
|
||||
@include transition(background ease 0.25s);
|
||||
|
||||
// @media (max-width: 550px) {
|
||||
// width: 100%;
|
||||
// }
|
||||
|
||||
&:focus {
|
||||
border:none;
|
||||
background: lighten($darkgrey, 15%);
|
||||
}
|
||||
}
|
||||
|
||||
// Chrome auto-fill style
|
||||
input:-webkit-autofill {
|
||||
-webkit-box-shadow: 0 0 0px 1000px $lightgrey inset !important;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin: 0;
|
||||
font-weight: 200;
|
||||
font-size: 26px;
|
||||
color: $lightgrey;
|
||||
|
||||
@media (max-width: 550px) {
|
||||
font-size: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
h2 {
|
||||
margin: 6px 0 0 0;
|
||||
padding: 0;
|
||||
border: none;
|
||||
font-weight: 200;
|
||||
font-size: 16px;
|
||||
color: $midgrey;
|
||||
|
||||
@media (max-width: 550px) {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 12px;
|
||||
line-height: 1.4em;
|
||||
color: $midgrey;
|
||||
}
|
||||
|
||||
footer {
|
||||
margin: 30px 0 5px 0;
|
||||
}
|
||||
|
||||
.button-add {
|
||||
width: 100%;
|
||||
padding: 0.9em 1.8em;
|
||||
font-size: 13px;
|
||||
}
|
||||
}
|
@ -1,365 +0,0 @@
|
||||
/*
|
||||
* Users screen styles
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Users
|
||||
* User Profile
|
||||
*/
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Users
|
||||
========================================================================== */
|
||||
|
||||
.settings {
|
||||
|
||||
.user-group-header {
|
||||
margin-bottom: 0px;
|
||||
padding-bottom: 20px;
|
||||
border: 0 none;
|
||||
border-bottom: 1px solid darken($lightbrown, 10%);
|
||||
|
||||
h3 {
|
||||
display: inline-block;
|
||||
margin: 0;
|
||||
color: $midbrown;
|
||||
font-weight: normal;
|
||||
font-size: 1.1em;
|
||||
line-height: 1em;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.user-search {
|
||||
display: inline-block;
|
||||
float: right;
|
||||
|
||||
label {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
&:hover .user-search-input,
|
||||
.user-search-input:focus {
|
||||
width: 260px;
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
.user-search-input {
|
||||
width: 0px;
|
||||
padding: 0;
|
||||
border: none;
|
||||
border-bottom: lighten($lightbrown, 2%) 1px solid;
|
||||
@include transition(width 0.2s ease-in-out);
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.search-icon {
|
||||
@include icon($i-search, 1em, $midbrown);
|
||||
}
|
||||
}
|
||||
|
||||
.users {
|
||||
padding: 0px;
|
||||
margin-top: 0px;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.user {
|
||||
display: block;
|
||||
width: 100%;
|
||||
padding: 20px;
|
||||
border: 0 none;
|
||||
border-top: 1px solid $lightgrey;
|
||||
|
||||
&:first-child {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.user-image {
|
||||
display: inline-block;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
margin-right: 17px;
|
||||
vertical-align: middle;
|
||||
background-color: $lightbrown;
|
||||
border-radius: 20px;
|
||||
|
||||
&.invite {
|
||||
padding-top: 8px;
|
||||
text-align: center;
|
||||
@include icon($i-mail, 1em, $brown);
|
||||
}
|
||||
|
||||
img {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-radius: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.user-meta {
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.user-name {
|
||||
margin: 0;
|
||||
margin-top: 0.4em;
|
||||
font-weight: 400;
|
||||
font-size: 1.2em;
|
||||
line-height: 1em;
|
||||
}
|
||||
|
||||
.user-last-seen {
|
||||
line-height: 1em;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.user-actions-cog {
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
.user-actions-menu {
|
||||
top: 49px;
|
||||
right: 69px;
|
||||
width: 145px;
|
||||
.delete {
|
||||
&:hover {
|
||||
background: $red;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.user-role {
|
||||
padding: 2px 8px;
|
||||
float: right;
|
||||
font-size: 0.8em;
|
||||
color: #fff;
|
||||
text-transform: uppercase;
|
||||
|
||||
&.admin {
|
||||
background-color: #DE523A;
|
||||
}
|
||||
&.editor {
|
||||
background-color: #4A8CBD;
|
||||
}
|
||||
}
|
||||
|
||||
/* =============================================================================
|
||||
User Profile
|
||||
============================================================================= */
|
||||
|
||||
.user-profile-header {
|
||||
position: relative;
|
||||
max-height: 400px;
|
||||
overflow: hidden;
|
||||
|
||||
// Gradient overlay
|
||||
&:after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
height: 110px;
|
||||
@include linear-gradient( rgba(0,0,0,0), rgba(0,0,0,0.3) );
|
||||
}
|
||||
}
|
||||
|
||||
.cover-image {
|
||||
display: block;
|
||||
line-height: 0;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
min-height: 180px;
|
||||
}
|
||||
|
||||
.edit-cover-image {
|
||||
position: absolute;
|
||||
right: 35px;
|
||||
bottom: 34px;
|
||||
min-height: 34px;
|
||||
height: 34px;
|
||||
background: rgba(0,0,0,0.3);
|
||||
border-radius: 0;
|
||||
color: rgba(255,255,255,0.8);
|
||||
z-index: 2;
|
||||
border-radius: $rounded;
|
||||
@include transition(
|
||||
color 0.3s ease,
|
||||
background 0.3s ease
|
||||
);
|
||||
@media (max-width: 1000px) {
|
||||
right: 15px;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
color: #fff;
|
||||
background: rgba(0,0,0,0.5);
|
||||
}
|
||||
}
|
||||
|
||||
.user-image + .form-group {
|
||||
margin-top: 155px;
|
||||
max-width: 500px;
|
||||
@media (min-width: 651px) and (max-width: 1000px) {
|
||||
width: calc(100% - 201px);
|
||||
}
|
||||
@media (min-width: 651px) {
|
||||
min-width: 285px;
|
||||
margin-top: 0;
|
||||
top: -110px;
|
||||
left: 40px;
|
||||
}
|
||||
@media (min-width: 1001px) {
|
||||
width: calc(100% - 221px);
|
||||
}
|
||||
}
|
||||
|
||||
.user-profile {
|
||||
position: relative;
|
||||
top: -110px;
|
||||
z-index: 1;
|
||||
@media (min-width: 651px) {
|
||||
padding-left: 143px;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
padding: 0 40px;
|
||||
}
|
||||
|
||||
textarea {
|
||||
min-width: 240px;
|
||||
}
|
||||
}
|
||||
|
||||
fieldset.user-details-top {
|
||||
|
||||
@media (max-width: 650px) {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
@media (min-width: 651px) {
|
||||
margin-bottom: 0;
|
||||
padding: 0;
|
||||
p {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media (max-width: 550px) {
|
||||
fieldset.user-details-top,
|
||||
fieldset.user-details-bottom {
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
.user-image {
|
||||
display: block;
|
||||
position: relative;
|
||||
width: 126px;
|
||||
height: 126px;
|
||||
float: left;
|
||||
margin-left: 34px;
|
||||
margin-right: 20px;
|
||||
text-align: center;
|
||||
border-radius: 100%;
|
||||
overflow: hidden;
|
||||
padding: 3px;
|
||||
background: #fff;
|
||||
z-index: 2;
|
||||
|
||||
margin-left: -104px;
|
||||
|
||||
@media (max-width: 550px) {
|
||||
margin-left: 0px;
|
||||
}
|
||||
|
||||
@media (min-width: 551px) and (max-width: 650px) {
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.img {
|
||||
display: block;
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
background-size: cover;
|
||||
background-position: center center;
|
||||
border-radius: 100%;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
.edit-user-image {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.edit-user-image {
|
||||
@include position(absolute, 3px 3px 3px 3px);
|
||||
border-radius: 100%;
|
||||
width: calc(100% - 6px);
|
||||
background: rgba(0,0,0,0.5);
|
||||
opacity: 0;
|
||||
color: #fff;
|
||||
line-height: 120px;
|
||||
text-transform: uppercase;
|
||||
text-decoration: none;
|
||||
@include transition(opacity 0.3s ease);
|
||||
}
|
||||
|
||||
@media (min-width: 651px) {
|
||||
label[for='user-name'] {
|
||||
visibility: hidden;
|
||||
}
|
||||
#user-name {
|
||||
border-color: #fff;
|
||||
font-size: 1.5rem;
|
||||
padding: 3px 12px;
|
||||
}
|
||||
}
|
||||
|
||||
.user-details-bottom {
|
||||
padding: 0 40px;
|
||||
@media (min-width: 651px) {
|
||||
margin: -104px 0 0 0;
|
||||
}
|
||||
}
|
||||
|
||||
} // .settings
|
||||
|
||||
@media (max-width: 650px) {
|
||||
.users-back {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 650px) {
|
||||
.page-actions .user-actions-cog {
|
||||
padding: 7px 0;
|
||||
min-height: 30px;
|
||||
.icon-settings {
|
||||
margin-left: 8px;
|
||||
margin-right: 8px;
|
||||
}
|
||||
}
|
||||
.settings .user-actions-menu {
|
||||
top: 43px;
|
||||
right: 66px;
|
||||
}
|
||||
.settings-content .user-settings-header {
|
||||
height: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border-bottom: 0;
|
||||
}
|
||||
.user-settings-header .title,
|
||||
.settings-content .settings-user:before {
|
||||
display: none;
|
||||
}
|
||||
}
|
@ -1,70 +0,0 @@
|
||||
/*
|
||||
* Reusable keyframe animations
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Off-Canvas
|
||||
* Fade In
|
||||
* Fade Out
|
||||
*/
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Off-Canvas
|
||||
========================================================================== */
|
||||
|
||||
@include keyframes(off-canvas) {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Fade In
|
||||
TODO: Make the fadeIn keyframe name hyphenated, not camelCase
|
||||
========================================================================== */
|
||||
|
||||
@include keyframes(fade-in) {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
.fade-in {
|
||||
-o-animation: fade-in 1s;
|
||||
-moz-animation: fade-in 1s;
|
||||
-webkit-animation: fade-in 1s;
|
||||
animation: fade-in 1s;
|
||||
}
|
||||
|
||||
@include keyframes(fade-in-snap) {
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Fade Out
|
||||
TODO: Make the fadeIn keyframe name hyphenated, not camelCase
|
||||
========================================================================== */
|
||||
|
||||
@include keyframes(fade-out) {
|
||||
from {
|
||||
opacity: 1;
|
||||
}
|
||||
to {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
.fade-out {
|
||||
-o-animation: fade-out 0.5s;
|
||||
-moz-animation: fade-out 0.5s;
|
||||
-webkit-animation: fade-out 0.5s;
|
||||
animation: fade-out 0.5s;
|
||||
}
|
@ -1,73 +0,0 @@
|
||||
/*
|
||||
* Global styles for Ghost which are used throughout the admin interface
|
||||
* Utility classes defined here to keep other libraries (Normalize) from
|
||||
* being modified, preventing upgrade later.
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Box Sizing
|
||||
* Text Selection
|
||||
* Colour Classes
|
||||
* Focus Styles
|
||||
*/
|
||||
|
||||
/* ==========================================================================
|
||||
Box Sizing
|
||||
---
|
||||
Apple `border-box` globally
|
||||
========================================================================== */
|
||||
|
||||
*,
|
||||
*:before,
|
||||
*:after {
|
||||
@include box-sizing(border-box);
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Text Selection
|
||||
---
|
||||
These colours do not differ much from browser defaults, but
|
||||
this makes it consistent & predicable.
|
||||
========================================================================== */
|
||||
|
||||
::-moz-selection {
|
||||
color: $darkgrey;
|
||||
background: lighten($blue, 20%);
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
::selection {
|
||||
color: $darkgrey;
|
||||
background: lighten($blue, 20%);
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Color Classes
|
||||
---
|
||||
Pragmatically generate classes for background & text colour, based on
|
||||
`$list-colours` in `variables.scss`
|
||||
========================================================================== */
|
||||
|
||||
@each $colour in $list-colours {
|
||||
.#{nth($colour, 1)}-bg {
|
||||
background: nth($colour, 2);
|
||||
}
|
||||
.#{nth($colour, 1)} {
|
||||
color: nth($colour, 2);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Focus Styles
|
||||
---
|
||||
These are applied globally, to everything except images
|
||||
========================================================================== */
|
||||
|
||||
*:not(img):focus {
|
||||
outline: 0;
|
||||
outline-width: 0;
|
||||
}
|
@ -1,415 +0,0 @@
|
||||
/*
|
||||
* Button classes, including
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Button Reset
|
||||
* Buttons
|
||||
* Split Buttons
|
||||
*/
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Button Reset
|
||||
========================================================================== */
|
||||
|
||||
button {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
background: transparent;
|
||||
@include transition(all 0.15s ease-in-out);
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Buttons
|
||||
========================================================================== */
|
||||
|
||||
%btn {
|
||||
min-height: 35px;
|
||||
width: auto;
|
||||
display: inline-block;
|
||||
padding: 0.9em 1.37em;
|
||||
|
||||
text-decoration: none;
|
||||
color: #fff;
|
||||
font-size: 11px; // Hack because Firefox sucks.
|
||||
line-height: 13px; // Hack because Firefox sucks.
|
||||
font-weight: 300;
|
||||
text-align: center;
|
||||
letter-spacing: 1px;
|
||||
text-transform: uppercase;
|
||||
|
||||
text-shadow: none;
|
||||
border-radius: 0.2em;
|
||||
border: rgba(0,0,0,0.05) 0.1em solid;
|
||||
|
||||
@include transition(background 0.3s ease, border-color 0.3s ease);
|
||||
|
||||
&:hover,
|
||||
&.hover,
|
||||
&:focus {
|
||||
will-change: border-color, background;
|
||||
border-color: transparent;
|
||||
background: #f8f8f8;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
&:active {
|
||||
box-shadow: rgba(0,0,0,0.3) 0 1px 3px inset;
|
||||
}
|
||||
|
||||
&:disabled {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
&.large {
|
||||
padding: 1em 1.8em;
|
||||
font-size: 14px;
|
||||
line-height: 16px;
|
||||
}
|
||||
|
||||
// Styling for buttons with icons in them
|
||||
&[class*='icon-'] {
|
||||
position: relative;
|
||||
padding-left: calc(1.37em + 36px);
|
||||
&:before {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 35px;
|
||||
font-size: 13px;
|
||||
line-height: 35px;
|
||||
border-right: 1px solid rgba($darkgrey, 0.1);
|
||||
opacity: 0.95;
|
||||
}
|
||||
|
||||
&.large {
|
||||
padding-left: calc(1.8em + 46px);
|
||||
&:before {
|
||||
width: 46px;
|
||||
line-height: 46px;
|
||||
font-size: 17px;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Buttons that has an icon
|
||||
[class*='button'] {
|
||||
&[class*='has-icon'] {
|
||||
padding-left: 0;
|
||||
[class*='icon-'] {
|
||||
margin-left: 11px;
|
||||
margin-right: 4px;
|
||||
&:before {
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.only-has-icon {
|
||||
padding-right: 0;
|
||||
[class*='icon-'] {
|
||||
margin-right: 11px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// This is the default button style
|
||||
.button {
|
||||
// button,
|
||||
// input[type="button"] {
|
||||
@extend %btn;
|
||||
color:#777;
|
||||
font-weight: normal;
|
||||
background: #eee;
|
||||
box-shadow: none;
|
||||
&:hover,
|
||||
&:focus {
|
||||
border-color: rgba(0,0,0,0.1);
|
||||
}
|
||||
}
|
||||
|
||||
.button-dark {
|
||||
@extend %btn;
|
||||
color: #fff;
|
||||
font-weight: normal;
|
||||
background: #A1ADB3;
|
||||
box-shadow: none;
|
||||
border-color: #A1ADB3;
|
||||
&:hover,
|
||||
&:focus {
|
||||
border-color: darken(#A1ADB3, 10%);
|
||||
background: darken(#A1ADB3, 10%);
|
||||
}
|
||||
}
|
||||
|
||||
// Button for save/next/continue/confirm actions
|
||||
.button-save {
|
||||
// button[type="submit"],
|
||||
// input[type="submit"] {
|
||||
@extend %btn;
|
||||
background: $blue;
|
||||
box-shadow: none;
|
||||
&:hover,
|
||||
&:focus {
|
||||
background: darken($blue, 10%);
|
||||
}
|
||||
}
|
||||
|
||||
// Button for actions which add stuff
|
||||
.button-add {
|
||||
// button[type="submit"].button-add,
|
||||
// input[type="submit"].button-add {
|
||||
@extend %btn;
|
||||
background: $green;
|
||||
&:hover,
|
||||
&:focus {
|
||||
background: darken($green, 8%);
|
||||
}
|
||||
}
|
||||
|
||||
// Button for deleting/removing stuff
|
||||
.button-delete {
|
||||
// button[type="reset"],
|
||||
// input[type="reset"] {
|
||||
@extend %btn;
|
||||
background: $red;
|
||||
box-shadow: none;
|
||||
&:hover,
|
||||
&:focus {
|
||||
background: darken($red, 10%);
|
||||
}
|
||||
}
|
||||
|
||||
// Alternative button with more visual attention, but no extra semantic meaning
|
||||
.button-alt {
|
||||
@extend %btn;
|
||||
background: lighten($darkgrey, 10%);
|
||||
&:hover,
|
||||
&:focus {
|
||||
background: $darkgrey;
|
||||
}
|
||||
&[class*='icon-']:before {
|
||||
border-right-color: lighten($darkgrey, 10%);
|
||||
}
|
||||
}
|
||||
|
||||
// Alternative button with more visual attention, but no extra semantic meaning
|
||||
.button-info {
|
||||
@extend %btn;
|
||||
background: #A1ADB3;
|
||||
&:hover,
|
||||
&:focus {
|
||||
background: lighten(#A1ADB3, 10%);
|
||||
}
|
||||
}
|
||||
|
||||
// This applies normal link styles to de-emphasise a button
|
||||
.button-link {
|
||||
@extend %btn;
|
||||
color: $blue;
|
||||
background: transparent;
|
||||
border: none;
|
||||
&:hover,
|
||||
&:focus {
|
||||
background: transparent;
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
// Back button for pane animations
|
||||
.button-back {
|
||||
@extend %btn;
|
||||
position: absolute;
|
||||
top: 20px;
|
||||
left: 20px;
|
||||
margin-right: 30px;
|
||||
padding: 0.5em 1.37em 0.5em 1.10em;
|
||||
display: none;
|
||||
color: #fff;
|
||||
background: $blue;
|
||||
border: none;
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
|
||||
&:before {
|
||||
content: ' ';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: -10px;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-width: 18px 10px 18px 0;
|
||||
border-color: transparent $blue transparent transparent;
|
||||
border-style: solid solid solid none;
|
||||
@include transform(scale(0.9999));
|
||||
@include transition(border-color 0.3s ease);
|
||||
}
|
||||
|
||||
&:hover,
|
||||
&:focus {
|
||||
color: #fff;
|
||||
background: darken($blue, 10%);
|
||||
border-color: darken($blue, 10%);
|
||||
&:before {
|
||||
border-right-color: darken($blue, 10%);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* =============================================================================
|
||||
Split Buttons
|
||||
============================================================================= */
|
||||
|
||||
%splitbtn {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
font-size: 0; // hack to stop space after button
|
||||
white-space: nowrap;
|
||||
|
||||
button {
|
||||
font-size: 11px; // hack to restore font size
|
||||
@include border-right-radius(0);
|
||||
}
|
||||
|
||||
// This is the additional dropdown arrow, to the right of the button.
|
||||
.options {
|
||||
display: inline-block;
|
||||
position:relative;
|
||||
width: 35px;
|
||||
height: 35px;
|
||||
margin-left: -1px;
|
||||
vertical-align: top;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
background: #e5e5e5;
|
||||
border-radius: 0 2px 2px 0;
|
||||
border-left: 0;
|
||||
box-shadow:
|
||||
rgba(0,0,0,0.02) 0 1px 0 inset,
|
||||
rgba(0,0,0,0.02) -1px 0 0 inset,
|
||||
rgba(0,0,0,0.02) 0 -1px 0 inset;
|
||||
|
||||
@include icon($i-chevron-down, 9px) {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: 50%;
|
||||
margin-top: -3px;
|
||||
margin-right: -5px;
|
||||
@include transition(margin-top 0.3s ease);
|
||||
/* Transition of transform properties are split out due to a
|
||||
defect in the vendor prefixing of transform transitions.
|
||||
See: http://github.com/thoughtbot/bourbon/pull/86 */
|
||||
@include transition-property(transform);
|
||||
@include transition-duration(0.3);
|
||||
@include transition-timing-function(ease);
|
||||
};
|
||||
|
||||
@include transition(background-color 0.3s linear);
|
||||
|
||||
// Keep the arrow spun when the associated menu is open
|
||||
&.active:before {
|
||||
@include transform(rotate(360deg));
|
||||
}
|
||||
|
||||
&.up.active:before {
|
||||
margin-top:-4px;
|
||||
@include transform(rotate(540deg));
|
||||
}
|
||||
|
||||
// Spin the arrow on hover and while menu is open
|
||||
&:hover,
|
||||
&:focus {
|
||||
will-change: box-shadow, background;
|
||||
box-shadow: none;
|
||||
background: #f8f8f8;
|
||||
@include icon($i-chevron-down) {
|
||||
will-change: transform;
|
||||
@include transform(rotate(360deg));
|
||||
};
|
||||
}
|
||||
|
||||
// If it has a class of "up" spin it an extra 180degress to point up
|
||||
&.up:hover,
|
||||
&.up:focus {
|
||||
@include icon($i-chevron-down) {
|
||||
margin-top:-4px;
|
||||
@include transform(rotate(540deg));
|
||||
@include transition-property(transform);
|
||||
@include transition-duration(0.6);
|
||||
@include transition-timing-function(ease);
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// The default splitbutton
|
||||
.splitbutton {
|
||||
@extend %splitbtn;
|
||||
.options {
|
||||
color:#777;
|
||||
&:hover,
|
||||
&:focus {
|
||||
box-shadow:
|
||||
rgba(0,0,0,0.07) 0 1px 0 inset,
|
||||
rgba(0,0,0,0.07) -1px 0 0 inset,
|
||||
rgba(0,0,0,0.07) 0 -1px 0 inset;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// For save/next/continue/confirm actions
|
||||
.splitbutton-save {
|
||||
@extend %splitbtn;
|
||||
.options {
|
||||
background: darken($blue, 5%);
|
||||
&:hover,
|
||||
&.active,
|
||||
&:focus {
|
||||
background: darken($blue, 10%);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// For actions which add something
|
||||
.splitbutton-add {
|
||||
@extend %splitbtn;
|
||||
.options {
|
||||
background: darken($green, 6%);
|
||||
&:hover,
|
||||
&:focus {
|
||||
background: darken($green, 8%);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// For actions which delete something
|
||||
.splitbutton-delete {
|
||||
@extend %splitbtn;
|
||||
.options {
|
||||
background: darken($red, 6%);
|
||||
&:hover,
|
||||
&:focus {
|
||||
background: darken($red, 10%);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Alternative style with more visual attention, but no extra semantic meaning
|
||||
.splitbutton-alt {
|
||||
@extend %splitbtn;
|
||||
.options {
|
||||
background: lighten($darkgrey, 4%);
|
||||
&:hover,
|
||||
&:focus {
|
||||
background: $darkgrey;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,160 +0,0 @@
|
||||
/*
|
||||
* Dropdown classes, including default styles and section-specific styles
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Dropdowns
|
||||
* Dropdown Show & Hide
|
||||
* Menu
|
||||
* Menu Positioning Options
|
||||
*/
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Dropdowns
|
||||
========================================================================== */
|
||||
|
||||
.dropdown {
|
||||
@include icon-after($i-chevron-down, 8px) {
|
||||
padding-left: 6px;
|
||||
vertical-align: 0;
|
||||
};
|
||||
|
||||
&.active {
|
||||
color: $darkgrey;
|
||||
@include icon-after($i-chevron-down, 8px);
|
||||
}
|
||||
|
||||
} // .dropdown
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Dropdown Show & Hide
|
||||
---
|
||||
Sadly !important is needed, to counteract the stringer selectors applying
|
||||
a display property.
|
||||
========================================================================== */
|
||||
|
||||
.ghost-popover {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.ghost-popover.open {
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Menu
|
||||
---
|
||||
This is the base menu extend used for styles on interaction menus
|
||||
Default: Pop menu, chiclet bottom center.
|
||||
========================================================================== */
|
||||
|
||||
.menu {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
z-index: 960;
|
||||
padding:6px 0;
|
||||
border: none;
|
||||
list-style: none;
|
||||
color: $lightgrey;
|
||||
background: $darkgrey;
|
||||
border-radius: 3px;
|
||||
box-shadow: rgba(0,0,0,0.5) 0 1px 15px;
|
||||
|
||||
// The triangle chiclet that points to where the menu came from
|
||||
// By default, this is bottom center.
|
||||
&:before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
bottom: -10px;
|
||||
left: 50%;
|
||||
margin-left: -10px;
|
||||
border-width: 10px 10px 0 10px;
|
||||
border-style: solid;
|
||||
border-color: $darkgrey transparent;
|
||||
display: block;
|
||||
width: 0;
|
||||
} // &:before
|
||||
|
||||
// Stop :hover shadow from overflowing
|
||||
li {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
a, p {
|
||||
display: block;
|
||||
position: relative;
|
||||
padding: 10px 25px 10px 35px;
|
||||
border: none;
|
||||
color: $lightgrey !important; // It's dirty, but it's needed.
|
||||
text-transform: none;
|
||||
text-decoration: none;
|
||||
|
||||
&:hover {
|
||||
background: $blue;
|
||||
box-shadow: rgba(255,255,255,0.2) 0 1px 0 inset;
|
||||
}
|
||||
} // a, p
|
||||
|
||||
// Add a check mark to the currently active menu item
|
||||
.active a {
|
||||
@include icon($i-check) {
|
||||
position: absolute;
|
||||
top: 14px;
|
||||
left: 11px;
|
||||
}
|
||||
}
|
||||
|
||||
} // .menu
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Menu Positioning Options
|
||||
---
|
||||
Combine above classes into one usable class
|
||||
========================================================================== */
|
||||
|
||||
// This extend moves the chiclet to the top, for menus which drop down.
|
||||
.menu-drop {
|
||||
@extend .menu;
|
||||
&:before {
|
||||
top: -10px;
|
||||
bottom: auto;
|
||||
border-width:0 10px 10px 10px;
|
||||
}
|
||||
}
|
||||
|
||||
// Chiclet to the left, for menus appearing close to left edge of the screen.
|
||||
.menu-left {
|
||||
@extend .menu;
|
||||
&:before {
|
||||
left:10px;
|
||||
margin-left:0;
|
||||
}
|
||||
}
|
||||
|
||||
// Chiclet to the right, for menus appearing close to right edge of the screen.
|
||||
.menu-right {
|
||||
@extend .menu;
|
||||
&:before {
|
||||
left: auto;
|
||||
right:10px;
|
||||
margin-left:0;
|
||||
}
|
||||
}
|
||||
|
||||
// Drop left, chiclet top left.
|
||||
.menu-drop-left {
|
||||
@extend .menu;
|
||||
@extend .menu-drop;
|
||||
@extend .menu-left;
|
||||
}
|
||||
|
||||
// Drop right, chiclet top right.
|
||||
.menu-drop-right {
|
||||
@extend .menu;
|
||||
@extend .menu-drop;
|
||||
@extend .menu-right;
|
||||
}
|
@ -1,109 +0,0 @@
|
||||
/*
|
||||
* Floating header styles
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Floating Headers
|
||||
* Scroll Shadows
|
||||
*/
|
||||
|
||||
/* ==========================================================================
|
||||
Floating Headers
|
||||
========================================================================== */
|
||||
|
||||
// Semi-opaque fixed-position headers - used on content/editor
|
||||
.floatingheader {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 400;
|
||||
height: 40px;
|
||||
padding: 6px 15px 14px;
|
||||
text-transform: uppercase;
|
||||
color: $brown;
|
||||
//Transparent gradient to make bg fade out as it goes out the top.
|
||||
@include linear-gradient(top, white 0%, white 25%, rgba(255,255,255,0.9) 100%, $fallback: transparent);
|
||||
|
||||
// button,
|
||||
.button {
|
||||
display: inline-block;
|
||||
font-size: 10px;
|
||||
min-height: 20px;
|
||||
height: 20px;
|
||||
padding: 3px 4px;
|
||||
vertical-align: top;
|
||||
|
||||
&.button-back {
|
||||
position: relative;
|
||||
top: -2px;
|
||||
left: 3px;
|
||||
display: none;
|
||||
padding: 0 6px 0 3px;
|
||||
|
||||
&:active {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
&:before {
|
||||
left: -8px;
|
||||
border-width: 10px 8px 10px 0;
|
||||
}
|
||||
|
||||
@media (max-width: 800px) {
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
small {
|
||||
font-size: 0.85em;
|
||||
}
|
||||
|
||||
a,
|
||||
button {
|
||||
color: $brown;
|
||||
&:hover {
|
||||
color: $darkgrey;
|
||||
}
|
||||
}
|
||||
|
||||
} // .floatingheader
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Scroll Shadows
|
||||
---
|
||||
Special case, when scrolling, add shadows to content headers.
|
||||
========================================================================== */
|
||||
|
||||
.scrolling {
|
||||
|
||||
.floatingheader {
|
||||
box-shadow:
|
||||
rgba(0,0,0,0.02) 0 1px 2px,
|
||||
rgba(255, 255, 255, 0.5) 0 -1px 0 inset;
|
||||
|
||||
&:before {
|
||||
content: "";
|
||||
height: 40px;
|
||||
width: 80%;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 50%;
|
||||
margin-left: -40%;
|
||||
box-shadow: rgba(0,0,0,0.02) 0 2px 2px;
|
||||
}
|
||||
&:after {
|
||||
content: "";
|
||||
height: 40px;
|
||||
width: 30%;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 50%;
|
||||
margin-left: -15%;
|
||||
box-shadow: rgba(0,0,0,0.02) 0 3px 3px;
|
||||
}
|
||||
} // .floatingheader
|
||||
|
||||
} // .scrolling
|
@ -1,427 +0,0 @@
|
||||
/*
|
||||
* Form styling, for inputs, selects, checkboxes, labels etc etc.
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Labels
|
||||
* Form Wrapper
|
||||
* Form Groups
|
||||
* Fieldsets
|
||||
* Legends
|
||||
* Input, textarea & select
|
||||
* Checkboxes
|
||||
* Radio Buttons
|
||||
* Select
|
||||
*/
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Labels
|
||||
========================================================================== */
|
||||
|
||||
%label {
|
||||
display: block;
|
||||
color: $darkgrey;
|
||||
font-size: 1em;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Form Wrapper
|
||||
========================================================================== */
|
||||
|
||||
form {
|
||||
|
||||
label {
|
||||
@extend %label;
|
||||
}
|
||||
|
||||
} // form
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Form Groups
|
||||
========================================================================== */
|
||||
|
||||
.form-group {
|
||||
position: relative;
|
||||
margin-bottom: 1.6em;
|
||||
width: 100%;
|
||||
max-width: 500px;
|
||||
p {
|
||||
margin: 4px 0 0 0;
|
||||
color: #B3B2A8;
|
||||
}
|
||||
|
||||
label {
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
@media (max-width: 550px) {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
} // .form-group
|
||||
|
||||
// If the from group has an icon...
|
||||
.form-group[class*='icon-'] {
|
||||
#{$all-text-inputs} {
|
||||
padding-left: 32px;
|
||||
}
|
||||
&:before {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 11px;
|
||||
font-size: 0.9em;
|
||||
margin-top: calc(-0.45em - 1px);
|
||||
}
|
||||
} // .thing[class*='icon-']
|
||||
|
||||
// Wrapper for <select> elements
|
||||
.form-group.for-select {
|
||||
&[class*="icon-"] {
|
||||
.gh-select {
|
||||
&:before {
|
||||
left: 32px;
|
||||
}
|
||||
}
|
||||
}
|
||||
} // .form-group.for-select
|
||||
|
||||
// Wrapper for input[type="checkbox"] elements
|
||||
.form-group.for-checkbox {
|
||||
@include clearfix;
|
||||
|
||||
.checkbox,
|
||||
p {
|
||||
float: left;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 0;
|
||||
margin-left: 4px;
|
||||
}
|
||||
} // .form-group.for-checkbox
|
||||
|
||||
// Wrapper for input[type="radio"] elements
|
||||
.form-group.for-radio {
|
||||
@include clearfix;
|
||||
|
||||
label:first-child {
|
||||
display: block;
|
||||
padding-bottom: 4px;
|
||||
}
|
||||
|
||||
.gh-radio-wrapper {
|
||||
@include clearfix;
|
||||
span {
|
||||
float: left;
|
||||
}
|
||||
}
|
||||
|
||||
span:not(.gh-radio) {
|
||||
margin-top: 0;
|
||||
margin-left: 4px;
|
||||
}
|
||||
} // .form-group.for-radio
|
||||
|
||||
/* ==========================================================================
|
||||
Fieldsets
|
||||
========================================================================== */
|
||||
|
||||
fieldset {
|
||||
border: none;
|
||||
margin: 0 0 3em 0;
|
||||
padding: 0;
|
||||
} // fieldset
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Legends
|
||||
========================================================================== */
|
||||
|
||||
legend {
|
||||
display: block;
|
||||
width: 100%;
|
||||
margin: 2em 0;
|
||||
border-bottom: $lightbrown 1px solid;
|
||||
font-size: 1.2em;
|
||||
line-height: 2.0em;
|
||||
color: $brown;
|
||||
} // legend
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Input, textarea & select
|
||||
========================================================================== */
|
||||
|
||||
#{$all-text-inputs},
|
||||
textarea,
|
||||
.gh-select,
|
||||
select {
|
||||
display: block;
|
||||
padding: 8px 10px;
|
||||
width: 100%;
|
||||
border: 1px solid #E0DFD7;
|
||||
border-radius: $rounded;
|
||||
|
||||
font-size: 1.1rem;
|
||||
font-weight: normal;
|
||||
color: $darkgrey;
|
||||
|
||||
@include transition(border-color, 0.15s linear);
|
||||
|
||||
&:focus {
|
||||
border-color: $brown;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
textarea {
|
||||
width: 100%;
|
||||
max-width: 500px;
|
||||
min-width: 250px;
|
||||
height: auto;
|
||||
min-height: 6.5em;
|
||||
}
|
||||
|
||||
input[type="number"] {
|
||||
&::-webkit-inner-spin-button,
|
||||
&::-webkit-outer-spin-button {
|
||||
padding-right: 6px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* =============================================================================
|
||||
Checkboxes
|
||||
---
|
||||
<div class="form-group for-checkbox">
|
||||
<label for="permalinks">Dated Permalinks</label>
|
||||
<input id="permalinks" type="checkbox" name="general[permalinks]">
|
||||
<label class="checkbox" for="permalinks"></label>
|
||||
<p>Include the date in your post URLs</p>
|
||||
</div>
|
||||
============================================================================= */
|
||||
|
||||
// Hide the default checkbox
|
||||
input[type="checkbox"] {
|
||||
@include position(absolute, 0 0 0 -9999px);
|
||||
}
|
||||
|
||||
// Turn the label element into a fake checkbox
|
||||
.checkbox {
|
||||
position: relative;
|
||||
width: auto;
|
||||
|
||||
// Create a tick, hidden by default
|
||||
&:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 10px;
|
||||
height: 6px;
|
||||
top: 6px;
|
||||
left: 5px;
|
||||
border: 2px solid #fff;
|
||||
border-top: none;
|
||||
border-right: none;
|
||||
@include transform(rotate(-45deg));
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
// The background for the faux checkbox
|
||||
&:after {
|
||||
content: '';
|
||||
display: inline-block;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
margin-right: 5px;
|
||||
background: lighten($lightbrown, 5%);
|
||||
border-radius: $rounded;
|
||||
border: darken($lightbrown, 5%) 1px solid;
|
||||
@include transition(all 0.2s ease);
|
||||
}
|
||||
} // .checkbox
|
||||
|
||||
// Colour the checkbox correctly when checked
|
||||
input[type='checkbox'] {
|
||||
&:checked + .checkbox {
|
||||
&:after {
|
||||
background: $green;
|
||||
border-color: lighten($green, 10%);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
input[type='checkbox'] {
|
||||
|
||||
// When checkbox is checked, show the tick
|
||||
&:checked + .checkbox:before {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
&:focus {
|
||||
& + .checkbox {
|
||||
&:after {
|
||||
border: $brown 1px solid;
|
||||
}
|
||||
}
|
||||
} // &:focus
|
||||
|
||||
&:active {
|
||||
& + .checkbox {
|
||||
&:after {
|
||||
background: $lightbrown;
|
||||
}
|
||||
}
|
||||
} // &:active
|
||||
|
||||
} // input[type='checkbox']
|
||||
|
||||
|
||||
/* =============================================================================
|
||||
Radio Buttons
|
||||
---
|
||||
<div class="form-group for-radio">
|
||||
<label>The Option Title</label>
|
||||
<label class="gh-radio-wrapper">
|
||||
<input name="testing" type="radio" value="yes">
|
||||
<span class="gh-radio"></span>
|
||||
<span>Yes</span>
|
||||
</label>
|
||||
<label class="gh-radio-wrapper">
|
||||
<input name="testing" type="radio" value="no">
|
||||
<span class="gh-radio"></span>
|
||||
<span>No</span>
|
||||
</label>
|
||||
<p>What does this thing mean?</p>
|
||||
</div>
|
||||
============================================================================= */
|
||||
|
||||
// Hide the default checkbox
|
||||
input[type="radio"] {
|
||||
@include position(absolute, 0 0 0 -9999px);
|
||||
}
|
||||
|
||||
// Turn the label element into a fake checkbox
|
||||
.gh-radio {
|
||||
position: relative;
|
||||
width: auto;
|
||||
|
||||
// Create a circle, hidden by default
|
||||
&:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
top: 5px;
|
||||
left: 5px;
|
||||
opacity: 0;
|
||||
border-radius: 100%;
|
||||
background: $green;
|
||||
}
|
||||
|
||||
// The background for the faux radio
|
||||
&:after {
|
||||
content: '';
|
||||
display: inline-block;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
margin-right: 5px;
|
||||
background: lighten($lightbrown, 5%);
|
||||
border-radius: 100%;
|
||||
border: $lightbrown 1px solid;
|
||||
@include transition(all 0.2s ease);
|
||||
}
|
||||
} // .gh-radio
|
||||
|
||||
input[type='radio'] {
|
||||
|
||||
// When radio is checked, show the tick
|
||||
&:checked + .gh-radio:before {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
&:focus {
|
||||
& + .gh-radio {
|
||||
&:after {
|
||||
border: $brown 1px solid;
|
||||
}
|
||||
}
|
||||
} // &:focus
|
||||
|
||||
} // input[type='radio']
|
||||
|
||||
|
||||
/* =============================================================================
|
||||
Select Component
|
||||
---
|
||||
<span class="gh-select">
|
||||
{{view Ember.Select
|
||||
id="activeTheme"
|
||||
name="general[activeTheme]"
|
||||
content=themes
|
||||
optionValuePath="content.name"
|
||||
optionLabelPath="content.label"
|
||||
value=activeTheme
|
||||
selection=selectedTheme}}
|
||||
</span>
|
||||
============================================================================= */
|
||||
|
||||
.gh-select {
|
||||
position: relative;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
padding: 0;
|
||||
border-width: 0;
|
||||
|
||||
@include icon-after($i-chevron-down, 0.85em, $midbrown) {
|
||||
@include position(absolute, 50% 0.8em null null);
|
||||
margin-top: -0.5em;
|
||||
pointer-events: none;
|
||||
};
|
||||
|
||||
select {
|
||||
appearance: none;
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: window;
|
||||
text-indent: 0.01px;
|
||||
text-overflow: "";
|
||||
background: #fff;
|
||||
outline: none;
|
||||
padding: 8px 10px;
|
||||
line-height: normal;
|
||||
|
||||
// This hides native gh-select button arrow in IE
|
||||
&::-ms-expand {
|
||||
display: none;
|
||||
}
|
||||
|
||||
// Hover style - Not used, but works
|
||||
&:hover {}
|
||||
|
||||
// Focus style
|
||||
&:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
// This hides focus around selected option in FF
|
||||
&:-moz-focusring {
|
||||
color: transparent;
|
||||
text-shadow: 0 0 0 #000;
|
||||
}
|
||||
} // select
|
||||
} // .gh-select
|
||||
|
||||
// Firefox-specific size fixes
|
||||
@-moz-document url-prefix() {
|
||||
.gh-select {
|
||||
border-width: 1px;
|
||||
select {
|
||||
padding: 7px 10px 7px 8px;
|
||||
}
|
||||
}
|
||||
} // @-moz-document
|
@ -1,398 +0,0 @@
|
||||
/*
|
||||
* Icon classes and utility mixins
|
||||
* The icons are Pictos, by Drew Wilson - http://pictos.cc/
|
||||
* Icon-font is generated by http://icomoon.co
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* @font-face rule
|
||||
* The Icon (before) Mixin
|
||||
* The Icon (after) Mixin
|
||||
* Icon Variables
|
||||
* Icon Class Styles
|
||||
* Icon Classes
|
||||
*/
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
@font-face rule
|
||||
========================================================================== */
|
||||
|
||||
@font-face {
|
||||
font-family: 'GhostIcons';
|
||||
src:url('../fonts/icons.eot');
|
||||
src:url('../fonts/icons.eot?#iefix') format('embedded-opentype'),
|
||||
url('../fonts/icons.woff') format('woff'),
|
||||
url('../fonts/icons.ttf') format('truetype'),
|
||||
url('../fonts/icons.svg#icons') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
The Icon (before) Mixin
|
||||
========================================================================== */
|
||||
|
||||
@mixin icon($char, $size: '', $color: '') {
|
||||
&:before {
|
||||
// Base
|
||||
font-family: "GhostIcons";
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
vertical-align: -7%;
|
||||
text-transform:none;
|
||||
speak: none;
|
||||
line-height: 1;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
|
||||
//Function
|
||||
content: '#{$char}';
|
||||
@if $size != '' {
|
||||
font-size: $size;
|
||||
}
|
||||
@if $color != '' {
|
||||
color: $color;
|
||||
}
|
||||
@content;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
text-decoration:none;
|
||||
}
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
The Icon (after) Mixin
|
||||
========================================================================== */
|
||||
|
||||
@mixin icon-after($char, $size: '', $color: '') {
|
||||
&:after {
|
||||
// Base
|
||||
font-family: "GhostIcons";
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
vertical-align: -7%;
|
||||
text-transform:none;
|
||||
speak: none;
|
||||
line-height: 1;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
|
||||
// Function
|
||||
content: '#{$char}';
|
||||
@if $size != '' {
|
||||
font-size: $size;
|
||||
}
|
||||
@if $color != '' {
|
||||
color: $color;
|
||||
}
|
||||
@content;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
text-decoration:none;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Icon Variables
|
||||
---
|
||||
For accessibility, icon characters in the icon font are stored in Unicode's
|
||||
Private Use Area characters. This means that screen readers won't attempt to
|
||||
read them out loud. For code maintainability, we then store these Unicode
|
||||
references inside Sass variables.
|
||||
========================================================================== */
|
||||
|
||||
// Placeholder
|
||||
$i: \e018;
|
||||
|
||||
// Icons
|
||||
$i-ghost: \e000;
|
||||
$i-ghost-logo: \e600;
|
||||
$i-chevron-down: \e001;
|
||||
$i-users: \e002;
|
||||
$i-tag: \e003;
|
||||
$i-tablet: \e004;
|
||||
$i-menu: \e005;
|
||||
$i-settings: \e006;
|
||||
$i-search: \e007;
|
||||
$i-search-left: \e008;
|
||||
$i-rss: \e009;
|
||||
$i-preview: \e00a;
|
||||
$i-app: \e00b;
|
||||
$i-pin: \e00c;
|
||||
$i-pc: \e00d;
|
||||
$i-pacman: \e00e;
|
||||
$i-edit: \e00f;
|
||||
$i-mobile: \e010;
|
||||
$i-image: \e011;
|
||||
$i-mail: \e012;
|
||||
$i-list: \e013;
|
||||
$i-info: \e014;
|
||||
$i-home: \e015;
|
||||
$i-grid: \e016;
|
||||
$i-fullscreen: \e017;
|
||||
$i-question: \e018;
|
||||
$i-external: \e019;
|
||||
$i-error: \e01a;
|
||||
$i-comments: \e01b;
|
||||
$i-close: \e01c;
|
||||
$i-chevron: \e01d;
|
||||
$i-chevron-left: \e11d;
|
||||
$i-calendar: \e01e;
|
||||
$i-archive: \e01f;
|
||||
$i-services: \e020;
|
||||
$i-appearance: \e021;
|
||||
$i-video: \e022;
|
||||
$i-trash: \e023;
|
||||
$i-reply: \e024;
|
||||
$i-stats: \e025;
|
||||
$i-featured: \e026;
|
||||
$i-unfeatured: \e027;
|
||||
$i-clock: \e028;
|
||||
$i-settings2: \e029;
|
||||
$i-camera: \e02a;
|
||||
$i-power: \e02b;
|
||||
$i-lock: \e02c;
|
||||
$i-content: \e02d;
|
||||
$i-user: \e02e;
|
||||
$i-support: \e02f;
|
||||
$i-success: \e030;
|
||||
$i-notification: \e031;
|
||||
$i-add: \e032;
|
||||
$i-check: \e033;
|
||||
$i-x: \e034;
|
||||
$i-link: \e035;
|
||||
$i-camera: \e036;
|
||||
$i-repost: \e037;
|
||||
$i-weather-rain: \e038;
|
||||
$i-weather-sun: \e039;
|
||||
$i-weather-partial: \e03a;
|
||||
$i-weather-snow: \e03b;
|
||||
$i-weather-cloudy: \e03c;
|
||||
$i-lightning: \e03d;
|
||||
$i-code: \e03e;
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Icon Class Styles
|
||||
========================================================================== */
|
||||
|
||||
[class*=icon-] {
|
||||
&:before {
|
||||
// Base
|
||||
font-family: "GhostIcons";
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
vertical-align: -7%;
|
||||
text-transform:none;
|
||||
speak: none;
|
||||
line-height: 1;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Icon Classes
|
||||
========================================================================== */
|
||||
|
||||
.icon-ghost:before {
|
||||
content: '#{$i-ghost}';
|
||||
}
|
||||
.icon-ghost-logo:before {
|
||||
content: '#{$i-ghost-logo}';
|
||||
}
|
||||
.icon-chevron-down:before {
|
||||
content: '#{$i-chevron-down}';
|
||||
}
|
||||
.icon-users:before {
|
||||
content: '#{$i-users}';
|
||||
}
|
||||
.icon-tag:before {
|
||||
content: '#{$i-tag}';
|
||||
}
|
||||
.icon-tablet:before {
|
||||
content: '#{$i-tablet}';
|
||||
}
|
||||
.icon-menu:before {
|
||||
content: '#{$i-menu}';
|
||||
}
|
||||
.icon-settings:before {
|
||||
content: '#{$i-settings}';
|
||||
}
|
||||
.icon-search:before {
|
||||
content: '#{$i-search}';
|
||||
}
|
||||
.icon-search-left:before {
|
||||
content: '#{$i-search-left}';
|
||||
}
|
||||
.icon-rss:before {
|
||||
content: '#{$i-rss}';
|
||||
}
|
||||
.icon-preview:before {
|
||||
content: '#{$i-preview}';
|
||||
}
|
||||
.icon-app:before {
|
||||
content: '#{$i-app}';
|
||||
}
|
||||
.icon-pin:before {
|
||||
content: '#{$i-pin}';
|
||||
}
|
||||
.icon-pc:before {
|
||||
content: '#{$i-pc}';
|
||||
}
|
||||
.icon-pacman:before {
|
||||
content: '#{$i-pacman}';
|
||||
}
|
||||
.icon-edit:before {
|
||||
content: '#{$i-edit}';
|
||||
}
|
||||
.icon-mobile:before {
|
||||
content: '#{$i-mobile}';
|
||||
}
|
||||
.icon-image:before {
|
||||
content: '#{$i-image}';
|
||||
}
|
||||
.icon-mail:before {
|
||||
content: '#{$i-mail}';
|
||||
}
|
||||
.icon-list:before {
|
||||
content: '#{$i-list}';
|
||||
}
|
||||
.icon-info:before {
|
||||
content: '#{$i-info}';
|
||||
}
|
||||
.icon-home:before {
|
||||
content: '#{$i-home}';
|
||||
}
|
||||
.icon-grid:before {
|
||||
content: '#{$i-grid}';
|
||||
}
|
||||
.icon-fullscreen:before {
|
||||
content: '#{$i-fullscreen}';
|
||||
}
|
||||
.icon-question:before {
|
||||
content: '#{$i-question}';
|
||||
}
|
||||
.icon-external:before {
|
||||
content: '#{$i-external}';
|
||||
}
|
||||
.icon-error:before {
|
||||
content: '#{$i-error}';
|
||||
}
|
||||
.icon-comments:before {
|
||||
content: '#{$i-comments}';
|
||||
}
|
||||
.icon-close:before {
|
||||
content: '#{$i-close}';
|
||||
}
|
||||
.icon-chevron:before {
|
||||
content: '#{$i-chevron}';
|
||||
}
|
||||
.icon-chevron-left:before {
|
||||
content: '#{$i-chevron-left}';
|
||||
}
|
||||
.icon-calendar:before {
|
||||
content: '#{$i-calendar}';
|
||||
}
|
||||
.icon-archive:before {
|
||||
content: '#{$i-archive}';
|
||||
}
|
||||
.icon-services:before {
|
||||
content: '#{$i-services}';
|
||||
}
|
||||
.icon-appearance:before {
|
||||
content: '#{$i-appearance}';
|
||||
}
|
||||
.icon-video:before {
|
||||
content: '#{$i-video}';
|
||||
}
|
||||
.icon-trash:before {
|
||||
content: '#{$i-trash}';
|
||||
}
|
||||
.icon-reply:before {
|
||||
content: '#{$i-reply}';
|
||||
}
|
||||
.icon-stats:before {
|
||||
content: '#{$i-stats}';
|
||||
}
|
||||
.icon-featured:before {
|
||||
content: '#{$i-featured}';
|
||||
}
|
||||
.icon-unfeatured:before {
|
||||
content: '#{$i-unfeatured}';
|
||||
}
|
||||
.icon-clock:before {
|
||||
content: '#{$i-clock}';
|
||||
}
|
||||
.icon-settings2:before {
|
||||
content: '#{$i-settings2}';
|
||||
}
|
||||
.icon-camera:before {
|
||||
content: '#{$i-camera}';
|
||||
}
|
||||
.icon-power:before {
|
||||
content: '#{$i-power}';
|
||||
}
|
||||
.icon-lock:before {
|
||||
content: '#{$i-lock}';
|
||||
}
|
||||
.icon-content:before {
|
||||
content: '#{$i-content}';
|
||||
}
|
||||
.icon-user:before {
|
||||
content: '#{$i-user}';
|
||||
}
|
||||
.icon-support:before {
|
||||
content: '#{$i-support}';
|
||||
}
|
||||
.icon-success:before {
|
||||
content: '#{$i-success}';
|
||||
}
|
||||
.icon-notification:before {
|
||||
content: '#{$i-notification}';
|
||||
}
|
||||
.icon-add:before {
|
||||
content: '#{$i-add}';
|
||||
}
|
||||
.icon-check:before {
|
||||
content: '#{$i-check}';
|
||||
}
|
||||
.icon-x:before {
|
||||
content: '#{$i-x}';
|
||||
}
|
||||
.icon-link:before {
|
||||
content: '#{$i-link}';
|
||||
}
|
||||
.icon-camera:before {
|
||||
content: '#{$i-camera}';
|
||||
}
|
||||
.icon-repost:before {
|
||||
content: '#{$i-repost}';
|
||||
}
|
||||
.icon-weather-rain:before {
|
||||
content: '#{$i-weather-rain}';
|
||||
}
|
||||
.icon-weather-sun:before {
|
||||
content: '#{$i-weather-sun}';
|
||||
}
|
||||
.icon-weather-partial:before {
|
||||
content: '#{$i-weather-partial}';
|
||||
}
|
||||
.icon-weather-snow:before {
|
||||
content: '#{$i-weather-snow}';
|
||||
}
|
||||
.icon-weather-cloudy:before {
|
||||
content: '#{$i-weather-cloudy}';
|
||||
}
|
||||
.icon-lightning:before {
|
||||
content: '#{$i-lightning}';
|
||||
}
|
@ -1,122 +0,0 @@
|
||||
/*
|
||||
* Generic layout classes, applying both structure and visual design
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Globals
|
||||
* Helpers
|
||||
* Floats
|
||||
* Table Layout
|
||||
* Box
|
||||
* Main
|
||||
*/
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Globals
|
||||
========================================================================== */
|
||||
|
||||
body {
|
||||
width: 100%;
|
||||
background: $lightbrown;
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Helpers
|
||||
========================================================================== */
|
||||
|
||||
.clearfix {
|
||||
@include clearfix;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Floats
|
||||
========================================================================== */
|
||||
|
||||
.right {
|
||||
float: right;
|
||||
}
|
||||
.left {
|
||||
float: left;
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Table Layout
|
||||
========================================================================== */
|
||||
|
||||
.vertical {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Box
|
||||
========================================================================== */
|
||||
|
||||
.box {
|
||||
padding: 15px;
|
||||
margin-bottom: 15px;
|
||||
background: #fff;
|
||||
position: relative;
|
||||
box-shadow: $shadow;
|
||||
|
||||
header {
|
||||
height:14px;
|
||||
border-bottom: 1px solid $lightbrown;
|
||||
padding-bottom: 15px;
|
||||
margin-bottom: 15px;
|
||||
text-transform: uppercase;
|
||||
font-size:0.85em;
|
||||
color: $brown;
|
||||
}
|
||||
|
||||
footer {
|
||||
height:14px;
|
||||
border-top: 1px solid $lightbrown;
|
||||
padding-top: 10px;
|
||||
margin-top:15px;
|
||||
text-transform: uppercase;
|
||||
font-size:0.85em;
|
||||
color: $brown;
|
||||
}
|
||||
|
||||
header a,
|
||||
footer a {
|
||||
color:$brown;
|
||||
&:hover {
|
||||
color:$darkgrey;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Main
|
||||
---
|
||||
Make t/r/b/l values variables where needed
|
||||
========================================================================== */
|
||||
|
||||
main {
|
||||
position: absolute;
|
||||
top: 55px;
|
||||
right: 15px;
|
||||
bottom: 0;
|
||||
left: 15px;
|
||||
padding: 0;
|
||||
|
||||
@media (max-width: 400px) {
|
||||
top: 40px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
}
|
@ -1,149 +0,0 @@
|
||||
/*
|
||||
* Modals styles
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Modal Container
|
||||
*/
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Modal Container
|
||||
========================================================================== */
|
||||
|
||||
#modal-container { // TODO: This should probably not be an ID
|
||||
display: none;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
overflow-x: auto;
|
||||
overflow-y: scroll;
|
||||
z-index: 1040;
|
||||
@include transition(all 0.15s linear 0s);
|
||||
@include transform(translateZ(0));
|
||||
}
|
||||
|
||||
.fade {
|
||||
opacity: 0;
|
||||
@include transition(opacity 0.2s linear 0s);
|
||||
@include transform(translateZ(0));
|
||||
|
||||
&.in {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.modal-background {
|
||||
display: none;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
background: rgba(0,0,0,0.6);
|
||||
z-index: 1030;
|
||||
}
|
||||
|
||||
.modal {
|
||||
left: 50%;
|
||||
right: auto;
|
||||
width: 450px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
padding-top: 30px;
|
||||
padding-bottom: 30px;
|
||||
z-index: 1050;
|
||||
pointer-events: auto;
|
||||
|
||||
@media (max-width: 800px) {
|
||||
width: auto;
|
||||
padding: 10px;
|
||||
};
|
||||
|
||||
button {
|
||||
min-width: 100px;
|
||||
}
|
||||
|
||||
@media (max-width: 800px) {
|
||||
width: 100%;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
// Uploaders
|
||||
.image-uploader,
|
||||
.pre-image-uploader {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.modal-action {
|
||||
@extend .modal;
|
||||
padding: 60px 0 30px;
|
||||
|
||||
@media (max-width: 800px) {
|
||||
padding: 30px 0;
|
||||
}
|
||||
}
|
||||
|
||||
.modal-content {
|
||||
position: relative;
|
||||
padding: 18px;
|
||||
background-clip: padding-box;
|
||||
background-color: #FFFFFF;
|
||||
border-radius: $rounded;
|
||||
box-shadow: rgba(0,0,0,0.2) 0 0 0 6px;
|
||||
|
||||
.close {
|
||||
position: absolute;
|
||||
top: 19px;
|
||||
right: 19px;
|
||||
width: 16px;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: none;
|
||||
z-index: 9999;
|
||||
|
||||
@include icon($i-close, 1.4rem, $midgrey) {
|
||||
@include transition(color 0.3s linear);
|
||||
};
|
||||
&:hover:before {
|
||||
color: $grey;
|
||||
}
|
||||
}
|
||||
}
|
||||
.modal-header {
|
||||
position: relative;
|
||||
|
||||
h1 {
|
||||
display: inline-block;
|
||||
margin: 0;
|
||||
font-size: 1.85em;
|
||||
font-weight: 100;
|
||||
}
|
||||
}
|
||||
|
||||
.modal-body {
|
||||
position: relative;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.modal-footer {
|
||||
margin-top: 20px;
|
||||
.reject-button-class {
|
||||
@extend .button;
|
||||
}
|
||||
}
|
||||
|
||||
.modal-style-wide {
|
||||
width: 550px;
|
||||
|
||||
@media (max-width: 800px) {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.modal-style-centered {
|
||||
text-align: center;
|
||||
}
|
@ -1,380 +0,0 @@
|
||||
/*
|
||||
* Navbar styling
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Ghost Logo
|
||||
* Nav Bar
|
||||
* Mobile Navigation
|
||||
*/
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Ghost Logo
|
||||
========================================================================== */
|
||||
|
||||
.ghost-logo {
|
||||
@include icon($i-ghost) {
|
||||
line-height: 0;
|
||||
}
|
||||
display: block;
|
||||
float: left;
|
||||
height: 40px;
|
||||
padding: 12px 15px;
|
||||
color: lighten($grey, 10%);
|
||||
@include box-sizing(border-box);
|
||||
|
||||
&:hover,
|
||||
&:focus {
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
|
||||
.ghost-logo:hover,
|
||||
.ghost-logo:focus {
|
||||
color: $lightgrey;
|
||||
background: darken($darkgrey, 2%);
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Nav Bar
|
||||
========================================================================== */
|
||||
|
||||
.navbar {
|
||||
height: 40px;
|
||||
font-size: 0.85em;
|
||||
background: $darkgrey;
|
||||
@media (max-width: 1000px) {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
// The main navbar styles, apply to to everything.
|
||||
nav {
|
||||
|
||||
ul {
|
||||
float: left;
|
||||
border-left: $grey 1px solid;
|
||||
border-top: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
li {
|
||||
float: left;
|
||||
font-size: 1em;
|
||||
position: relative;
|
||||
border-right: $grey 1px solid;
|
||||
|
||||
a {
|
||||
display: block;
|
||||
height: 40px;
|
||||
padding: 11px 15px;
|
||||
border-bottom: none;
|
||||
color: $midgrey;
|
||||
text-transform: uppercase;
|
||||
@include box-sizing(border-box);
|
||||
}
|
||||
|
||||
a:hover,
|
||||
a:focus,
|
||||
&.active a {
|
||||
color: $lightgrey;
|
||||
text-decoration: none;
|
||||
position: relative;
|
||||
background: darken($grey, 2%);
|
||||
box-shadow: 0 -2px 2px rgba(0,0,0,0.2) inset;
|
||||
}
|
||||
|
||||
// Make a little arrow pointing up at the currently active menu item
|
||||
&.active a:after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 50%;
|
||||
margin-left: -5px;
|
||||
border-width: 0 5px 5px 5px;
|
||||
border-style: solid;
|
||||
border-color: $lightbrown transparent;
|
||||
display: block;
|
||||
width: 0;
|
||||
|
||||
@media (max-width: 400px) {
|
||||
border-color: #fff transparent;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
ul {
|
||||
position: absolute;
|
||||
top: 40px;
|
||||
right: 0;
|
||||
min-width: 200px;
|
||||
background: $darkgrey;
|
||||
}
|
||||
|
||||
li {
|
||||
width: 100%;
|
||||
border-right: none;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Add some icons to specific nav items
|
||||
a:before {
|
||||
margin-right: 5px;
|
||||
}
|
||||
.dashboard a {
|
||||
@include icon($i-stats) {
|
||||
vertical-align: -10%;
|
||||
}
|
||||
}
|
||||
.content a {
|
||||
@include icon($i-content);
|
||||
}
|
||||
.editor a {
|
||||
@include icon($i-add);
|
||||
}
|
||||
.settings a {
|
||||
@include icon($i-settings2);
|
||||
}
|
||||
|
||||
} //nav ul
|
||||
|
||||
// Style any nav items which have dropdowns
|
||||
.subnav {
|
||||
position: relative;
|
||||
|
||||
// The anchor which toggles the menu open/closed
|
||||
> a {
|
||||
@include icon-after($i-chevron-down, 8px) {
|
||||
margin-left: 8px;
|
||||
};
|
||||
|
||||
&.active {
|
||||
color: $lightgrey;
|
||||
background: darken($grey, 3%);
|
||||
@include transition(none);
|
||||
box-shadow: none;
|
||||
}
|
||||
}
|
||||
|
||||
// The dropdown menu
|
||||
ul {
|
||||
display: none;
|
||||
padding: 7px 0;
|
||||
border-left: none;
|
||||
position: absolute;
|
||||
top: 40px;
|
||||
left: -1px;
|
||||
z-index: 800;
|
||||
background: darken($grey, 3%);
|
||||
box-shadow: rgba(0,0,0,0.2) 0 4px 6px;
|
||||
}
|
||||
|
||||
li {
|
||||
list-style: none;
|
||||
a {
|
||||
color: $lightgrey;
|
||||
|
||||
&:hover,
|
||||
&:focus {
|
||||
background: darken($darkgrey, 10%);
|
||||
@include transition(none);
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
&:before {
|
||||
margin-right: 1em;
|
||||
} // space for icons
|
||||
}
|
||||
}
|
||||
|
||||
.divider {
|
||||
height: 1px;
|
||||
margin: 7px 0;
|
||||
overflow: hidden;
|
||||
background: $grey;
|
||||
}
|
||||
|
||||
}//.subnav
|
||||
|
||||
}//.navbar
|
||||
|
||||
// The user menu in the top right corner of the screen
|
||||
.usermenu.subnav {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
border-right: none;
|
||||
border-left: $grey 1px solid;
|
||||
|
||||
> a {
|
||||
padding-left: 43px; //15px + 18px avatar + 10px
|
||||
}
|
||||
|
||||
.avatar {
|
||||
height: 18px;
|
||||
width: 18px;
|
||||
border-radius: 50px;
|
||||
position: absolute;
|
||||
top: 11px;
|
||||
left: 15px;
|
||||
}
|
||||
|
||||
> ul {
|
||||
right: 0;
|
||||
left: auto;
|
||||
}
|
||||
|
||||
//Add some icons to specific items
|
||||
.usermenu-profile a {
|
||||
@include icon($i-user);
|
||||
}
|
||||
.usermenu-help a {
|
||||
@include icon($i-support, 1.1em);
|
||||
}
|
||||
.usermenu-shortcuts a {
|
||||
@include icon($i-pc);
|
||||
}
|
||||
.usermenu-signout a {
|
||||
@include icon($i-power);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Mobile Navigation
|
||||
========================================================================== */
|
||||
|
||||
// Yo dawg, I heard you like nav menus so I put nav menus in your nav menus
|
||||
#global-header {
|
||||
@media (max-width: 650px) {
|
||||
|
||||
.ghost-logo {
|
||||
@include icon($i-menu, 14px);
|
||||
height: 40px;
|
||||
width: 40px;
|
||||
text-align: center;
|
||||
padding:12px 0;
|
||||
@include transition(margin-left 0.3s ease 0s);
|
||||
.off-canvas & {
|
||||
margin-left: 280px;
|
||||
@include transition(margin-left 0.3s ease 0.1s);
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
position: fixed;
|
||||
overflow: auto;
|
||||
top: 0;
|
||||
right: auto;
|
||||
bottom: 0;
|
||||
left: -280px;
|
||||
z-index: 980;
|
||||
width: 280px;
|
||||
padding-top: 40px;
|
||||
font-weight:normal;
|
||||
background: $darkgrey;
|
||||
border-left: none;
|
||||
@include transition(left 0.3s ease 0.2s);
|
||||
.off-canvas & {
|
||||
left: 0;
|
||||
@include transition(left 0.3s ease 0s);
|
||||
}
|
||||
}
|
||||
|
||||
li {
|
||||
float: none;
|
||||
border-right: none;
|
||||
border-bottom: $grey 1px solid;
|
||||
|
||||
a:hover,
|
||||
a:focus,
|
||||
&.active a {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
&.active a:after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
a:before {
|
||||
margin-right: 1em;
|
||||
}
|
||||
|
||||
ul {
|
||||
position: static;
|
||||
min-width: 0;
|
||||
background: $darkgrey;
|
||||
}
|
||||
|
||||
li {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.usermenu {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: auto;
|
||||
bottom: auto;
|
||||
left: -280px;
|
||||
height: 40px;
|
||||
z-index: 990;
|
||||
width: 279px;
|
||||
border-left: none;
|
||||
border-right: darken($grey, 7%) 1px solid;
|
||||
border-bottom: darken($grey, 5%) 1px solid;
|
||||
@include gradient(darken($darkgrey, 8%), darken($darkgrey, 3%));
|
||||
@include transition(left 0.3s ease 0.2s);
|
||||
.off-canvas & {
|
||||
left: 0;
|
||||
@include transition(left 0.3s ease 0s);
|
||||
}
|
||||
> a {
|
||||
&:hover,
|
||||
&:focus {
|
||||
background: inherit;
|
||||
}
|
||||
&.active {
|
||||
background: darken($grey, 3%);
|
||||
}
|
||||
}
|
||||
|
||||
> ul {
|
||||
padding: 0;
|
||||
box-shadow: none;
|
||||
width: 100%;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
.open {
|
||||
box-shadow: rgba(0,0,0,0.4) 0 10px 20px;
|
||||
}
|
||||
|
||||
li {
|
||||
border-bottom: darken($grey, 3%) 1px solid;
|
||||
|
||||
a {
|
||||
background: darken($grey, 3%);
|
||||
|
||||
&:hover,
|
||||
&:focus {
|
||||
background: darken($grey, 8%);
|
||||
}
|
||||
&:before {
|
||||
margin-right: 1em;
|
||||
} // space for icons
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.divider {
|
||||
display: none;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
@ -1,42 +0,0 @@
|
||||
/*
|
||||
* Navigation Menus
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Nav
|
||||
*/
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Nav
|
||||
========================================================================== */
|
||||
|
||||
nav {
|
||||
ul {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border-top: $lightbrown 1px solid;
|
||||
}
|
||||
|
||||
li {
|
||||
a {
|
||||
display: block;
|
||||
padding: 10px 15px;
|
||||
color: $brown;
|
||||
border-bottom: $lightbrown 1px solid;
|
||||
|
||||
&:hover,
|
||||
&:focus {
|
||||
color: $darkgrey;
|
||||
background: $lightbrown;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
&:before {
|
||||
margin-right: 1em;
|
||||
} // Make space for icons
|
||||
|
||||
}
|
||||
}
|
||||
}
|
@ -1,130 +0,0 @@
|
||||
/*
|
||||
* Button classes, including
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Buttons
|
||||
* Split Buttons
|
||||
*/
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Notifications
|
||||
========================================================================== */
|
||||
|
||||
.notifications {
|
||||
|
||||
@media (min-width: 401px) {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 980;
|
||||
width: 300px;
|
||||
}
|
||||
|
||||
@media (max-width: 400px) {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 9999;
|
||||
}
|
||||
}
|
||||
|
||||
.js-bb-notification {
|
||||
@include transform(translateZ(0));
|
||||
}
|
||||
|
||||
.notification {
|
||||
@include icon($i-notification) {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 100%;
|
||||
width: 44px;
|
||||
padding: 14px 15px;
|
||||
text-align: center;
|
||||
color: rgba(255,255,255,0.8);
|
||||
background: rgba(0,0,0,0.1);
|
||||
};
|
||||
width: 100%;
|
||||
min-height: 40px;
|
||||
max-height: 253px;
|
||||
margin: 0 0 15px 0;
|
||||
color: rgba(255,255,255,0.9);
|
||||
background: $blue;
|
||||
position: relative;
|
||||
box-shadow: $shadow;
|
||||
@include transform(translateZ(0));
|
||||
|
||||
@media (max-width: 400px) {
|
||||
margin-bottom: 1px;
|
||||
}
|
||||
|
||||
.notification-message {
|
||||
display: block;
|
||||
padding: 10px 43px 10px 57px;
|
||||
max-height: 253px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.close {
|
||||
@include icon-after($i-close) {
|
||||
padding: 6px;
|
||||
position: absolute;
|
||||
top: 8px;
|
||||
right: 9px;
|
||||
};
|
||||
color: rgba(255,255,255,0.6);
|
||||
&:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
a {
|
||||
color: inherit;
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
.notification-success {
|
||||
@extend .notification;
|
||||
@include icon($i-success);
|
||||
background: $green;
|
||||
|
||||
&.notification-passive {
|
||||
@include animation(fade-out 1s linear);
|
||||
@include animation-delay(3s);
|
||||
@include animation-iteration-count(1);
|
||||
@include animation-fill-mode(forwards);
|
||||
}
|
||||
|
||||
&.notification-passive:hover {
|
||||
@include animation(fade-in-snap 0.2s linear);
|
||||
}
|
||||
}
|
||||
|
||||
.notification-error {
|
||||
@extend .notification;
|
||||
@include icon($i-error);
|
||||
background: $red;
|
||||
}
|
||||
|
||||
|
||||
.notification-warn {
|
||||
@extend .notification;
|
||||
@include icon($i-info);
|
||||
background: $orange;
|
||||
}
|
||||
|
||||
.notification-info {
|
||||
@extend .notification;
|
||||
@include icon($i-info);
|
||||
background: $blue;
|
||||
}
|
||||
|
||||
// Hide extra space taken up by update notification
|
||||
.update-available main {
|
||||
bottom: 56px;
|
||||
}
|
@ -1,98 +0,0 @@
|
||||
/*
|
||||
* NProgress styles
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* NProgress
|
||||
* Keyframes
|
||||
*/
|
||||
|
||||
/* ==========================================================================
|
||||
NProgress
|
||||
========================================================================== */
|
||||
|
||||
/* Make clicks pass-through */
|
||||
#nprogress {
|
||||
pointer-events: none;
|
||||
-webkit-pointer-events: none;
|
||||
}
|
||||
|
||||
#nprogress .bar {
|
||||
background: $blue;
|
||||
|
||||
position: fixed;
|
||||
z-index: 100;
|
||||
top: 0;
|
||||
left: 0;
|
||||
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
}
|
||||
|
||||
/* Fancy blur effect */
|
||||
#nprogress .peg {
|
||||
display: block;
|
||||
position: absolute;
|
||||
right: 0px;
|
||||
width: 100px;
|
||||
height: 100%;
|
||||
box-shadow: 0 0 10px $blue, 0 0 5px $blue;
|
||||
opacity: 1.0;
|
||||
|
||||
-webkit-transform: rotate(3deg) translate(0px, -4px);
|
||||
-moz-transform: rotate(3deg) translate(0px, -4px);
|
||||
-ms-transform: rotate(3deg) translate(0px, -4px);
|
||||
-o-transform: rotate(3deg) translate(0px, -4px);
|
||||
transform: rotate(3deg) translate(0px, -4px);
|
||||
}
|
||||
|
||||
/* Remove these to get rid of the spinner */
|
||||
#nprogress .spinner {
|
||||
display: block;
|
||||
position: fixed;
|
||||
z-index: 100;
|
||||
top: 15px;
|
||||
right: 15px;
|
||||
}
|
||||
|
||||
#nprogress .spinner-icon {
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
|
||||
border: solid 2px transparent;
|
||||
border-top-color: $blue;
|
||||
border-left-color: $blue;
|
||||
border-radius: 10px;
|
||||
|
||||
-webkit-animation: nprogress-spinner 400ms linear infinite;
|
||||
-moz-animation: nprogress-spinner 400ms linear infinite;
|
||||
-ms-animation: nprogress-spinner 400ms linear infinite;
|
||||
-o-animation: nprogress-spinner 400ms linear infinite;
|
||||
animation: nprogress-spinner 400ms linear infinite;
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Keyframes
|
||||
========================================================================== */
|
||||
|
||||
@-webkit-keyframes nprogress-spinner {
|
||||
0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
|
||||
100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
|
||||
}
|
||||
@-moz-keyframes nprogress-spinner {
|
||||
0% { -moz-transform: rotate(0deg); transform: rotate(0deg); }
|
||||
100% { -moz-transform: rotate(360deg); transform: rotate(360deg); }
|
||||
}
|
||||
@-o-keyframes nprogress-spinner {
|
||||
0% { -o-transform: rotate(0deg); transform: rotate(0deg); }
|
||||
100% { -o-transform: rotate(360deg); transform: rotate(360deg); }
|
||||
}
|
||||
@-ms-keyframes nprogress-spinner {
|
||||
0% { -ms-transform: rotate(0deg); transform: rotate(0deg); }
|
||||
100% { -ms-transform: rotate(360deg); transform: rotate(360deg); }
|
||||
}
|
||||
@keyframes nprogress-spinner {
|
||||
0% { transform: rotate(0deg); transform: rotate(0deg); }
|
||||
100% { transform: rotate(360deg); transform: rotate(360deg); }
|
||||
}
|
@ -1,147 +0,0 @@
|
||||
/*
|
||||
* Object list styles
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Object List
|
||||
*/
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Object List
|
||||
========================================================================== */
|
||||
|
||||
.invited-users {
|
||||
margin-bottom: 34px;
|
||||
}
|
||||
|
||||
.object-list-title {
|
||||
font-size: 13px;
|
||||
font-weight: normal;
|
||||
color: $midbrown;
|
||||
margin-bottom: 14px;
|
||||
} // .object-list-title
|
||||
|
||||
.object-list-item {
|
||||
|
||||
@media (max-width: 500px) {
|
||||
display: block;
|
||||
padding: 15px 0;
|
||||
@include clearfix;
|
||||
}
|
||||
|
||||
@media (min-width: 501px) {
|
||||
@include display(flex);
|
||||
@include justify-content(start);
|
||||
@include align-items(center);
|
||||
padding: 0 15px;
|
||||
}
|
||||
|
||||
border-top: 1px solid $lightbrown;
|
||||
min-height: 68px;
|
||||
|
||||
} // .object-list-item
|
||||
|
||||
a.object-list-item {
|
||||
text-decoration: none;
|
||||
&:hover {
|
||||
background: lighten($lightbrown, 5%);
|
||||
}
|
||||
&:last-of-type:hover {
|
||||
box-shadow: inset 0px -1px 0px $lightbrown;
|
||||
}
|
||||
}
|
||||
|
||||
.object-list-item-icon {
|
||||
width: 35px;
|
||||
height: 35px;
|
||||
display: block;
|
||||
border-radius: 100%;
|
||||
background: $lightbrown;
|
||||
font-size: 0px;
|
||||
color: transparent;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
&:before {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 0;
|
||||
right: 0;
|
||||
margin-top: -7px;
|
||||
text-align: center;
|
||||
color: $brown;
|
||||
font-size: 14px;
|
||||
}
|
||||
} // .object-list-item-icon
|
||||
|
||||
.object-list-item-figure {
|
||||
width: 35px;
|
||||
border-radius: 100%;
|
||||
display: block;
|
||||
border: 1px solid #979797;
|
||||
} // .object-list-item-figure
|
||||
|
||||
.object-list-item-icon,
|
||||
.object-list-item-figure {
|
||||
@media (max-width: 500px) {
|
||||
float: left;
|
||||
margin-right: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
.object-list-item-body {
|
||||
|
||||
@include flex(1);
|
||||
@include align-items(stretch);
|
||||
|
||||
padding-left: 15px;
|
||||
line-height: 1;
|
||||
|
||||
@media (max-width: 500px) {
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
||||
.name {
|
||||
display: inline-block;
|
||||
font-size: 15px;
|
||||
font-weight: 400;
|
||||
color: $darkgrey;
|
||||
}
|
||||
.description {
|
||||
display: inline-block;
|
||||
font-size: 12px;
|
||||
color: $midbrown;
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
||||
} // .object-list-item-body
|
||||
|
||||
.object-list-item-aside {
|
||||
@media (max-width: 500px) {
|
||||
float: left;
|
||||
width: 100%;
|
||||
margin-top: 15px;
|
||||
}
|
||||
.object-list-action:not(:first-of-type) {
|
||||
margin-left: 20px;
|
||||
@media (min-width: 501px) {
|
||||
margin-left: 50px;
|
||||
}
|
||||
}
|
||||
.role-label {
|
||||
float: left;
|
||||
margin-top: -1px;
|
||||
}
|
||||
.role-label + .role-label {
|
||||
margin-left: 5px;
|
||||
}
|
||||
} // .object-list-item-aside
|
||||
|
||||
.object-list-action {
|
||||
font-size: 11px;
|
||||
text-transform: uppercase;
|
||||
text-decoration: underline;
|
||||
&:hover {
|
||||
|
||||
}
|
||||
} // .object-list-action
|
@ -1,44 +0,0 @@
|
||||
/*
|
||||
* Role Lable styles
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Role Labels
|
||||
*/
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Role Labels
|
||||
========================================================================== */
|
||||
|
||||
.role-label {
|
||||
|
||||
background: #eee;
|
||||
|
||||
display: inline-block;
|
||||
padding: 6px 8px;
|
||||
|
||||
color: rgba(0,0,0,0.5);
|
||||
font-size: 9px;
|
||||
line-height: 1;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.1em;
|
||||
font-weight: 400;
|
||||
|
||||
&.owner, &.admin, &.editor {
|
||||
color: rgba(255,255,255,0.8);
|
||||
}
|
||||
|
||||
&.owner {
|
||||
background: $darkgrey;
|
||||
}
|
||||
|
||||
&.admin {
|
||||
background: $red;
|
||||
}
|
||||
|
||||
&.editor {
|
||||
background: $blue;
|
||||
}
|
||||
|
||||
}
|
@ -1,87 +0,0 @@
|
||||
/*
|
||||
* Table classes
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Base Styles
|
||||
* Styles Tables
|
||||
* Raw Tables
|
||||
*/
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Base Styles
|
||||
========================================================================== */
|
||||
|
||||
%table {
|
||||
@include baseline;
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
background-color: transparent;
|
||||
|
||||
th,
|
||||
td {
|
||||
padding: 8px;
|
||||
line-height: 20px;
|
||||
text-align: left;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Styles Tables
|
||||
========================================================================== */
|
||||
|
||||
.table {
|
||||
|
||||
@extend %table;
|
||||
|
||||
th,
|
||||
td {
|
||||
border-top: 1px solid $lightbrown;
|
||||
}
|
||||
|
||||
th {
|
||||
color: $brown;
|
||||
}
|
||||
|
||||
caption + thead tr:first-child th,
|
||||
caption + thead tr:first-child td,
|
||||
colgroup + thead tr:first-child th,
|
||||
colgroup + thead tr:first-child td,
|
||||
thead:first-child tr:first-child th,
|
||||
thead:first-child tr:first-child td {
|
||||
border-top: 0;
|
||||
}
|
||||
|
||||
tbody + tbody {
|
||||
border-top: 2px solid $lightbrown;
|
||||
}
|
||||
|
||||
table table {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
tbody > tr:nth-child(odd) > td,
|
||||
tbody > tr:nth-child(odd) > th {
|
||||
background-color: lighten($lightbrown, 5%);
|
||||
}
|
||||
|
||||
&.plain {
|
||||
tbody > tr:nth-child(odd) > td,
|
||||
tbody > tr:nth-child(odd) > th {
|
||||
background: transparent;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Raw Tables
|
||||
========================================================================== */
|
||||
|
||||
table {
|
||||
@extend %table;
|
||||
}
|
@ -1,280 +0,0 @@
|
||||
/*
|
||||
* Type styles, including headers, elements, links, and everything else.
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Global font sizing & colour
|
||||
* Headings
|
||||
* Heading Groups
|
||||
* Generic Text Elements
|
||||
* Code
|
||||
* Keyboard
|
||||
* Links
|
||||
* Horizontal Rules
|
||||
* Blockquotes
|
||||
* Definition Lists
|
||||
*/
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Global font sizing & colour
|
||||
========================================================================== */
|
||||
|
||||
html {
|
||||
font: normal 81.2%/1.65 "Open Sans", sans-serif;
|
||||
}
|
||||
|
||||
body {
|
||||
color: $darkgrey;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Headings
|
||||
========================================================================== */
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
color: $darkgrey;
|
||||
text-rendering: optimizeLegibility;
|
||||
line-height: 1;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
h2 {
|
||||
padding-top: 0.8em;
|
||||
margin-top: 0.8em;
|
||||
border-top: $lightbrown 1px solid;
|
||||
}
|
||||
|
||||
h1 a:hover {
|
||||
text-decoration: none;
|
||||
box-shadow: $blue 0 -5px 0 inset;
|
||||
}
|
||||
|
||||
h2 a:hover {
|
||||
text-decoration: none;
|
||||
box-shadow: $blue 0 -4px 0 inset;
|
||||
}
|
||||
|
||||
h3 a:hover {
|
||||
text-decoration: none;
|
||||
box-shadow: $blue 0 -3px 0 inset;
|
||||
}
|
||||
|
||||
h4, h5, h6 {
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
box-shadow: $blue 0 -1px 0 inset;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Heading Groups
|
||||
========================================================================== */
|
||||
|
||||
hgroup {
|
||||
@include baseline;
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
padding:0;
|
||||
margin:0;
|
||||
border:none;
|
||||
margin-bottom: 5px;
|
||||
|
||||
a {
|
||||
color: $darkgrey;
|
||||
|
||||
&:hover {
|
||||
box-shadow: $darkgrey 0 -1px 0 inset;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Make everything except the first heading appear smaller/thinner.
|
||||
&:nth-child(n+2) {
|
||||
font-size: 1.8em;
|
||||
font-weight: 300;
|
||||
color: $brown;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Generic Text Elements
|
||||
========================================================================== */
|
||||
|
||||
p, ul, ol {
|
||||
@include baseline;
|
||||
}
|
||||
|
||||
ol ol,
|
||||
ul ul,
|
||||
ul ol,
|
||||
ol ul {
|
||||
margin: 0.4em 0;
|
||||
}
|
||||
|
||||
mark {
|
||||
background-color: #ffc336;
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Code
|
||||
========================================================================== */
|
||||
|
||||
.markdown,
|
||||
pre,
|
||||
code,
|
||||
tt {
|
||||
font-family: $font-family-mono;
|
||||
}
|
||||
|
||||
code, tt {
|
||||
font-size: 0.85em;
|
||||
white-space: pre-wrap;
|
||||
background: lighten($lightbrown, 2%);
|
||||
border: 1px solid darken($lightbrown, 8%);
|
||||
border-radius: 2px;
|
||||
padding: 1px 3px;
|
||||
}
|
||||
|
||||
pre {
|
||||
@include baseline;
|
||||
background: lighten($lightbrown, 2%);
|
||||
border: 1px solid darken($lightbrown, 8%);
|
||||
width: 100%;
|
||||
padding: 10px;
|
||||
font-family: $font-family-mono;
|
||||
font-size: 0.9em;
|
||||
white-space: pre;
|
||||
overflow: auto;
|
||||
border-radius: 3px;
|
||||
|
||||
code, tt {
|
||||
font-size: inherit;
|
||||
white-space: -moz-pre-wrap;
|
||||
white-space: pre-wrap;
|
||||
background: transparent;
|
||||
border: none;
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Keyboard
|
||||
========================================================================== */
|
||||
|
||||
kbd {
|
||||
display: inline-block;
|
||||
margin-bottom: 0.4em;
|
||||
padding: 1px 8px;
|
||||
border: #ccc 1px solid;
|
||||
color: $darkgrey;
|
||||
text-shadow: #fff 0 1px 0;
|
||||
font-size: 0.9em;
|
||||
font-weight: bold;
|
||||
background: #f4f4f4;
|
||||
border-radius: 4px;
|
||||
box-shadow:
|
||||
0 1px 0 rgba(0, 0, 0, 0.2),
|
||||
0 1px 0 0 #fff inset;
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Links
|
||||
========================================================================== */
|
||||
|
||||
a {
|
||||
color: $blue;
|
||||
text-decoration: none;
|
||||
@include transition(all 0.15s ease-in-out);
|
||||
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
&.highlight {
|
||||
color: $orange;
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Horizontal Rules
|
||||
========================================================================== */
|
||||
|
||||
hr {
|
||||
display: block;
|
||||
height: 1px;
|
||||
border: 0;
|
||||
border-top: 1px solid $lightbrown;
|
||||
margin: 3.2em 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Blockquotes
|
||||
========================================================================== */
|
||||
|
||||
blockquote {
|
||||
@include baseline;
|
||||
padding: 0 1.6em 0 1.6em;
|
||||
border-left: $lightbrown 0.6em solid;
|
||||
|
||||
p {
|
||||
margin:0.8em 0;
|
||||
font-size:1.2em;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
small {
|
||||
display: inline-block;
|
||||
margin: 0.8em 0 0.8em 1.5em;
|
||||
font-size:0.9em;
|
||||
color: $brown;
|
||||
&:before {
|
||||
content: '\2014 \00A0';
|
||||
}
|
||||
}
|
||||
|
||||
cite {
|
||||
font-weight:bold;
|
||||
a { font-weight: normal; }
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Definition Lists
|
||||
========================================================================== */
|
||||
|
||||
dl {
|
||||
@include baseline;
|
||||
|
||||
dt {
|
||||
float: left;
|
||||
width: 180px;
|
||||
overflow: hidden;
|
||||
clear: left;
|
||||
text-align: right;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
font-weight: bold;
|
||||
margin-bottom: 1em
|
||||
}
|
||||
|
||||
dd {
|
||||
margin-left: 200px;
|
||||
margin-bottom: 1em
|
||||
}
|
||||
}
|
@ -1,217 +0,0 @@
|
||||
/*
|
||||
* Image Uploader styles
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Image Uploader
|
||||
* Pre Image Uploader
|
||||
*/
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Image Uploader
|
||||
========================================================================== */
|
||||
|
||||
.image-uploader {
|
||||
@include box-sizing(border-box);
|
||||
@include baseline;
|
||||
position: relative;
|
||||
overflow:hidden;
|
||||
padding: 55px 60px;
|
||||
border: $lightbrown 3px dashed;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
text-align: center;
|
||||
color: $brown;
|
||||
background: #F9F8F5;
|
||||
|
||||
a {
|
||||
color: $brown;
|
||||
text-decoration: none;
|
||||
|
||||
&:hover {
|
||||
color: $darkgrey;
|
||||
}
|
||||
}
|
||||
.description {
|
||||
margin-top: 10px;
|
||||
}
|
||||
.media {
|
||||
@include icon($i-image, 60px, darken($lightbrown, 3%)) {
|
||||
display: inline-block;
|
||||
vertical-align: initial;
|
||||
@include transition(transform 1s ease);
|
||||
}
|
||||
}
|
||||
|
||||
.image-url,
|
||||
.image-upload {
|
||||
line-height: 12px;
|
||||
padding: 10px;
|
||||
display: block;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
color: $brown;
|
||||
text-decoration: none;
|
||||
@include user-select(none);
|
||||
|
||||
&:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
.image-webcam {
|
||||
@include icon($i-camera, 12px);
|
||||
}
|
||||
|
||||
.image-url {
|
||||
@include icon($i-link, 12px);
|
||||
}
|
||||
|
||||
.image-upload {
|
||||
@include icon($i-image, 12px);
|
||||
}
|
||||
|
||||
.button-add {
|
||||
display: inline-block;
|
||||
position:relative;
|
||||
z-index: 700;
|
||||
color: #fff;
|
||||
padding-left:5px;
|
||||
}
|
||||
.button-save {
|
||||
margin: 0 0 0 10px;
|
||||
}
|
||||
|
||||
input {
|
||||
&.main{
|
||||
position: absolute;
|
||||
right: 0;
|
||||
margin: 0;
|
||||
opacity: 0;
|
||||
@include transform-origin(right);
|
||||
@include transform( scale(14));
|
||||
font-size: 23px;
|
||||
direction: ltr;
|
||||
cursor: pointer;
|
||||
&.right {
|
||||
right: 9999px;
|
||||
height: 0;
|
||||
}
|
||||
}
|
||||
|
||||
&.url{
|
||||
font: -webkit-small-control;
|
||||
box-sizing: border-box;
|
||||
width: 276px;
|
||||
vertical-align: middle;
|
||||
padding: 9px 7px;
|
||||
margin: 10px 0;
|
||||
outline: 0;
|
||||
font-size: 1.1em;
|
||||
background: #fff;
|
||||
border: #e3e1d5 1px solid;
|
||||
border-radius: 4px;
|
||||
-webkit-transition: all 0.15s ease-in-out;
|
||||
-moz-transition: all 0.15s ease-in-out;
|
||||
}
|
||||
}
|
||||
|
||||
.progress {
|
||||
position: relative;
|
||||
margin: -19px 0 44px 0;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
@include linear-gradient(to bottom, #f5f5f5, #f9f9f9);
|
||||
border-radius: 12px;
|
||||
box-shadow: (rgba(0,0,0,0.1) 0 1px 2px inset);
|
||||
}
|
||||
|
||||
.fileupload-loading {
|
||||
display: block;
|
||||
top: 50%;
|
||||
width: 35px;
|
||||
height: 28px;
|
||||
margin: -28px auto 0;
|
||||
background-size: contain;
|
||||
}
|
||||
|
||||
.failed {
|
||||
position: relative;
|
||||
top: -40px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.bar {
|
||||
height: 12px;
|
||||
background: $blue;
|
||||
|
||||
&.fail {
|
||||
background: $red;
|
||||
}
|
||||
}
|
||||
|
||||
} // .image-uploader
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Pre Image Uploader
|
||||
========================================================================== */
|
||||
|
||||
.pre-image-uploader {
|
||||
@include box-sizing(border-box);
|
||||
@include baseline;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
height: auto;
|
||||
color: $brown;
|
||||
background: rgba(0,0,0,0.1);
|
||||
border-radius: 2px;
|
||||
min-height: 46px;
|
||||
|
||||
input {
|
||||
position: absolute;
|
||||
left: 9999px;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
a {
|
||||
z-index: 10000;
|
||||
color: $brown;
|
||||
text-decoration: none;
|
||||
|
||||
&:hover {
|
||||
color: $darkgrey;
|
||||
}
|
||||
}
|
||||
|
||||
img {
|
||||
display: block;
|
||||
max-width: 100%;
|
||||
margin: 0 auto;
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
.image-cancel {
|
||||
@include icon($i-trash, 11px);
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
padding: 8px;
|
||||
z-index: 300;
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
line-height: 0;
|
||||
border-radius: $rounded;
|
||||
background: rgba(0,0,0,0.6);
|
||||
box-shadow: rgba(255,255,255,0.2) 0 0 0 1px;
|
||||
|
||||
&:hover {
|
||||
color: #fff;
|
||||
cursor: pointer;
|
||||
background: $red;
|
||||
}
|
||||
}
|
||||
|
||||
} // .pre-image-uploader
|
@ -1,45 +0,0 @@
|
||||
/*
|
||||
* Utility classes that impose no visual design, only structural and semantic help
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Global font sizing & colour
|
||||
* Headings
|
||||
* Heading Groups
|
||||
* Generic Text Elements
|
||||
* Links
|
||||
* Horizontal Rules
|
||||
* Blockquotes
|
||||
* Definition Lists
|
||||
*/
|
||||
|
||||
/* ==========================================================================
|
||||
Utility Classes
|
||||
========================================================================== */
|
||||
|
||||
.invisible {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.hidden,
|
||||
.visuallyhidden,
|
||||
.screen-reader-text {
|
||||
border: 0;
|
||||
clip: rect(0 0 0 0);
|
||||
height: 1px;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
}
|
||||
|
||||
.visuallyhidden.focusable:active,
|
||||
.visuallyhidden.focusable:focus {
|
||||
clip: auto;
|
||||
height: auto;
|
||||
margin: 0;
|
||||
overflow: visible;
|
||||
position: static;
|
||||
width: auto;
|
||||
}
|
@ -1,68 +1,32 @@
|
||||
/*
|
||||
* Ground Zero - This is where it begins.
|
||||
* Every Sass file is imported here
|
||||
*
|
||||
* Table of Contents
|
||||
*
|
||||
* Variables & Mixin Libraries
|
||||
* Libraries
|
||||
* Modules
|
||||
* Layouts
|
||||
*/
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Variables & Mixins
|
||||
========================================================================== */
|
||||
//
|
||||
// Helpers - Variables and mixins
|
||||
// --------------------------------------------------
|
||||
|
||||
@import "_bourbon"; // via Bower http://bourbon.io/
|
||||
@import "helpers/variables";
|
||||
@import "helpers/mixins";
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Libraries
|
||||
========================================================================== */
|
||||
//
|
||||
// Libraries - 3rd party dependencies
|
||||
// --------------------------------------------------
|
||||
|
||||
@import "normalize"; // via Bower
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Modules
|
||||
========================================================================== */
|
||||
|
||||
@import "modules/base";
|
||||
@import "modules/layout";
|
||||
@import "modules/utility";
|
||||
@import "modules/animations";
|
||||
@import "modules/icons";
|
||||
@import "modules/buttons";
|
||||
@import "modules/typography";
|
||||
@import "modules/tables";
|
||||
@import "modules/forms";
|
||||
@import "modules/floatingheaders";
|
||||
@import "modules/modals";
|
||||
@import "modules/dropdowns";
|
||||
@import "modules/notifications";
|
||||
@import "modules/objectlist";
|
||||
@import "modules/rolelables";
|
||||
@import "modules/uploader";
|
||||
@import "modules/navbar";
|
||||
@import "modules/navs";
|
||||
@import "modules/nprogress";
|
||||
//
|
||||
// Patterns - Re-usable styles
|
||||
// --------------------------------------------------
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Layouts
|
||||
========================================================================== */
|
||||
|
||||
@import "layouts/auth";
|
||||
@import "layouts/about";
|
||||
@import "layouts/content";
|
||||
@import "layouts/editor";
|
||||
@import "layouts/errors";
|
||||
@import "layouts/modals";
|
||||
@import "layouts/post-settings-menu";
|
||||
@import "layouts/settings";
|
||||
@import "layouts/setup";
|
||||
@import "layouts/users";
|
||||
//
|
||||
// Components - User interface objects
|
||||
// --------------------------------------------------
|
||||
|
||||
|
||||
|
||||
//
|
||||
// Layouts - Individual application screens
|
||||
// --------------------------------------------------
|
||||
|
||||
|
13
ghost/admin/docs/_includes/foot.html
Normal file
13
ghost/admin/docs/_includes/foot.html
Normal file
@ -0,0 +1,13 @@
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
|
||||
{% if site.github %}
|
||||
<script src="../dist/js/ghost-ui.min.js"></script>
|
||||
{% else %}
|
||||
<script src="../dist/js/ghost-ui.js"></script>
|
||||
{% endif %}
|
||||
{% if site.github %}
|
||||
<script src="../assets/js/docs.min.js"></script>
|
||||
{% else %}
|
||||
<script src="../assets/js/vendor/holder.js"></script>
|
||||
<script src="../assets/js/vendor/ZeroClipboard.min.js"></script>
|
||||
<script src="../assets/js/src/application.js"></script>
|
||||
{% endif %}
|
34
ghost/admin/docs/_includes/head.html
Normal file
34
ghost/admin/docs/_includes/head.html
Normal file
@ -0,0 +1,34 @@
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<title>
|
||||
{% if page.url == site.baseurl %}
|
||||
{{ page.title }}
|
||||
{% else %}
|
||||
{{ page.title }} · Ghost
|
||||
{% endif %}
|
||||
</title>
|
||||
|
||||
<!-- Ghost core CSS -->
|
||||
{% if site.github %}
|
||||
<link href="../dist/css/ghost-ui.min.css" rel="stylesheet">
|
||||
{% else %}
|
||||
<link href="../dist/css/ghost-ui.css" rel="stylesheet">
|
||||
{% endif %}
|
||||
|
||||
<!-- Documentation extras -->
|
||||
{% if site.github %}
|
||||
<link href="../assets/css/docs.min.css" rel="stylesheet">
|
||||
{% else %}
|
||||
<link href="../assets/css/src/docs.css" rel="stylesheet">
|
||||
<link href="../assets/css/src/pygments-manni.css" rel="stylesheet">
|
||||
{% endif %}
|
||||
|
||||
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
|
||||
<script src="../assets/js/ie10-viewport-bug-workaround.js"></script>
|
||||
<script src="../assets/js/ie-emulation-modes-warning.js"></script>
|
||||
|
||||
<!-- Favicons -->
|
||||
<link rel="apple-touch-icon-precomposed" href="/apple-touch-icon-precomposed.png">
|
||||
<link rel="icon" href="/favicon.ico">
|
0
ghost/admin/docs/_includes/nav/global.html
Normal file
0
ghost/admin/docs/_includes/nav/global.html
Normal file
@ -1,30 +1,20 @@
|
||||
<!doctype html>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>{{ page.title }}</title>
|
||||
|
||||
<link rel="stylesheet" href="/dist/css/ghost-ui.min.css">
|
||||
|
||||
<!-- Fonts -->
|
||||
<!-- <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans:400,300,700" /> -->
|
||||
|
||||
<!-- Meta, title, CSS, favicons, etc. -->
|
||||
{% include head.html %}
|
||||
</head>
|
||||
<body>
|
||||
<a class="sr-only sr-only-focusable" href="#gh-main">Skip to main content</a>
|
||||
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="/">Home</a></li>
|
||||
<li>
|
||||
<a href="/css/">CSS</a>
|
||||
<ul>
|
||||
<li><a href="/css/buttons/">Buttons</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<!-- Docs master nav -->
|
||||
{% include nav/global.html %}
|
||||
|
||||
<!-- Docs page -->
|
||||
<main id="gh-main" role="main">
|
||||
{{content}}
|
||||
|
||||
</main>
|
||||
|
||||
{% include foot.html %}
|
||||
</body>
|
||||
</html>
|
5680
ghost/admin/docs/dist/css/ghost-ui.css
vendored
5680
ghost/admin/docs/dist/css/ghost-ui.css
vendored
File diff suppressed because it is too large
Load Diff
21
ghost/admin/docs/dist/css/ghost-ui.min.css
vendored
21
ghost/admin/docs/dist/css/ghost-ui.min.css
vendored
File diff suppressed because one or more lines are too long
BIN
ghost/admin/docs/dist/fonts/icons.eot
vendored
BIN
ghost/admin/docs/dist/fonts/icons.eot
vendored
Binary file not shown.
128
ghost/admin/docs/dist/fonts/icons.svg
vendored
128
ghost/admin/docs/dist/fonts/icons.svg
vendored
@ -7,68 +7,68 @@
|
||||
<font-face units-per-em="512" ascent="480" descent="-32" />
|
||||
<missing-glyph horiz-adv-x="512" />
|
||||
<glyph unicode=" " d="" horiz-adv-x="256" />
|
||||
<glyph unicode="" d="M0 480v-102.4h307.2v102.4h-307.2zM0 275.2v-102.4h512v102.4h-512zM0 70.4v-102.4h204.8v102.4h-204.8zM307.2 70.4v-102.4h204.8v102.4h-204.8zM409.6 480v-102.4h102.4v102.4h-102.4z" />
|
||||
<glyph unicode="" d="M255.58 217.052l-131.527 131.527h-124.345l-0.305-0.32 256.177-256.17 256.171 256.17-0.306 0.32h-124.33z" />
|
||||
<glyph unicode="" d="M120.412 97.756v0.149c0.092 8.135 3.676 33.657 41.628 56.882 6.948 9.436 12.658 22.308 18.496 37.163 4.032 10.268 3.349 19.036 3.349 31.509 0 9.223 1.735 24.014-0.548 32.149-7.723 27.463-27.214 35.051-50.062 35.051-22.855 0-42.368-7.616-50.069-35.136-2.268-8.1-0.526-22.862-0.526-32.057 0-12.501-0.683-21.291 3.371-31.588 7.012-17.828 13.689-32.775 22.599-42.311-34.695-6.372-58.14-24.469-73.963-31.531-32.74-14.592-32.889-30.578-32.889-30.578v-27.143l118.635 0.021v37.298l0.001 0.122zM465.557 139.719c-21.874 9.721-54.35 34.773-102.414 43.385 12.288 13.17 21.589 33.735 31.168 58.126 5.547 14.123 4.594 26.169 4.594 43.321 0 12.672 2.382 33.003-0.754 44.167-10.61 37.76-37.397 48.171-68.8 48.171-31.417 0-58.24-10.468-68.821-48.284-3.122-11.136-0.732-31.424-0.732-44.053 0-17.195-0.939-29.269 4.629-43.42 9.636-24.505 18.809-45.049 31.054-58.162-47.687-8.761-79.915-33.636-101.653-43.328-44.992-20.060-45.212-42.020-45.212-42.020v-37.319l362.311 0.050v37.269c0.006-0.008-0.214 22.022-45.37 42.097z" />
|
||||
<glyph unicode="" d="M486.457 191.516l-242.98 243.001c-5.817 5.817-17.237 11.186-25.451 11.925l-131.441 11.961c-8.171 0.754-19.641-3.392-25.458-9.208l-29.995-29.995c-5.803-5.817-9.97-17.266-9.223-25.436l11.705-131.762c0.718-8.192 6.080-19.634 11.883-25.451l242.994-242.987c5.81-5.81 15.317-5.81 21.134 0l176.832 176.818c5.81 5.81 5.81 15.317 0 21.134zM123.527 355.925c-12.665-12.679-33.173-12.665-45.824 0-12.672 12.651-12.679 33.173-0.021 45.852 12.651 12.651 33.18 12.636 45.852-0.021 12.651-12.672 12.637-33.201-0.007-45.831z" />
|
||||
<glyph unicode="" d="M414.642 476.985h-307.484c-20.871 0-37.817-16.932-37.817-37.824v-436.708c0-20.892 16.939-37.824 37.817-37.824h307.484c20.892 0 37.817 16.939 37.817 37.824v436.708c0 20.885-16.932 37.824-37.817 37.824zM262.116-19.904c-6.99 0-12.665 5.689-12.665 12.665s5.689 12.665 12.665 12.665 12.665-5.689 12.665-12.665-5.668-12.665-12.665-12.665zM395.57 21.518h-269.348v398.578h269.348v-398.578z" />
|
||||
<glyph unicode="" d="M32 384h448v-96h-448zM32 256h448v-96h-448zM32 128h448v-96h-448z" />
|
||||
<glyph unicode="" d="M510.244 280.903c-0.967 0-27.236 0-58.382 0-31.154 0-38.606 18.027-16.597 40.050 22.030 22.030 40.612 40.604 41.294 41.287 0.683 0.69 0.683 1.792 0 2.482-0.683 0.683-18.404 18.404-39.388 39.388-20.978 20.971-38.692 38.692-39.388 39.388-0.683 0.683-1.799 0.683-2.482 0-0.683-0.69-19.25-19.264-41.28-41.287s-40.043-14.564-40.043 16.583c0 31.154 0 57.415 0 58.382s-0.789 1.735-1.735 1.735c-0.988 0-26.027 0-55.701 0s-54.734 0-55.701 0c-0.96 0-1.735-0.782-1.735-1.735s0-27.228 0-58.382c0-31.147-18.020-38.606-40.043-16.583s-40.604 40.597-41.287 41.287c-0.683 0.683-1.799 0.683-2.482 0-0.676-0.69-18.404-18.411-39.388-39.388-20.978-20.999-38.692-38.692-39.388-39.388-0.683-0.69-0.683-1.792 0-2.482 0.683-0.683 19.257-19.257 41.287-41.287 22.030-22.023 14.564-40.050-16.583-40.050-31.154 0-57.444 0-58.389 0-0.967 0-1.735-0.782-1.735-1.735 0-0.96 0-26.027 0-55.694 0-29.682 0-54.741 0-55.701 0-0.967 0.782-1.735 1.735-1.735 0.96 0 27.236 0 58.382 0 31.154 0 38.606-18.020 16.597-40.043-22.030-22.030-40.604-40.597-41.287-41.28-0.683-0.69-0.683-1.792 0-2.482 0.683-0.683 18.404-18.404 39.388-39.388 20.999-20.978 38.692-38.692 39.388-39.388 0.683-0.683 1.792-0.683 2.475 0 0.683 0.69 19.264 19.264 41.287 41.287 22.037 22.030 40.050 14.564 40.050-16.583 0-31.154 0-57.422 0-58.389s0.789-1.735 1.735-1.735c0.967 0 26.027 0 55.701 0s54.727 0 55.701 0c0.96 0 1.735 0.782 1.735 1.735s0 27.236 0 58.389c0 31.147 18.020 38.606 40.043 16.59s40.604-40.597 41.287-41.287c0.683-0.683 1.799-0.683 2.482 0 0.676 0.69 18.404 18.411 39.388 39.388s38.692 38.692 39.388 39.388c0.683 0.69 0.683 1.792 0 2.482-0.683 0.683-19.25 19.25-41.28 41.28-22.023 22.023-14.556 40.043 16.59 40.043s57.408 0 58.382 0 1.735 0.746 1.735 1.713c0 0.96 0 26.027 0 55.701 0 29.682 0 54.734 0 55.694 0 0.968-0.782 1.75-1.756 1.75zM260.366 139.449c-47.396 0-85.796 38.4-85.796 85.796 0 47.374 38.407 85.796 85.796 85.796 47.374 0 85.796-38.414 85.796-85.796-0.007-47.396-38.422-85.796-85.796-85.796z" />
|
||||
<glyph unicode="" d="M79.218-32.541l150.898 150.919c26.944-14.414 57.707-22.62 90.396-22.62 105.991 0 191.908 85.916 191.908 191.9s-85.917 191.922-191.915 191.922c-105.977 0-191.9-85.924-191.9-191.908 0-32.249 7.986-62.613 22.044-89.287l-151.182-151.175 79.751-79.751zM320.505 415.58c70.528 0 127.908-57.38 127.908-127.908s-57.38-127.9-127.908-127.9c-70.528 0-127.9 57.372-127.9 127.9s57.372 127.908 127.9 127.908z" />
|
||||
<glyph unicode="" d="M512 46.798l-150.919 150.898c14.414 26.944 22.613 57.707 22.613 90.396 0 105.991-85.916 191.908-191.908 191.908-105.984 0-191.908-85.916-191.908-191.908 0-105.97 85.924-191.9 191.908-191.9 32.249 0 62.62 7.986 89.294 22.044l151.175-151.182 79.745 79.744zM63.879 288.085c0 70.528 57.38 127.908 127.908 127.908s127.908-57.38 127.908-127.908c0-70.528-57.372-127.9-127.908-127.9s-127.908 57.372-127.908 127.9z" />
|
||||
<glyph unicode="" d="M-0.292 303.886v-98.596c64.007 0 124.124-25.003 169.337-70.428 44.679-44.9 69.49-104.455 70.13-167.979l98.603-0.014c-1.366 186.055-152.455 337.017-338.070 337.017zM-0.142 478.649v-98.56c227.15 0 412.082-185.131 413.49-413.198l98.581-0.022c-1.422 282.439-230.542 511.78-512.071 511.78zM-0.363 35.271c0-0 0-0.002 0-0.002 0-37.714 30.573-68.288 68.288-68.288 37.713 0 68.287 30.572 68.288 68.286 0 37.714-30.573 68.288-68.288 68.288s-68.288-30.574-68.288-68.288z" />
|
||||
<glyph unicode="" d="M424.533 288h-227.556v-197.924h227.556v197.924zM396.089 118.521h-170.667v141.027h170.667v-141.027zM83.2 288h73.778v-197.924h-73.778zM-1.401 438.165v-440.96h511.417v440.96h-511.417zM361.742 408.647h104.789v-40.676h-104.789v40.676zM40.54 408.647h284.231v-40.676h-284.231v40.676zM467.349 39.872h-426.083v298.738h426.084l-0.001-298.738z" />
|
||||
<glyph unicode="" d="M392.476 433.145h-273.792c0 0-119.524-54.784-119.524-215.417 0-160.64 119.524-214.172 119.524-214.172h273.792c0 0 119.524 52.928 119.524 214.18 0 161.243-119.524 215.409-119.524 215.409zM383.765 39.31h-256.32c-21.198 12.245-92.523 62.123-92.523 178.418 0 116.096 70.884 166.798 92.722 179.655h255.986c21.291-12.43 92.608-62.834 92.608-179.648 0.007-116.587-70.912-166.073-92.473-178.425zM148.231 331.001h42.468v-125.085h-42.468zM320.953 331.001h42.467v-125.085h-42.467zM255.509 166.407c-40.249 0-42.766-38.706-42.916-43.548-0.014-0.327-0.014-49.415-0.014-49.415h86.5c0 0-0.007 49.052-0.021 49.316-0.192 4.287-2.973 43.647-43.549 43.647z" />
|
||||
<glyph unicode="" d="M260.743 479.772c-0.953 0-1.65 0.057-2.588 0.028-0.782 0.014-1.771-0.050-2.56-0.050-77.020 0-139.442-63.26-139.442-139.456 0-76.21 142.059-372.309 142.059-372.309s142.002 296.363 142.002 372.309-62.45 139.478-139.471 139.478zM257.842 288.697c-35.264 0-63.879 28.594-63.879 63.872s28.601 63.886 63.879 63.886c35.285 0 63.886-28.608 63.886-63.886s-28.601-63.872-63.886-63.872z" />
|
||||
<glyph unicode="" d="M455.865 395.079c0 15.964-7.524 23.488-23.481 23.488h-354.375c-15.972 0-23.488-7.524-23.488-23.488v-242.887h401.351v242.887zM423.339 184.732h-336.292v201.302h336.292v-201.302zM455.772 130.503h-401.251l-54.222-59.648h509.696l-54.223 59.648zM195.499 89.387l21.689 21.696h75.911l21.696-21.696h-119.296zM16.562 28.828c18.297 0 463.154 0 477.17 0 15.118 0 16.263 21.696 16.263 21.696h-509.696c0 0 0.426-21.696 16.263-21.696z" />
|
||||
<glyph unicode="" d="M493.561 354.83c-44.857 74.069-126.208 123.577-219.122 123.577-141.39 0-256-114.61-256-256s114.61-256 256-256c92.188 0 172.964 48.747 218.041 121.863l-221.582 132.957 222.663 133.603zM320.064 409.678c22.585 0 40.889-18.311 40.889-40.889s-18.311-40.889-40.889-40.889-40.889 18.311-40.889 40.889 18.304 40.889 40.889 40.889z" />
|
||||
<glyph unicode="" d="M480 339.526l-107.285 107.267-287.908-287.913-51.634-158.882 158.944 51.651 287.883 287.877zM71.546 38.357l34.858 107.285 72.44-72.434-107.298-34.851z" />
|
||||
<glyph unicode="" d="M373.476 476.985h-237.014c-20.935 0-37.909-16.974-37.909-37.909v-437.717c0-20.935 16.981-37.909 37.909-37.909h236.985c20.935 0 37.909 16.974 37.909 37.909l0.015 437.716c0.021 20.936-16.967 37.91-37.895 37.91zM255.004-11.314c-13.419 0-24.299 10.873-24.299 24.299 0 13.419 10.88 24.299 24.299 24.299s24.299-10.88 24.299-24.299c0.007-13.426-10.873-24.299-24.299-24.299zM382.933 63.004h-255.921v314.425h255.921v-314.425z" />
|
||||
<glyph unicode="" d="M0.59 415.922v-383.922h511.41v383.922h-511.41zM469.333 74.667h-426.076v298.588h426.076v-298.588zM94.684 110.13h336.064l-45.482 147.683-34.126-11.356-29.561 55.744-95.531-137.913-51.179 32.974zM96.668 284.878c0 0 0 0 0 0 0-22.296 18.075-40.37 40.37-40.37s40.37 18.075 40.37 40.37c0 0 0 0 0 0s0 0 0 0c0 22.296-18.075 40.37-40.37 40.37s-40.37-18.075-40.37-40.37c0 0 0 0 0 0z" />
|
||||
<glyph unicode="" d="M511.9 68.793c1.052 3.1 1.756 6.357 1.756 9.792l0.001 284.793c0 3.264-0.654 6.357-1.607 9.316l-167.31-143.261 167.16-160.64zM257.188 194.887l66.376 54.002 168.021 143.822c-2.759 0.818-5.618 1.394-8.633 1.394h-451.5c-3.022 0-5.888-0.576-8.654-1.401l168.121-143.893 66.269-53.924zM482.944 47.865c2.887 0 5.632 0.533 8.292 1.294l-168.804 162.14-65.244-53.099-65.145 53.013-168.875-162.061c2.652-0.747 5.397-1.287 8.284-1.287h451.492zM2.34 372.693c-0.953-2.958-1.607-6.052-1.607-9.316v-284.793c0-3.442 0.704-6.699 1.756-9.792l167.246 160.569-167.395 143.332z" />
|
||||
<glyph unicode="" d="M138.539 435.548h374.158v-82.211h-374.158zM138.539 260.707h374.158v-82.225h-374.158zM138.539 84.914h374.158v-82.219h-374.158zM0.533 394.51c0-22.665 18.373-41.038 41.038-41.038s41.038 18.374 41.038 41.038c0 22.665-18.373 41.038-41.038 41.038s-41.038-18.373-41.038-41.038zM0.533 219.883c0-22.665 18.373-41.038 41.038-41.038s41.038 18.373 41.038 41.038c0 22.665-18.373 41.038-41.038 41.038s-41.038-18.374-41.038-41.038zM0.533 44.48c0-0.001 0-0.002 0-0.003 0-22.665 18.373-41.038 41.038-41.038 22.663 0 41.037 18.372 41.038 41.035 0 22.665-18.373 41.038-41.038 41.038s-41.038-18.373-41.038-41.038z" />
|
||||
<glyph unicode="" d="M256 480c-141.383 0-256-114.61-256-256s114.617-256 256-256 256 114.61 256 256-114.617 256-256 256zM288.853 400.704c10.247 0.050 18.368-3.911 23.58-10.098 5.241-6.165 7.644-14.3 7.644-22.628 0-21.604-17.159-42.048-41.109-42.126-0.199 0-0.412 0-0.612 0-18.78 0-30.514 13.938-30.635 34.219 0.037 17.472 14.082 40.533 41.132 40.633zM319.851 113.728c-35.804-39.097-79.964-62.428-96.768-62.649-0.050 0-0.071 0-0.107 0-5.696 0-11.591 1.508-15.865 6.151-4.295 4.672-6.514 11.797-6.514 21.98 0 7.78 1.287 24.583 4.196 36.743l25.685 110.656c1.244 6.172 1.927 10.517 1.97 12.764-4.444-1.607-23.979-15.922-33.628-23.41l-3.407-2.594-9.998 27.15 1.956 1.82c36.146 33.429 79.58 60.217 99.506 60.466 5.689 0.092 10.645-2.816 13.312-7.516 2.738-4.629 3.812-10.652 3.812-17.892 0-7.9-1.33-24.377-3.804-35.065l-28.181-114.695c-1.337-5.511-1.884-9.543-1.884-12.089-0.014-1.436 0.185-2.375 0.327-2.816 3.008 0.363 23.012 14.080 35.961 25.998l3.065 2.78 10.688-23.452 1.5-2.297-1.822-2.033z" />
|
||||
<glyph unicode="" d="M413.696 204.793h98.361l-97.685 92.288v149.312h-78.884v-74.781l-79.367 74.98-256.178-241.799h95.189v-206.571h113.65v146.020h94.898v-146.020h110.016z" />
|
||||
<glyph unicode="" d="M-1.408 480h210.553v-210.553h-210.553zM300.203 480h210.553v-210.553h-210.553zM-1.408 178.389h210.553v-210.553h-210.553zM300.203 178.389h210.553v-210.553h-210.553z" />
|
||||
<glyph unicode="" d="M263.808 310.243l78.13-78.165 84.338 84.288 85.404-85.803v249.394l-249.031 0.206 85.795-85.269zM163.499 53.461l84.65 84.651-78.129 78.158-84.345-84.281-85.391 85.81v-249.422l249.017-0.178z" />
|
||||
<glyph unicode="" d="M256 480c-141.383 0-256-114.61-256-256s114.617-256 256-256 256 114.61 256 256-114.617 256-256 256zM272.967 70.962c-7.602-7.332-18.084-10.766-29.881-10.724-0.092-0.007-0.185-0.007-0.27-0.007-11.236 0-21.34 3.527-28.793 10.702-7.623 7.204-11.428 17.301-11.364 28.466-0.071 11.15 3.733 21.241 11.413 28.309 7.531 7.068 17.714 10.503 29.006 10.46 11.755 0.036 22.18-3.314 29.817-10.46 7.68-7.068 11.484-17.159 11.413-28.309 0.087-11.164-3.718-21.255-11.341-28.437zM341.483 266.745c-3.989-9.906-9.024-18.503-15.125-25.685-5.888-6.912-12.373-13.042-19.463-18.347-6.379-4.793-12.224-9.906-17.493-15.282-5.056-5.212-9.358-11.207-12.942-18.14-3.193-6.094-5.042-14.542-5.042-25.436v-7.111h-59.776l-0.612 6.436c-0.484 5.020-0.74 9.806-0.74 14.386 0 9.166 0.96 17.522 3.022 24.996 2.93 10.752 7.026 20.188 12.373 28.295 5.191 7.851 11.164 14.748 17.927 20.601 6.208 5.383 11.975 10.517 17.323 15.46 5.070 4.658 9.195 9.444 12.444 14.329 2.745 4.132 4.196 9.060 4.238 15.424-0.057 8.448-2.233 14.116-6.244 18.489-3.108 3.534-10.702 6.507-23.716 6.45-3.932 0-8.192-0.42-12.779-1.301-4.636-0.924-9.294-2.219-13.945-3.89-4.729-1.707-9.237-3.662-13.518-5.881-4.366-2.24-8.199-4.523-11.513-6.798l-6.635-4.587-27.442 52.7 5.205 3.563c11.129 7.623 23.865 13.86 38.137 18.773 14.706 5.035 32.071 7.452 52.060 7.452 27.157 0.021 49.479-6.635 65.82-20.665 16.32-13.888 24.654-33.429 24.555-56.398 0.010-14.779-1.931-27.366-6.119-37.833z" />
|
||||
<glyph unicode="" d="M346.19 38.734c0-8.953-7.559-16.519-16.519-16.519l-257.18 0.007c-8.96 0-16.519 7.559-16.519 16.519v257.181c0 8.967 7.559 16.526 16.519 16.526h135.488l55.801 55.815-191.289-0.014c-39.787 0-72.334-32.562-72.334-72.341v-257.173c-0.001-39.773 32.561-72.328 72.334-72.328h257.173c39.787 0 72.334 32.562 72.334 72.313v191.324l-55.815-55.801v-135.509zM253.141 459.555l82.539-82.552-151.211-151.218 75.065-75.065 151.218 151.211 82.553-82.568 18.851 259.037z" />
|
||||
<glyph unicode="" d="M499.918 83.79l-189.589 327.189c-29.504 50.923-77.838 50.951-107.406 0.071l-190.251-327.338c-29.568-50.88-5.611-92.508 53.234-92.508h380.658c58.851-0.001 82.858 41.663 53.354 92.586zM258.361 48.825c-18.226 0-32.74 14.492-32.74 32.74 0 18.226 14.5 32.74 32.74 32.74 18.219 0 32.74-14.5 32.74-32.74-0.015-18.248-14.514-32.74-32.74-32.74zM281.557 134.997h-46.386l-15.609 188.885h77.639l-15.644-188.885z" />
|
||||
<glyph unicode="" d="M511.751 260.48c9.87 84.188-67.932 162.027-173.767 173.86-64.818 7.253-125.084-11.975-164.352-47.275 8.811 0.846 17.671 1.351 26.432 1.351 52.58 0 102.99-15.431 141.945-43.456 41.266-29.696 66.965-71.41 72.356-117.454 4.807-40.96-7.076-82.695-33.429-118.201 54.322-40.683 104.071-29.76 92.516-21.042-32.277 24.341-39.14 48.107-37.106 66.752 41.499 23.588 70.193 60.956 75.405 105.465zM382.443 223.758c-9.010 76.921-88.085 132.523-182.379 132.523-8.917 0-17.956-0.498-27.1-1.515-105.828-11.84-183.631-89.678-173.768-173.859 5.22-44.516 33.906-81.877 75.413-105.465 2.041-18.645-4.821-42.418-37.106-66.759-5.156-3.883 1.877-8.206 16.050-8.206 22.123 0 61.668 10.524 99.556 49.664 9.358-1.145 18.951-1.735 28.693-1.735 8.846 0 17.82 0.484 26.873 1.5 105.842 11.833 183.631 89.671 173.768 173.852z" />
|
||||
<glyph unicode="" d="M256 480c-141.383 0-256-114.617-256-256s114.617-256 256-256 256 114.617 256 256c0 141.383-114.617 256-256 256zM417.244 134.777l-70.535-70.535-89.429 89.429-89.415-89.415-70.535 70.535 89.408 89.415-89.408 89.415 70.535 70.535 89.415-89.415 89.415 89.422 70.542-70.535-89.415-89.429 89.422-89.422z" />
|
||||
<glyph unicode="" d="M258.859 220.338l-131.527-131.527v-124.338l0.32-0.313 256.17 256.178-256.17 256.17-0.32-0.313v-124.33z" />
|
||||
<glyph unicode="" d="M423.858 402.581v27.485c0 27.058-17.067 43.214-45.668 43.214s-45.668-16.156-45.668-43.214v-27.477l-30.94-0.008v27.485c0 27.058-17.067 43.214-45.653 43.214-28.594 0-45.668-16.156-45.668-43.214v-27.477h-30.94v27.477c0 27.058-17.067 43.214-45.668 43.214-28.594 0-45.668-16.156-45.668-43.214v-27.477l-52.429-0.008v-440.164h440.164l-0.001 440.164h-51.861zM356.985 430.066c0 13.355 6.108 18.766 21.205 18.766s21.205-5.412 21.205-18.766v-73.5c0-13.348-6.108-18.766-21.205-18.766s-21.205 5.419-21.205 18.766v73.5zM234.709 430.066c0 13.355 6.116 18.766 21.212 18.766 15.090 0 21.212-5.412 21.212-18.766v-73.5c0-13.348-6.123-18.766-21.212-18.766-15.097 0-21.212 5.419-21.212 18.766v73.5zM112.441 430.066c0 13.355 6.116 18.766 21.212 18.766 15.090 0 21.205-5.412 21.205-18.766v-73.5c0-13.348-6.116-18.766-21.205-18.766-15.097 0-21.212 5.419-21.212 18.766v73.5zM439.040-0.903h-366.798v305.671h366.798v-305.671zM256.676 116.743c0 23.317-15.723 36.224-43.221 44.089l-0.001 0.562c24.704 8.42 38.165 21.902 38.165 42.958 0 21.34-21.056 38.18-57.266 38.18-17.124 0-35.1-2.24-50.254-9.273l4.203-30.876c11.52 5.618 23.872 9.259 36.516 9.259 19.648 0 24.981-6.734 24.981-16.832 0-14.613-14.044-21.077-37.902-22.741v-30.891c34.532-1.963 45.76-9.266 45.76-26.944 0-12.914-12.352-22.741-31.438-22.741-15.737 0-28.082 2.24-42.958 7.865l-4.21-30.891c12.068-4.779 28.068-7.858 43.243-7.858 41.82-0.008 74.382 19.37 74.382 56.134zM320.932 193.955v-130.545h37.624v176.305h-18.808l-53.917-26.659 4.21-30.884z" />
|
||||
<glyph unicode="" d="M31.104 6.563h450.105v276.985h-450.105v-276.985zM180.366 209.977h151.566v-64.917l-151.566-0.001v64.918zM401.579 435.89h-290.852l-110.791-62.315v-55.403h512.434v55.403z" />
|
||||
<glyph unicode="" d="M213.447 317.611c6.82 0 13.419 0.939 19.74 2.524l-27.712 22.692c-9.671 7.9-15.673 19.1-16.917 31.531-1.252 12.43 2.453 24.597 10.347 34.219 8.896 10.901 22.080 17.152 36.16 17.152 10.795 0 21.298-3.769 29.611-10.588l29.454-24.121c0.235 2.51 0.391 5.070 0.391 7.666 0 44.779-36.302 81.088-81.067 81.088-44.793 0-81.088-36.309-81.088-81.088-0.014-44.78 36.288-81.075 81.081-81.075zM397.461 352.981c-15.957 0-31.019-3.691-44.551-10.098-8.533-4.039-16.441-9.173-23.509-15.268l-81.643 66.866c-3.705 3.065-8.213 4.551-12.686 4.551-5.781 0-11.541-2.51-15.488-7.339-7.026-8.555-5.774-21.184 2.802-28.174l82.261-67.392c-4.281-8.348-7.531-17.308-9.436-26.788-1.017-5.028-1.55-10.226-1.806-15.488l49.372 27.342c8.903 4.928 18.951 7.545 29.106 7.545 21.852 0 42.012-11.883 52.594-31.012 16.043-28.985 5.497-65.614-23.474-81.65l-43.172-23.893c12.231-5.020 25.6-7.844 39.623-7.844 57.621 0 104.32 46.706 104.32 104.327s-46.706 104.315-104.313 104.315zM277.312 138.112l110.763 61.326c16.135 8.924 21.959 29.227 13.035 45.369-6.080 11.001-17.479 17.223-29.22 17.223-5.483 0-11.022-1.344-16.142-4.181l-109.81-60.8c-6.329 6.99-13.34 13.326-20.985 18.908-22.656 16.526-50.475 26.404-80.676 26.404-75.754 0-137.166-61.419-137.166-137.181 0-75.769 61.412-137.18 137.159-137.18 75.762 0 137.188 61.419 137.188 137.18 0 1.543-0.185 3.044-0.235 4.572-0.32 9.75-1.657 19.222-3.911 28.36z" />
|
||||
<glyph unicode="" d="M425.7 7.374c16.171 4.359 38.386-13.973 52.388-43.108l28.096 11.918c-11.086 29.888-9.067 58.276 4.764 67.314l-28.359 46.236-77.953-0.006 21.064-82.354zM462.201 40.754c6.471 2.752 13.938-0.277 16.683-6.727 2.752-6.478-0.277-13.959-6.748-16.711-6.457-2.731-13.938 0.292-16.683 6.748-2.745 6.478 0.277 13.945 6.748 16.69zM332.494 441.913c-8.142 19.179-30.265 28.11-49.429 19.975-19.164-8.128-28.103-30.265-19.968-49.422l59.129-139.349h81.913l-71.645 168.796zM512.078 117.511v127.822h-280.028l-5.291-16.142c5.092-14.585 5.305-30.478 0.377-45.554l-15.402-46.933c1.671-6.364 2.816-12.772 3.556-19.179l296.788-0.007zM458.816 225.813v-37.291h-21.305v37.291h21.305zM267.079 158.329h-21.305v67.484h21.305v-67.484zM330.994 188.523h-21.312v37.291h21.312v-37.291zM394.887 158.329h-21.291v67.484h21.291v-67.484zM74.652 188.523h-20.629v37.291h21.319v-36.807c1.586 1.131 3.164 2.219 4.715 3.243l1.351 4.124 10.375 31.652c2.041 6.215 4.907 12.004 8.427 17.301l-99.435-0.001v-127.822h18.987c9.401 30.99 33.699 55.815 54.89 71.019zM176.768 137.067l0.398 1.216c-15.9 21.845-36.117 28.956-55.758 30.727-5.248 0.42-10.432 0.363-15.388 0.007-14.372-7.836-68.466-45.248-54.656-93.717 19.563-68.622-28.686-75.25-38.372-80.142-4.864-2.46 14.841-28.942 52.117-24.363 5.703 0.697 11.812 2.126 18.325 4.48 48.52 17.571 121.281 82.531 93.334 161.792zM146.617 241.429c-10.567-3.804-19.378-12.274-23.132-23.765l-10.389-31.68c3.136 0.014 6.343-0.071 9.614-0.32 20.174-1.372 42.581-9.237 60.622-28.58l12.11 36.935c3.797 11.52 1.721 23.524-4.53 32.875l68.402 208.469c4.011 12.245-2.631 25.408-14.876 29.419-3.371 1.102-6.791 1.401-10.105 1.003-8.683-1.060-16.398-7.004-19.314-15.879l-68.402-208.477z" />
|
||||
<glyph unicode="" d="M192 336c0-44.183 35.817-80 80-80s80 35.817 80 80c0 44.183-35.817 80-80 80s-80-35.817-80-80zM0 336c0-44.183 35.817-80 80-80s80 35.817 80 80c0 44.183-35.817 80-80 80s-80-35.817-80-80zM384 176v48c0 17.6-14.4 32-32 32h-320c-17.6 0-32-14.4-32-32v-160c0-17.6 14.4-32 32-32h320c17.6 0 32 14.4 32 32v48l128-80v224l-128-80zM320 96h-256v96h256v-96z" />
|
||||
<glyph unicode="" d="M96-32h320l32 352h-384zM320 416v64h-128v-64h-160v-96l32 32h384l32-32v96h-160zM288 416h-64v32h64v-32z" />
|
||||
<glyph unicode="" d="M380.931-32c56.863 103.016 66.444 260.153-156.931 254.912v-126.912l-192 192 192 192v-124.186c267.481 6.971 297.285-236.107 156.931-387.814z" />
|
||||
<glyph unicode="" d="M123.86 124.211c13.063-10.613 32.271-8.631 42.898 4.433v0.051l31.079 38.261 49.466-66.992c6.576-8.887 17.503-13.546 28.526-12.076 10.986 1.427 20.312 8.748 24.364 19.098l47.016 119.962 68.184-160.6c4.791-11.323 15.835-18.564 28.065-18.564 0.563 0 1.119 0.015 1.704 0.029 12.866 0.754 23.83 9.443 27.494 21.76l64.915 218.39 28.613-58.784c7.336-15.141 25.578-21.431 40.726-14.073 15.133 7.351 21.453 25.607 14.080 40.718l-62.881 129.266c-5.522 11.33-17.371 18.051-29.893 17.042-12.566-1.039-23.128-9.596-26.734-21.694l-63.115-212.253-64.197 151.34c-4.857 11.432-16.048 18.761-28.511 18.571-12.398-0.176-23.406-7.79-27.934-19.369l-54.155-138.174-40.089 54.287c-5.64 7.592-14.366 12.112-23.823 12.361-9.479 0.212-18.395-3.906-24.357-11.271l-55.859-68.791c-10.627-13.1-8.623-32.307 4.418-42.928v0z" horiz-adv-x="746" />
|
||||
<glyph unicode="" d="M395.743-27.248c-0.545 0-1.096 0.014-1.615 0.040-14.67 0.794-22.416 6.544-28.068 10.752l-2.067 1.549-104.993 85.51-101.547-86.317c-5.711-4.412-13.528-10.444-28.541-11.271-0.479-0.033-1.083-0.053-1.7-0.053-11.861 0-24.602 6.847-30.982 16.654-6.144 8.894-7.004 17.598-7.103 23.342 0.046 7.305 1.412 12.832 2.744 17.322l40.547 132.89-103.844 68.431c-3.63 2.429-8.265 5.816-12.722 11.048-4.352 5.317-9.859 13.509-10.122 26.295-0.17 8.869 3.138 18.163 8.862 24.891 3.886 4.746 8.835 8.488 14.946 11.212 8.967 3.787 16.109 4.188 22.128 4.267l128.801 0.072 37.336 134.111c1.412 5.015 3.42 10.942 7.713 17.349 7.451 11.041 19.194 17.506 32.25 17.789l0.374 0.006 0.367-0.006c13.201-0.315 24.622-6.597 32.171-17.697 4.247-6.295 6.229-11.993 7.739-17.218l37.389-134.328 128.571-0.072c4.064-0.013 9.479-0.243 15.774-1.93 6.485-1.916 14.388-5.080 21.609-13.653 5.658-6.728 8.934-15.99 8.77-24.779-0.25-12.702-5.724-20.907-9.82-25.975-4.779-5.605-9.413-8.986-12.951-11.349l-102.623-67.715 45.246-132.726c1.634-4.969 3.249-10.884 3.308-18.4-0.079-6.157-0.958-14.953-7.627-24.293-6.19-9.138-18.747-15.748-30.32-15.748v0z" />
|
||||
<glyph unicode="" d="M395.743-27.248c-0.545 0-1.096 0.014-1.615 0.040-14.67 0.794-22.416 6.544-28.068 10.752l-2.067 1.549-104.993 85.51-101.547-86.317c-5.711-4.412-13.528-10.444-28.541-11.271-0.479-0.033-1.083-0.053-1.7-0.053-11.861 0-24.602 6.847-30.982 16.654-6.144 8.894-7.004 17.598-7.103 23.342 0.046 7.305 1.412 12.832 2.744 17.322l40.547 132.89-103.844 68.431c-3.63 2.429-8.265 5.816-12.722 11.048-4.352 5.317-9.859 13.509-10.122 26.295-0.17 8.869 3.138 18.163 8.862 24.891 3.886 4.746 8.835 8.488 14.946 11.212 8.967 3.787 16.109 4.188 22.128 4.267l128.801 0.072 37.336 134.111c1.412 5.015 3.42 10.942 7.713 17.349 7.451 11.041 19.194 17.506 32.25 17.789l0.374 0.006 0.367-0.006c13.201-0.315 24.622-6.597 32.171-17.697 4.247-6.295 6.229-11.993 7.739-17.218l37.389-134.328 128.571-0.072c4.064-0.013 9.479-0.243 15.774-1.93 6.485-1.916 14.388-5.080 21.609-13.653 5.658-6.728 8.934-15.99 8.77-24.779-0.25-12.702-5.724-20.907-9.82-25.975-4.779-5.605-9.413-8.986-12.951-11.349l-102.623-67.715 45.246-132.726c1.634-4.969 3.249-10.884 3.308-18.4-0.079-6.157-0.958-14.953-7.627-24.293-6.19-9.138-18.747-15.748-30.32-15.748v0zM384.414 10.785l1.227-0.906c4.037-3 5.422-4.030 10.056-4.3 1.018 0.125 2.921 1.064 3.453 1.727 1.457 2.048 1.687 3.341 1.713 5.586-0.020 2.173-0.44 4.326-1.608 7.89l-46.651 136.868c-0.748 2.101-1.182 4.601-1.228 7.26-0.315 8.474 4.398 19.43 12.315 24.195l105.925 69.888c2.665 1.779 4.325 3.184 5.848 4.963 1.464 1.818 2.199 3.131 2.245 5.651 0.020 0.775-0.558 2.396-1.057 3-1.614 1.923-2.954 2.475-5.409 3.203-1.706 0.447-3.826 0.683-6.931 0.696l-132.713 0.079c-5.337 0-11.638 2.343-16.443 6.124-4.667 3.446-8.56 8.921-9.938 14.172l-38.381 137.899c-0.906 3.144-1.733 5.382-3.341 7.772-1.962 2.888-4.129 3.223-5.395 3.282-1.195-0.053-3.407-0.394-5.357-3.289-1.621-2.415-2.429-4.634-3.341-7.87l-38.347-137.754c-1.372-5.258-5.278-10.752-10.339-14.5-4.411-3.479-10.706-5.829-16.036-5.829l-132.779-0.073c-3.951-0.052-6.308-0.295-9.294-1.549-1.129-0.512-2.002-1.148-2.83-2.153-0.643-0.774-1.247-2.363-1.234-3.19 0.053-2.527 0.782-3.82 2.501-5.921 1.28-1.496 2.934-2.895 5.691-4.739l106.378-70.098c8.146-4.923 13.102-16.502 12.761-25.173-0.046-2.423-0.401-4.72-1.064-6.821l-41.504-136.034c-0.827-2.809-1.339-5.022-1.359-7.706 0.039-2.048 0.262-3.368 1.549-5.232 0.761-0.978 2.816-2.008 3.84-2.094 4.601 0.269 5.973 1.326 10.056 4.484l1.182 0.905 104.060 88.616c4.103 3.61 10.122 5.75 16.22 5.75 6.066 0 12.032-2.087 16.076-5.586l109.483-89.193z" />
|
||||
<glyph unicode="" d="M253.426 474.186c-139.446 0-252.493-113.040-252.493-252.494s113.047-252.493 252.493-252.493 252.493 113.040 252.493 252.493c0 139.454-113.047 252.494-252.493 252.494v0zM253.426 32.323c-104.42 0-189.37 84.943-189.37 189.369 0 104.42 84.95 189.37 189.37 189.37s189.37-84.95 189.37-189.37c0-104.426-84.95-189.369-189.37-189.369v0zM375.934 165.106l-99.875 67.465v116.126c0 2.777-1.129 5.484-3.079 7.448-1.957 1.957-4.671 3.079-7.448 3.079h-27.62c-2.778 0-5.478-1.122-7.442-3.079-1.957-1.964-3.079-4.678-3.079-7.448v-137.132c0-2.778 1.122-5.485 3.079-7.449 0.793-0.792 1.711-1.452 2.714-1.95l116.372-77.95c1.753-1.157 3.78-1.774 5.835-1.774 0.744 0 1.494 0.084 2.23 0.238 2.785 0.589 5.191 2.287 6.713 4.713l14.644 23.426c2.995 4.79 1.648 11.117-3.044 14.287v0z" />
|
||||
<glyph unicode="" d="M378.599 200.567h-43.253c-23.082 0-28.609 13.354-12.288 29.668 16.314 16.314 30.082 30.082 30.58 30.573 0.498 0.519 0.498 1.325 0 1.837s-13.635 13.642-29.177 29.191c-15.543 15.536-28.672 28.672-29.177 29.177-0.498 0.491-1.326 0.491-1.838 0-0.498-0.505-14.266-14.272-30.58-30.586s-29.661-10.794-29.661 12.288v43.246c0 0.716-0.589 1.305-1.304 1.305h-82.53c-0.716 0-1.305-0.589-1.305-1.305v-43.246c0-23.082-13.347-28.602-29.661-12.288s-30.074 30.081-30.572 30.586c-0.512 0.491-1.333 0.491-1.845 0-0.491-0.505-13.635-13.641-29.177-29.177-15.542-15.549-28.672-28.686-29.177-29.191-0.498-0.505-0.498-1.318 0-1.837 0.505-0.491 14.266-14.259 30.587-30.573 16.314-16.314 10.787-29.668-12.295-29.668h-43.254c-0.722 0-1.304-0.589-1.304-1.304v-82.523c0-0.73 0.582-1.305 1.304-1.305h43.247c23.075 0 28.609-13.354 12.288-29.668l-30.573-30.573c-0.498-0.519-0.498-1.325 0-1.837 0.505-0.505 13.635-13.642 29.177-29.177 15.542-15.55 28.672-28.672 29.177-29.191 0.498-0.491 1.326-0.491 1.838 0 0.498 0.519 14.265 14.273 30.579 30.586 16.314 16.314 29.661 10.795 29.661-12.288v-43.246c0-0.729 0.589-1.305 1.305-1.305h82.53c0.715 0 1.304 0.576 1.304 1.305v43.246c0 23.083 13.348 28.602 29.661 12.302 16.314-16.327 30.089-30.081 30.594-30.586 0.498-0.505 1.319-0.505 1.824 0s13.634 13.627 29.184 29.177c15.549 15.535 28.679 28.672 29.177 29.177s0.498 1.318 0 1.837c-0.498 0.505-14.266 14.259-30.58 30.573-16.307 16.314-10.787 29.668 12.288 29.668h43.246c0.723 0 1.305 0.575 1.305 1.305v82.523c0 0.715-0.582 1.304-1.305 1.304v0zM193.48 95.762c-35.097 0-63.558 28.454-63.558 63.558 0 35.096 28.461 63.551 63.558 63.551 35.103 0 63.558-28.455 63.558-63.551-0.007-35.111-28.455-63.558-63.558-63.558v0zM505.681 400.402h-21.617c-11.523 0-14.286 6.656-6.13 14.819 8.15 8.15 15.031 15.017 15.276 15.276 0.246 0.246 0.246 0.66 0 0.919-0.245 0.246-6.81 6.81-14.574 14.561-7.764 7.778-14.329 14.329-14.575 14.588-0.252 0.246-0.673 0.246-0.918 0-0.26-0.245-7.133-7.126-15.283-15.276s-14.813-5.4-14.813 6.123c0 11.538 0 21.259 0.007 21.616-0.007 0.358-0.302 0.646-0.652 0.646h-41.227c-0.358 0-0.645-0.288-0.645-0.646v-21.616c0-11.523-6.67-14.287-14.82-6.137-8.157 8.164-15.031 15.031-15.283 15.29-0.26 0.246-0.673 0.246-0.919 0-0.252-0.245-6.817-6.81-14.581-14.574-7.757-7.765-14.322-14.329-14.568-14.575-0.252-0.245-0.252-0.673 0-0.919 0.253-0.259 7.126-7.126 15.283-15.276 8.143-8.149 5.387-14.819-6.144-14.819h-21.595c-0.365-0.014-0.652-0.302-0.659-0.66 0.007-0.357 0-9.63 0-20.613v-20.606c0-0.358 0.294-0.646 0.652-0.646s10.086-0.014 21.602-0.014c11.538 0.014 14.287-6.656 6.144-14.805-8.157-8.15-15.037-15.031-15.283-15.276-0.252-0.26-0.252-0.674 0-0.919 0.253-0.26 6.818-6.824 14.575-14.589 7.764-7.75 14.322-14.315 14.574-14.574 0.253-0.246 0.666-0.246 0.926 0 0.245 0.259 7.119 7.126 15.276 15.29 8.15 8.136 14.82 5.386 14.82-6.137 0-11.538 0.007-21.259 0-21.616 0-0.358 0.287-0.646 0.645-0.646h41.22c0.35 0 0.645 0.288 0.652 0.66 0.007 0.343 0 10.071 0 21.588 0 11.537 6.663 14.301 14.813 6.151s15.030-15.031 15.283-15.29c0.252-0.246 0.666-0.246 0.918 0 0.246 0.259 6.811 6.824 14.575 14.574l14.574 14.575c0.246 0.259 0.246 0.673 0 0.933-0.245 0.245-7.126 7.126-15.283 15.276-8.156 8.149-5.393 14.819 6.137 14.819h21.617c0.35 0 0.645 0.288 0.645 0.646v20.613c0 10.969 0 20.249 0.007 20.613-0.014 0.351-0.309 0.653-0.652 0.653v0zM435.691 356.145c-12.4-12.4-32.502-12.4-44.895 0s-12.4 32.509 0 44.902c12.4 12.393 32.502 12.4 44.895 0 12.407-12.393 12.4-32.509 0-44.902v0z" />
|
||||
<glyph unicode="" d="M653.814 396.409h-126.338c-0.097 0.183-0.126 0.377-0.222 0.56l-18.113 36.207c-4.666 9.313-17.003 16.935-27.426 16.935h-243.181c-10.424 0-22.76-7.622-27.426-16.935l-18.113-36.207c-0.097-0.183-0.145-0.377-0.232-0.56h-132.241c-10.404 0-18.934-8.54-18.934-18.954v-359.723c0-10.424 8.53-18.954 18.934-18.954h593.312c10.423 0 18.944 8.53 18.944 18.954v359.723c-0.010 10.424-8.55 18.954-18.964 18.954v0zM357.54 53.33c-82.152 0-148.77 66.599-148.77 148.78 0 82.132 66.618 148.731 148.77 148.731s148.77-66.599 148.77-148.731c0-82.181-66.618-148.78-148.77-148.78v0zM357.54 298.221c-53.006 0-96.13-43.115-96.13-96.111 0-53.017 43.124-96.15 96.13-96.15 53.016 0 96.15 43.133 96.15 96.15 0 52.996-43.134 96.111-96.15 96.111v0z" horiz-adv-x="705" />
|
||||
<glyph unicode="" d="M384.919 373.714c-15.318 13.67-38.821 12.345-52.491-2.987-13.669-15.318-12.33-38.814 2.995-52.484 31.688-28.349 51.509-69.148 51.523-114.94-0.148-85.063-68.973-153.888-154.028-154.028-85.055 0.14-153.888 68.965-154.028 154.028 0.014 46.002 20.017 86.948 51.958 115.312 15.374 13.606 16.79 37.116 3.177 52.469-13.621 15.367-37.11 16.798-52.47 3.17l-0.014 0.022c-47.139-41.711-77.031-103.018-77.017-170.98 0.021-126.156 102.246-228.38 228.394-228.395 126.141 0.022 228.373 102.239 228.387 228.395 0.007 67.668-29.605 128.736-76.386 170.418v0zM233.57 165.611c20.543 0 37.187 16.643 37.187 37.166v239.258c0 20.543-16.644 37.193-37.187 37.193s-37.186-16.65-37.186-37.193v-239.258c0-20.523 16.643-37.166 37.186-37.166v0z" horiz-adv-x="462" />
|
||||
<glyph unicode="" d="M333.404 256.497v84.011c0 77.013-62.442 139.456-139.456 139.456-0.96 0-1.649 0.056-2.595 0.028-0.775 0.014-1.764-0.043-2.553-0.043-77.028 0-139.442-62.442-139.442-139.456v-83.996h-49.358v-288.448h384.071v288.448h-50.667zM119.111 340.493c0 38.415 31.261 69.668 69.682 69.668 1.095 0 3.406 0.057 3.406 0.057s1.166-0.043 1.749-0.043c38.415 0 69.682-31.253 69.682-69.667v-84.011h-144.512v83.996h-0.007z" horiz-adv-x="391" />
|
||||
<glyph unicode="" d="M368.475 284.622h117.867v-23.766h-117.867zM183.8 114.449h302.542v-23.751h-302.542zM183.8 187.648h302.542v-23.742h-302.542zM368.475 357.83h117.867v-23.767h-117.867zM183.8 377.608h141.452v-142.476h-141.452zM544.529 450.155h-414.985c-14.517 0-18.457-3.947-18.457-18.597v-60.556h-58.169c-14.518 0-18.457-3.948-18.457-18.589v-307.109c0-21.892 25.55-50.267 49.887-50.267h460.172c14.534 0 18.457 3.947 18.457 18.597v417.924c0.008 14.65-3.906 18.597-18.448 18.597v0zM531.547 26.715h-447.183c-5.59 0-17.854 12.453-18.456 18.597v294.037h45.188v-284.259h31.43v284.259h0.008v79.153h389.013v-391.787z" horiz-adv-x="594" />
|
||||
<glyph unicode="" d="M511.911 96.935c-35.345 15.709-87.788 56.173-165.433 70.079 19.854 21.252 34.889 54.491 50.346 93.874 8.964 22.821 7.42 42.269 7.42 69.966 0 20.463 3.861 53.296-1.219 71.338-17.123 60.985-60.408 77.808-111.112 77.808-50.745 0-94.070-16.904-111.169-77.995-5.039-17.993-1.178-50.753-1.178-71.16 0-27.761-1.512-47.274 7.477-70.135 15.579-39.579 30.386-72.769 50.176-93.94-77.036-14.157-129.081-54.329-164.198-69.982-72.663-32.402-73.021-67.884-73.021-67.884v-60.262l585.2 0.073v60.189c0 0.016-0.342 35.612-73.289 68.031v0z" horiz-adv-x="593" />
|
||||
<glyph unicode="" d="M256 480c-141.385 0-256-114.615-256-256s114.615-256 256-256 256 114.615 256 256-114.615 256-256 256zM160 224c0 53.020 42.98 96 96 96s96-42.98 96-96-42.98-96-96-96-96 42.98-96 96zM462.99 138.262v0l-88.71 36.745c6.259 15.092 9.72 31.638 9.72 48.993s-3.461 33.901-9.72 48.993l88.71 36.745c10.954-26.411 17.010-55.365 17.010-85.738s-6.057-59.327-17.010-85.738v0zM341.739 430.99v0 0l-36.745-88.71c-15.092 6.259-31.638 9.72-48.994 9.72s-33.901-3.461-48.993-9.72l-36.745 88.711c26.411 10.952 55.366 17.009 85.738 17.009 30.373 0 59.327-6.057 85.739-17.010zM49.010 309.738l88.711-36.745c-6.259-15.092-9.721-31.638-9.721-48.993s3.461-33.901 9.72-48.993l-88.71-36.745c-10.953 26.411-17.010 55.365-17.010 85.738s6.057 59.327 17.010 85.738zM170.262 17.010l36.745 88.71c15.092-6.259 31.638-9.72 48.993-9.72s33.901 3.461 48.993 9.72l36.745-88.71c-26.411-10.952-55.365-17.010-85.738-17.010s-59.327 6.057-85.738 17.010z" />
|
||||
<glyph unicode="" d="M256 480c-141.383 0-256-114.61-256-256s114.617-256 256-256c141.383 0 256 114.61 256 256s-114.617 256-256 256v0zM419.527 291.428l-179.726-180.139c-5.177-5.191-15.403-9.437-22.727-9.437h-15.524c-7.324 0-17.55 4.26-22.72 9.437l-84.636 85.027c-5.17 5.192-5.163 13.682 0.021 18.859l33.309 33.309c5.184 5.191 13.66 5.191 18.851 0.014l54.073-53.959c5.191-5.184 13.668-5.177 18.844 0.014l148.203 148.551c5.177 5.184 13.661 5.212 18.859 0.050l33.13-32.903c5.192-5.17 5.213-13.625 0.043-18.823v0z" />
|
||||
<glyph unicode="" d="M252.493 474.557c-139.446 0-252.493-113.046-252.493-252.493 0-139.453 113.047-252.493 252.493-252.493 139.447 0 252.493 113.040 252.493 252.493 0 139.447-113.046 252.493-252.493 252.493v0zM252.493 32.694c-104.42 0-189.37 84.943-189.37 189.37 0 104.42 84.95 189.37 189.37 189.37s189.37-84.95 189.37-189.37c0-104.427-84.95-189.37-189.37-189.37v0zM257.171 98.153c69.724 0 126.247 56.523 126.247 126.247s-56.523 126.246-126.247 126.246c-69.724 0-126.246-56.522-126.246-126.246s56.522-126.247 126.246-126.247z" horiz-adv-x="504" />
|
||||
<glyph unicode="" d="M322.361 290.382v168.285h-132.757v-168.285h-168.271v-132.743h168.271v-168.27h132.757v168.27l168.263-0.007v132.75h-168.263z" />
|
||||
<glyph unicode="" d="M132.144 187.281c-6.859 6.868-6.839 18.132 0.029 24.991l44.139 44.148c6.868 6.869 18.113 6.869 24.991 0.010l71.68-71.526c6.868-6.858 18.113-6.849 24.972 0.020l196.453 196.917c6.859 6.878 18.104 6.907 25.002 0.058l43.916-43.607c6.887-6.849 6.916-18.065 0.058-24.943l-238.225-238.795c-6.869-6.878-20.422-12.501-30.141-12.501h-20.576c-9.719 0-23.263 5.642-30.121 12.511l-112.177 112.717z" horiz-adv-x="695" />
|
||||
<glyph unicode="" d="M480 89.632l-134.496 134.368 134.496 134.368-89.632 89.632-134.368-134.432-134.432 134.432-89.568-89.632 134.368-134.368-134.368-134.368 89.568-89.632 134.432 134.432 134.368-134.432z" />
|
||||
<glyph unicode="" d="M562.904 188.144c-0.168 0.28-0.344 0.552-0.496 0.84-5.512 10.136-12.344 19.304-20.28 27.248l-108.44 108.424c-0.44 0.456-0.856 0.832-1.232 1.168-13.816 13.4-30.608 23.224-48.872 28.648 21.048-22.032 34.984-49.552 40.392-79.832 1.608-9.080 2.44-18.36 2.44-27.592 0-3.68-0.16-7.56-0.488-11.84l67.576-67.592c5.872-5.872 10.232-13.28 12.576-21.416 1.36-4.672 2.032-9.528 2.032-14.456 0-5.456-0.832-10.832-2.472-15.992-2.488-7.776-6.56-14.536-12.144-20.112l-44.064-44.064c-9.44-9.44-22.216-14.64-35.984-14.64s-26.544 5.2-35.984 14.64l-108.416 108.416c-3.904 3.904-7.144 8.512-9.608 13.72-3.264 6.84-4.984 14.544-4.984 22.248 0 5.2 0.768 10.344 2.264 15.28 0.144 0.44 0.296 0.872 0.472 1.312l0.264 0.72c0.64 1.816 1.232 3.28 1.856 4.624 0.36 0.784 0.752 1.544 1.16 2.312 0.736 1.392 1.56 2.768 2.528 4.232l0.408 0.608c0.296 0.44 0.576 0.888 0.888 1.312 1.608 2.184 3.16 4.016 4.752 5.592l16.8 16.8c-0.184 2-0.64 3.784-1.376 5.296-0.704 1.488-1.56 2.752-2.576 3.768l-42.12 42.12-19.344-19.36c-1.872-1.872-3.752-3.888-5.736-6.184-0.296-0.328-0.576-0.688-0.856-1.032l-0.624-0.768c-1.328-1.576-2.592-3.168-3.816-4.8-0.424-0.544-0.816-1.112-1.216-1.656l-0.232-0.328c-1.2-1.688-2.36-3.392-3.472-5.128l-0.296-0.456c-0.264-0.408-0.528-0.832-0.8-1.232-1.296-2.128-2.544-4.28-3.672-6.392l-0.168-0.312-0.16-0.296c-3.936-7.488-7.096-15.456-9.376-23.72-0.816-2.936-1.456-5.656-1.984-8.28-1.608-8.016-2.424-16.112-2.424-24.16 0-7.080 0.64-14.184 1.856-21.096 4.312-24.216 15.72-46.144 32.952-63.392l108.432-108.416c46.656-46.656 122.56-46.656 169.216 0l44.064 44.064c15.080 15.088 25.84 34.152 31.128 55.152 2.496 9.984 3.784 19.896 3.784 29.464 0 18.904-4.544 37.792-13.128 54.608-0.096 0.192-0.2 0.4-0.28 0.608-0.080 0.16-0.144 0.32-0.232 0.48-0.144 0.304-0.312 0.56-0.488 0.84v0zM358 332.928l-108.416 108.432c-46.656 46.64-122.56 46.64-169.216-0.016l-44.064-44.064c-15.096-15.080-25.84-34.16-31.128-55.144-2.496-9.984-3.784-19.888-3.784-29.472 0-18.904 4.544-37.784 13.128-54.608 0.112-0.184 0.2-0.408 0.28-0.608 0.080-0.16 0.144-0.328 0.232-0.488 0.144-0.264 0.296-0.528 0.472-0.816s0.344-0.56 0.496-0.856c5.528-10.144 12.36-19.296 20.296-27.232l108.424-108.424c0.456-0.472 0.856-0.84 1.248-1.168 13.816-13.392 30.592-23.216 48.856-28.64-21.032 22.032-34.968 49.544-40.36 79.832-1.624 9.048-2.456 18.344-2.456 27.592 0 3.656 0.16 7.528 0.488 11.84l-67.576 67.592c-5.872 5.872-10.232 13.28-12.576 21.424-1.36 4.672-2.048 9.512-2.048 14.44 0 5.456 0.84 10.84 2.488 16 2.488 7.784 6.56 14.544 12.144 20.112l44.064 44.064c19.512 19.512 52.472 19.512 71.968 0l108.416-108.416c3.904-3.904 7.144-8.512 9.608-13.72 3.248-6.84 4.984-14.528 4.984-22.248 0-5.2-0.768-10.344-2.264-15.28-0.144-0.456-0.296-0.888-0.472-1.344l-0.264-0.688c-0.64-1.816-1.232-3.28-1.856-4.624-0.36-0.784-0.768-1.544-1.168-2.312-0.736-1.408-1.576-2.832-2.512-4.232l-0.376-0.56c-0.296-0.472-0.592-0.92-0.92-1.36-1.608-2.184-3.16-4.016-4.736-5.592l-16.816-16.8c0.184-2 0.64-3.784 1.376-5.312 0.704-1.488 1.56-2.752 2.576-3.752l42.12-42.12 19.344 19.36c1.84 1.84 3.72 3.872 5.752 6.184 0.296 0.344 0.592 0.704 0.872 1.064l0.592 0.72c1.328 1.592 2.592 3.184 3.816 4.824 0.496 0.648 0.968 1.304 1.44 1.976 1.232 1.688 2.376 3.392 3.504 5.128l0.36 0.568 0.704 1.128c1.312 2.112 2.544 4.256 3.688 6.392l0.16 0.288 0.168 0.32c3.936 7.464 7.096 15.44 9.392 23.712 0.784 2.848 1.424 5.576 1.968 8.296 1.608 8 2.424 16.096 2.424 24.144 0 7.096-0.64 14.192-1.856 21.104-4.344 24.192-15.736 46.112-32.984 63.36v0z" horiz-adv-x="584" />
|
||||
<glyph unicode="" d="M653.622 396.359h-126.301c-0.097 0.183-0.126 0.376-0.222 0.559l-18.108 36.197c-4.664 9.31-16.998 16.93-27.418 16.93h-243.109c-10.421 0-22.754-7.62-27.418-16.93l-18.108-36.197c-0.097-0.183-0.145-0.376-0.232-0.559h-132.202c-10.401 0-18.928-8.538-18.928-18.949v-359.617c0-10.421 8.527-18.948 18.928-18.948h593.138c10.42 0 18.938 8.527 18.938 18.948v359.617c-0.010 10.421-8.547 18.949-18.958 18.949v0zM357.435 53.381c-82.128 0-148.726 66.579-148.726 148.736 0 82.108 66.598 148.687 148.726 148.687s148.726-66.579 148.726-148.687c0-82.157-66.598-148.736-148.726-148.736v0zM357.435 298.199c-52.991 0-96.102-43.102-96.102-96.082 0-53.002 43.111-96.122 96.102-96.122 53 0 96.121 43.12 96.121 96.122 0 52.98-43.121 96.082-96.121 96.082v0z" horiz-adv-x="705" />
|
||||
<glyph unicode="" d="M160 160v96h96l-128 128-128-128h96v-160h192l-64 64zM416 192v160h-192l64-64h64v-96h-96l128-128 128 128z" />
|
||||
<glyph unicode="" d="M400 416c-5.312 0-10.562-0.375-15.792-1.125-29.874 40.708-77.020 65.125-128.208 65.125s-98.312-24.417-128.208-65.125c-5.23 0.75-10.48 1.125-15.792 1.125-61.75 0-112-50.25-112-112s50.25-112 112-112c13.688 0 27.084 2.5 39.709 7.333 28.957-25.25 65.791-39.333 104.291-39.333 38.542 0 75.333 14.083 104.291 39.333 12.625-4.833 26.021-7.333 39.709-7.333 61.75 0 112 50.25 112 112s-50.25 112-112 112zM400 224c-17.125 0-32.916 5.5-45.938 14.667-23.478-28.292-58.438-46.667-98.062-46.667s-74.584 18.375-98.062 46.667c-13-9.167-28.813-14.667-45.938-14.667-44.188 0-80 35.812-80 80s35.812 80 80 80c10.812 0 21.062-2.208 30.438-6.083 21.229 41.416 63.853 70.083 113.562 70.083s92.334-28.667 113.541-70.083c9.397 3.875 19.668 6.083 30.459 6.083 44.188 0 80-35.812 80-80s-35.812-80-80-80zM225 0c0-17.688 14.312-32 32-32s32 14.312 32 32-32 64-32 64-32-46.312-32-64zM352 32c0-17.688 14.312-32 32-32s32 14.312 32 32-32 64-32 64-32-46.312-32-64zM96 96c0-17.688 14.312-32 32-32s32 14.312 32 32-32 64-32 64-32-46.312-32-64z" />
|
||||
<glyph unicode="" d="M256 336c-61.75 0-112-50.25-112-112s50.25-112 112-112 112 50.25 112 112c0 61.75-50.25 112-112 112zM256 144c-44.188 0-80 35.812-80 80s35.812 80 80 80 80-35.812 80-80-35.812-80-80-80zM256 368c8.833 0 16 7.167 16 16v32c0 8.833-7.167 16-16 16s-16-7.167-16-16v-32c0-8.833 7.167-16 16-16zM256 80c-8.833 0-16-7.167-16-16v-32c0-8.833 7.167-16 16-16s16 7.167 16 16v32c0 8.833-7.167 16-16 16zM380.438 325.833l22.625 22.625c6.25 6.25 6.25 16.375 0 22.625s-16.375 6.25-22.625 0l-22.625-22.625c-6.25-6.25-6.25-16.375 0-22.625s16.375-6.25 22.625 0zM131.562 122.166l-22.625-22.625c-6.25-6.249-6.25-16.374 0-22.624s16.375-6.25 22.625 0l22.625 22.624c6.25 6.271 6.25 16.376 0 22.625-6.249 6.251-16.375 6.272-22.625 0zM112 224c0 8.833-7.167 16-16 16h-32c-8.833 0-16-7.167-16-16s7.167-16 16-16h32c8.833 0 16 7.167 16 16zM448 240h-32c-8.833 0-16-7.167-16-16s7.167-16 16-16h32c8.833 0 16 7.167 16 16s-7.167 16-16 16zM131.541 325.833c6.251-6.25 16.376-6.25 22.625 0 6.251 6.25 6.251 16.375 0 22.625l-22.625 22.625c-6.25 6.25-16.374 6.25-22.625 0-6.25-6.25-6.25-16.375 0-22.625l22.625-22.625zM380.459 122.188c-6.271 6.25-16.376 6.25-22.625 0-6.251-6.25-6.271-16.375 0-22.625l22.625-22.625c6.249-6.25 16.374-6.25 22.624 0s6.25 16.374 0 22.625l-22.624 22.625z" />
|
||||
<glyph unicode="" d="M208 416c8.833 0 16 7.167 16 16v32c0 8.833-7.167 16-16 16s-16-7.167-16-16v-32c0-8.833 7.167-16 16-16zM332.438 373.833l22.625 22.625c6.249 6.25 6.249 16.375 0 22.625s-16.375 6.25-22.625 0l-22.625-22.625c-6.25-6.25-6.25-16.375 0-22.625s16.375-6.25 22.625 0zM16 256h32c8.833 0 16 7.167 16 16s-7.167 16-16 16h-32c-8.833 0-16-7.167-16-16s7.167-16 16-16zM352 272c0-8.833 7.167-16 16-16h32c8.833 0 16 7.167 16 16s-7.167 16-16 16h-32c-8.833 0-16-7.167-16-16zM83.541 373.833c6.251-6.25 16.376-6.25 22.625 0 6.251 6.25 6.251 16.375 0 22.625l-22.625 22.625c-6.25 6.25-16.374 6.25-22.625 0-6.25-6.25-6.25-16.375 0-22.625l22.625-22.625zM400 224c-5.312 0-10.562-0.375-15.792-1.125-16.771 22.875-39.124 40.333-64.458 51.5-1.291 60.625-50.812 109.625-111.75 109.625-61.75 0-112-50.25-112-112 0-17.438 4.334-33.75 11.5-48.438-59.625-2.437-107.5-51.374-107.5-111.562 0-61.75 50.25-112 112-112 13.688 0 27.084 2.5 39.709 7.333 28.957-25.25 65.791-39.333 104.291-39.333 38.542 0 75.333 14.083 104.291 39.333 12.625-4.833 26.021-7.333 39.709-7.333 61.75 0 112 50.25 112 112s-50.25 112-112 112zM208 352c39.812 0 72.562-29.167 78.708-67.25-10.021 2-20.249 3.25-30.708 3.25-45.938 0-88.5-19.812-118.375-53.25-5.937 11.167-9.625 23.708-9.625 37.25 0 44.188 35.812 80 80 80zM400 32c-17.125 0-32.916 5.5-45.938 14.667-23.478-28.292-58.438-46.667-98.062-46.667s-74.584 18.375-98.062 46.667c-13-9.167-28.813-14.667-45.938-14.667-44.188 0-80 35.812-80 80s35.812 80 80 80c7.75 0 15.062-1.458 22.125-3.541 2.812-0.792 5.667-1.417 8.312-2.521 4.375 8.562 9.875 16.396 15.979 23.75 23.376 28.124 58.146 46.312 97.584 46.312 10.125 0 19.834-1.458 29.25-3.709 10.562-2.499 20.542-6.291 29.834-11.291 23.291-12.375 42.416-31.542 54.457-55.063 9.397 3.875 19.668 6.063 30.459 6.063 44.188 0 80-35.812 80-80s-35.812-80-80-80z" />
|
||||
<glyph unicode="" d="M326.042 36.312l-18 10.376c0.542 3.124 0.958 6.311 0.958 9.624 0 3.312-0.416 6.5-1 9.625l18.042 10.396c8.417 4.917 11.291 15.729 6.458 24.104-4.876 8.479-15.667 11.375-24.125 6.5l-18.188-10.5c-4.876 4.146-10.375 7.396-16.5 9.604v20.896c0 9.771-7.938 17.688-17.688 17.688s-17.666-7.917-17.666-17.688v-20.875c-6.126-2.188-11.646-5.479-16.521-9.625l-18.146 10.5c-8.479 4.875-19.292 2-24.167-6.479-4.875-8.417-1.938-19.25 6.5-24.126l17.959-10.375c-0.584-3.146-0.959-6.334-0.959-9.646s0.375-6.5 0.959-9.624l-17.958-10.375c-8.459-4.875-11.375-15.75-6.5-24.188s15.688-11.312 24.125-6.438l18.167 10.438c4.874-4.125 10.396-7.375 16.542-9.562v-20.938c0-9.749 7.916-17.624 17.666-17.624s17.688 7.875 17.688 17.624v20.938c6.125 2.188 11.688 5.438 16.521 9.625l18.167-10.5c8.458-4.875 19.249-2 24.125 6.438 4.874 8.437 1.999 19.25-6.459 24.187zM256 38.625c-9.75 0-17.688 7.938-17.688 17.688s7.938 17.646 17.688 17.646 17.667-7.896 17.667-17.646-7.917-17.688-17.667-17.688zM474.166 83.75l-12.083 3.208c-0.291 3.833-1.208 7.479-2.896 10.979l8.771 8.771c4.125 4.125 4.104 10.792 0 14.854-4.083 4.104-10.708 4.125-14.833 0l-8.791-8.75c-3.459 1.625-7.146 2.562-10.959 2.875l-3.209 12.062c-1.499 5.583-7.25 8.938-12.874 7.438-5.604-1.521-8.875-7.271-7.417-12.875l3.209-11.896c-1.584-1.084-3.084-2.292-4.5-3.667-1.375-1.417-2.542-2.916-3.626-4.459l-11.896 3.209c-5.604 1.499-11.396-1.876-12.896-7.438-1.499-5.625 1.876-11.354 7.417-12.875l12-3.229c0.334-3.771 1.292-7.458 2.979-10.959l-8.812-8.812c-4.083-4.104-4.062-10.729 0.042-14.812 4.083-4.083 10.708-4.125 14.792-0.042l8.832 8.833c3.459-1.707 7.168-2.666 11.001-2.957l3.166-12.021c1.542-5.604 7.25-8.938 12.876-7.438 5.583 1.5 8.957 7.249 7.458 12.917l-3.209 11.896c1.5 1.062 3.042 2.25 4.459 3.625 1.375 1.396 2.542 2.938 3.624 4.479l11.917-3.209c5.604-1.5 11.375 1.854 12.854 7.417 1.5 5.585-1.812 11.334-7.396 12.876zM438.312 77.062c-4.125-4.125-10.771-4.104-14.875 0-4.062 4.062-4.104 10.729 0 14.854 4.104 4.083 10.771 4.083 14.875 0 4.063-4.104 4.063-10.791 0-14.854zM118.938 137.5l-11.875-3.188c-1.104 1.5-2.25 3.021-3.646 4.438-1.416 1.375-2.916 2.562-4.479 3.625l3.188 11.938c1.5 5.604-1.834 11.375-7.375 12.854-5.625 1.5-11.375-1.834-12.875-7.417l-3.25-12.062c-3.812-0.312-7.458-1.25-10.938-2.896l-8.812 8.771c-4.125 4.125-10.75 4.104-14.834 0-4.104-4.104-4.104-10.75 0-14.854l8.771-8.771c-1.646-3.5-2.604-7.188-2.896-10.979l-12.042-3.208c-5.625-1.542-8.959-7.25-7.458-12.875 1.521-5.583 7.271-8.875 12.896-7.417l11.875 3.23c1.062-1.604 2.25-3.105 3.688-4.501 1.375-1.375 2.875-2.604 4.438-3.625l-3.188-11.896c-1.5-5.625 1.834-11.417 7.416-12.917 5.626-1.5 11.334 1.833 12.834 7.438l3.25 12c3.812 0.312 7.5 1.271 11 2.938l8.791-8.792c4.084-4.124 10.709-4.041 14.834 0.042 4.062 4.062 4.125 10.708 0 14.812l-8.812 8.812c1.688 3.46 2.688 7.188 2.938 11.001l12.062 3.188c5.562 1.521 8.896 7.25 7.396 12.875-1.501 5.56-7.251 8.894-12.897 7.436zM88.562 109.042c-4.104-4.104-10.75-4.104-14.875 0-4.062 4.083-4.062 10.771 0 14.833 4.125 4.083 10.771 4.083 14.875 0s4.063-10.75 0-14.833zM512 304c0 61.75-50.25 112-112 112-5.312 0-10.562-0.375-15.792-1.125-29.874 40.708-77.020 65.125-128.208 65.125s-98.312-24.417-128.208-65.125c-5.23 0.75-10.48 1.125-15.792 1.125-61.75 0-112-50.25-112-112s50.25-112 112-112c13.688 0 27.084 2.5 39.709 7.333 28.957-25.25 65.791-39.333 104.291-39.333 38.542 0 75.333 14.083 104.291 39.333 12.625-4.833 26.021-7.333 39.709-7.333 61.75 0 112 50.25 112 112zM354.062 238.667c-23.478-28.292-58.438-46.667-98.062-46.667s-74.584 18.375-98.062 46.667c-13-9.167-28.813-14.667-45.938-14.667-44.188 0-80 35.812-80 80s35.812 80 80 80c10.812 0 21.062-2.208 30.438-6.083 21.229 41.416 63.853 70.083 113.562 70.083s92.334-28.667 113.541-70.083c9.397 3.875 19.668 6.083 30.459 6.083 44.188 0 80-35.812 80-80s-35.812-80-80-80c-17.125 0-32.916 5.5-45.938 14.667z" />
|
||||
<glyph unicode="" d="M512 239.999c0 49.167-40 89.146-89.167 89.146-2.396 0-4.771-0.104-7.146-0.291-23.125 28.854-57.979 45.978-95.688 45.978-37.688 0-72.562-17.124-95.688-45.979-2.375 0.188-4.771 0.291-7.188 0.291-49.123 0.001-89.123-39.978-89.123-89.145 0-5.146 0.688-10.104 1.5-15.042-0.542-0.708-1.188-1.354-1.708-2.083-5.229 0.75-10.479 1.125-15.792 1.125-61.75 0-112-50.249-112-111.999s50.25-112 112-112c13.688 0 27.084 2.5 39.709 7.333 28.957-25.25 65.791-39.333 104.291-39.333 38.542 0 75.333 14.083 104.291 39.333 12.625-4.833 26.021-7.333 39.709-7.333 61.75 0 112 50.249 112 112 0 25.688-9.042 49.083-23.666 67.999 14.582 15.896 23.666 36.833 23.666 60zM400 32c-17.125 0-32.916 5.499-45.938 14.666-23.479-28.291-58.438-46.666-98.062-46.666s-74.584 18.375-98.062 46.666c-13-9.167-28.812-14.666-45.938-14.666-44.188 0-80 35.812-80 80s35.812 79.999 80 79.999c10.812 0 21.062-2.188 30.438-6.062 0.562 1.062 1.25 2 1.812 3.021 5.625 10.271 12.562 19.688 20.666 28.042 23.084 23.916 55.167 39 91.084 39 49.709 0 92.334-28.666 113.541-70.062 5.646 2.312 11.668 3.813 17.875 4.812l12.584 1.25c12.334 0 23.875-3.042 34.312-8 11.312-5.416 21.021-13.374 28.646-23.188 10.5-13.521 17.042-30.354 17.042-48.812 0-44.188-35.812-80-80-80zM465.562 202.375c-18.479 13.458-41 21.624-65.562 21.624-5.312 0-10.562-0.375-15.792-1.125-29.874 40.708-77.021 65.125-128.208 65.125-34.125 0-66.312-11.042-92.938-30.334 7.479 22.854 28.729 39.479 54.062 39.479 7.75 0 15.062-1.562 21.75-4.332 15.188 29.562 45.625 50.020 81.125 50.020s65.958-20.457 81.084-50.020c6.729 2.77 14.083 4.332 21.749 4.332 31.584 0 57.167-25.583 57.167-57.146 0.001-14.478-5.561-27.54-14.437-37.623z" />
|
||||
<glyph unicode="" d="M206.933 147.022l58.596 164.622 0.064 0.036h-0.057l0.057 0.185-154.759-0.128c0.739 2.524 37.682 103.587 56.59 168.263h-86.82l-80.54-227.065-0.064-0.035h0.050l-0.050-0.185 154.759 0.121c-0.526-1.785-19.392-53.071-36.956-105.821h-72.491l67.42-179.499 171.080 179.499-76.879 0.007z" horiz-adv-x="284" />
|
||||
<glyph unicode="" d="M253.141 227.662l131.527 131.527v124.338l-0.32 0.313-256.17-256.178 256.17-256.17 0.32 0.313v124.33z" />
|
||||
<glyph unicode="" d="M743.538 228.643v0c-0.062-49.405-16.655-89.42-66.414-89.42-49.755 0-66.355 40.016-66.407 89.42v0.245c0.052 49.404 16.652 89.416 66.41 89.416 49.755 0 66.348-40.012 66.41-89.416v-0.245zM677.124 368c-87.786 0-133.124-62.281-133.124-139.112s44.221-139.115 133.124-139.115c88.904 0 133.128 62.284 133.128 139.115s-45.345 139.112-133.128 139.112v0zM288 87.577v384.616c0 0 50.565 7.206 54.486 7.736 4.442 0.602 10.338-2.57 10.338-8.842v-142.582c10.497 10.008 22.048 18.075 34.642 24.226 12.603 6.14 27.386 9.216 44.362 9.216 14.7 0 27.724-2.501 39.096-7.511 11.383-4.995 20.876-12.022 28.486-21.058 7.611-9.046 13.383-19.84 17.324-32.391 3.934-12.551 5.904-26.371 5.904-41.472v-171.938h-64.827v171.938c0 16.498-3.803 29.271-11.417 38.317-7.614 9.036-19.031 13.558-34.258 13.558-11.197 0-21.69-2.542-31.483-7.642-9.807-5.089-19.079-12.018-27.827-20.798v-195.373h-64.824zM1162.845 77.361c-44.607 0-72.565 26.050-72.565 74.642v144.007h-50.28c0 0 10.686 37.078 11.531 40.001 0.849 2.917 3.059 6.047 7.496 6.667s31.186 4.363 31.186 4.363l12.355 78.858c0 0 36.3 5.134 42.055 5.995 5.435 0.817 10.362-3.113 10.362-9.050v-75.803h63.59v-51.031h-63.59v-142.070c0-19.397 11.773-26.811 23.055-26.811 6.897 0 16.341 3.678 23.389 6.954 4.355 2.021 11.103 0.522 12.845-5.577 1.545-5.404 9.742-34.086 9.742-34.086-7.072-4.58-29.428-17.058-61.172-17.058zM996.193 307.73c-12.635 4.117-36.38 10.707-58.969 10.707-23.017 0-41.128-7.978-41.128-27.178 0-23.981 39.031-30.966 65.749-40.739 17.862-6.535 65.766-19.276 65.766-70.961 0-62.786-51.972-89.627-107.41-89.627-55.445 0-88.2 20.691-88.2 20.691s8.6 30.474 10.341 36.494c1.576 5.414 7.851 7.313 11.845 5.774 14.265-5.518 40.034-13.191 69.155-13.191 29.486 0 43.755 9.033 43.755 28.288 0 25.627-39.817 33.46-66.152 41.793-18.138 5.736-66.155 19.113-66.155 75.952 0 55.995 49.010 82.266 101.389 82.266 44.338 0 66.086-9.303 82.331-17.605 0 0-9.052-31.65-10.396-36.366-1.593-5.597-6.176-8.168-11.92-6.299zM134.203 223.699c-29.176 0-51.934 15.547-51.934 49.457 0 33.916 22.783 49.464 51.934 49.464 29.159 0 51.941-15.505 51.941-49.464 0-33.954-22.755-49.457-51.941-49.457v0zM99.566 93.046c0 0 32.342-1.228 64.658-2.729 36.307-1.685 47.62-9.534 47.62-28.395 0-23.043-31.552-45.457-75.645-45.457-41.855 0-62.762 14.61-62.762 38.933 0 13.956 7.345 29.568 26.127 37.649v0zM269.286 358.48c0 6.058-5.159 9.52-10.079 8.957-21.755-2.501-37.276-12.773-47.317-22.331-19.717 15.499-47.086 22.894-77.807 22.894-61.586 0-109.704-29.817-109.704-94.844 0-37.324 15.834-63.045 40.986-78.187-18.68-8.873-31.12-27.693-31.12-46.197 0-30.955 24.376-40.649 24.376-40.649s-42.62-20.753-42.62-62.274c0-53.151 48.755-74.642 108.331-74.642 85.873 0 144.955 35.584 144.955 100.923 0 40.213-30.669 62.412-97.514 65.052-39.666 1.57-65.359 3.003-71.721 5.116-8.41 2.802-12.545 9.558-12.545 17.017 0 8.233 6.742 16.076 17.365 21.455 9.269-1.643 19.052-2.459 29.21-2.459 61.638 0 109.71 29.734 109.71 94.844 0 15.793-2.841 29.499-8.007 41.206 9.055 4.846 20.196 8.257 33.5 8.257v35.861z" horiz-adv-x="1232" />
|
||||
<glyph unicode="" d="M0 481.593v-102.4h307.2v102.4h-307.2zM0 276.793v-102.4h512v102.4h-512zM0 71.993v-102.4h204.8v102.4h-204.8zM307.2 71.993v-102.4h204.8v102.4h-204.8zM409.6 481.593v-102.4h102.4v102.4h-102.4z" />
|
||||
<glyph unicode="" d="M255.58 218.645l-131.527 131.527h-124.345l-0.305-0.32 256.177-256.17 256.171 256.17-0.306 0.32h-124.33z" />
|
||||
<glyph unicode="" d="M120.412 99.349v0.149c0.092 8.135 3.676 33.657 41.628 56.882 6.948 9.436 12.658 22.308 18.496 37.163 4.032 10.268 3.349 19.036 3.349 31.509 0 9.223 1.735 24.014-0.548 32.149-7.723 27.463-27.214 35.051-50.062 35.051-22.855 0-42.368-7.616-50.069-35.136-2.268-8.1-0.526-22.862-0.526-32.057 0-12.501-0.683-21.291 3.371-31.588 7.012-17.828 13.689-32.775 22.599-42.311-34.695-6.372-58.14-24.469-73.963-31.531-32.74-14.592-32.889-30.578-32.889-30.578v-27.143l118.635 0.021v37.298l0.001 0.122zM465.557 141.312c-21.874 9.721-54.35 34.773-102.414 43.385 12.288 13.17 21.589 33.735 31.168 58.126 5.547 14.123 4.594 26.169 4.594 43.321 0 12.672 2.382 33.003-0.754 44.167-10.61 37.76-37.397 48.171-68.8 48.171-31.417 0-58.24-10.468-68.821-48.284-3.122-11.136-0.732-31.424-0.732-44.053 0-17.195-0.939-29.269 4.629-43.42 9.636-24.505 18.809-45.049 31.054-58.162-47.687-8.761-79.915-33.636-101.653-43.328-44.992-20.060-45.212-42.020-45.212-42.020v-37.319l362.311 0.050v37.269c0.006-0.008-0.214 22.022-45.37 42.097z" />
|
||||
<glyph unicode="" d="M486.457 193.109l-242.98 243.001c-5.817 5.817-17.237 11.186-25.451 11.925l-131.441 11.961c-8.171 0.754-19.641-3.392-25.458-9.208l-29.995-29.995c-5.803-5.817-9.97-17.266-9.223-25.436l11.705-131.762c0.718-8.192 6.080-19.634 11.883-25.451l242.994-242.987c5.81-5.81 15.317-5.81 21.134 0l176.832 176.818c5.81 5.81 5.81 15.317 0 21.134zM123.527 357.518c-12.665-12.679-33.173-12.665-45.824 0-12.672 12.651-12.679 33.173-0.021 45.852 12.651 12.651 33.18 12.636 45.852-0.021 12.651-12.672 12.637-33.201-0.007-45.831z" />
|
||||
<glyph unicode="" d="M414.642 478.578h-307.484c-20.871 0-37.817-16.932-37.817-37.824v-436.708c0-20.892 16.939-37.824 37.817-37.824h307.484c20.892 0 37.817 16.939 37.817 37.824v436.708c0 20.885-16.932 37.824-37.817 37.824zM262.116-18.311c-6.99 0-12.665 5.689-12.665 12.665s5.689 12.665 12.665 12.665 12.665-5.689 12.665-12.665-5.668-12.665-12.665-12.665zM395.57 23.111h-269.348v398.578h269.348v-398.578z" />
|
||||
<glyph unicode="" d="M32 385.593h448v-96h-448zM32 257.593h448v-96h-448zM32 129.593h448v-96h-448z" />
|
||||
<glyph unicode="" d="M510.244 282.496c-0.967 0-27.236 0-58.382 0-31.154 0-38.606 18.027-16.597 40.050 22.030 22.030 40.612 40.604 41.294 41.287 0.683 0.69 0.683 1.792 0 2.482-0.683 0.683-18.404 18.404-39.388 39.388-20.978 20.971-38.692 38.692-39.388 39.388-0.683 0.683-1.799 0.683-2.482 0-0.683-0.69-19.25-19.264-41.28-41.287s-40.043-14.564-40.043 16.583c0 31.154 0 57.415 0 58.382s-0.789 1.735-1.735 1.735c-0.988 0-26.027 0-55.701 0s-54.734 0-55.701 0c-0.96 0-1.735-0.782-1.735-1.735s0-27.228 0-58.382c0-31.147-18.020-38.606-40.043-16.583s-40.604 40.597-41.287 41.287c-0.683 0.683-1.799 0.683-2.482 0-0.676-0.69-18.404-18.411-39.388-39.388-20.978-20.999-38.692-38.692-39.388-39.388-0.683-0.69-0.683-1.792 0-2.482 0.683-0.683 19.257-19.257 41.287-41.287 22.030-22.023 14.564-40.050-16.583-40.050-31.154 0-57.444 0-58.389 0-0.967 0-1.735-0.782-1.735-1.735 0-0.96 0-26.027 0-55.694 0-29.682 0-54.741 0-55.701 0-0.967 0.782-1.735 1.735-1.735 0.96 0 27.236 0 58.382 0 31.154 0 38.606-18.020 16.597-40.043-22.030-22.030-40.604-40.597-41.287-41.28-0.683-0.69-0.683-1.792 0-2.482 0.683-0.683 18.404-18.404 39.388-39.388 20.999-20.978 38.692-38.692 39.388-39.388 0.683-0.683 1.792-0.683 2.475 0 0.683 0.69 19.264 19.264 41.287 41.287 22.037 22.030 40.050 14.564 40.050-16.583 0-31.154 0-57.422 0-58.389s0.789-1.735 1.735-1.735c0.967 0 26.027 0 55.701 0s54.727 0 55.701 0c0.96 0 1.735 0.782 1.735 1.735s0 27.236 0 58.389c0 31.147 18.020 38.606 40.043 16.59s40.604-40.597 41.287-41.287c0.683-0.683 1.799-0.683 2.482 0 0.676 0.69 18.404 18.411 39.388 39.388s38.692 38.692 39.388 39.388c0.683 0.69 0.683 1.792 0 2.482-0.683 0.683-19.25 19.25-41.28 41.28-22.023 22.023-14.556 40.043 16.59 40.043s57.408 0 58.382 0 1.735 0.746 1.735 1.713c0 0.96 0 26.027 0 55.701 0 29.682 0 54.734 0 55.694 0 0.968-0.782 1.75-1.756 1.75zM260.366 141.042c-47.396 0-85.796 38.4-85.796 85.796 0 47.374 38.407 85.796 85.796 85.796 47.374 0 85.796-38.414 85.796-85.796-0.007-47.396-38.422-85.796-85.796-85.796z" />
|
||||
<glyph unicode="" d="M79.218-30.948l150.898 150.919c26.944-14.414 57.707-22.62 90.396-22.62 105.991 0 191.908 85.916 191.908 191.9s-85.917 191.922-191.915 191.922c-105.977 0-191.9-85.924-191.9-191.908 0-32.249 7.986-62.613 22.044-89.287l-151.182-151.175 79.751-79.751zM320.505 417.173c70.528 0 127.908-57.38 127.908-127.908s-57.38-127.9-127.908-127.9c-70.528 0-127.9 57.372-127.9 127.9s57.372 127.908 127.9 127.908z" />
|
||||
<glyph unicode="" d="M512 48.391l-150.919 150.898c14.414 26.944 22.613 57.707 22.613 90.396 0 105.991-85.916 191.908-191.908 191.908-105.984 0-191.908-85.916-191.908-191.908 0-105.97 85.924-191.9 191.908-191.9 32.249 0 62.62 7.986 89.294 22.044l151.175-151.182 79.745 79.744zM63.879 289.678c0 70.528 57.38 127.908 127.908 127.908s127.908-57.38 127.908-127.908c0-70.528-57.372-127.9-127.908-127.9s-127.908 57.372-127.908 127.9z" />
|
||||
<glyph unicode="" d="M-0.292 305.479v-98.596c64.007 0 124.124-25.003 169.337-70.428 44.679-44.9 69.49-104.455 70.13-167.979l98.603-0.014c-1.366 186.055-152.455 337.017-338.070 337.017zM-0.142 480.242v-98.56c227.15 0 412.082-185.131 413.49-413.198l98.581-0.022c-1.422 282.439-230.542 511.78-512.071 511.78zM-0.363 36.864c0 0 0-0.002 0-0.002 0-37.714 30.573-68.288 68.288-68.288 37.713 0 68.287 30.572 68.288 68.286 0 37.714-30.573 68.288-68.288 68.288s-68.288-30.574-68.288-68.288z" />
|
||||
<glyph unicode="" d="M424.533 289.593h-227.556v-197.924h227.556v197.924zM396.089 120.114h-170.667v141.027h170.667v-141.027zM83.2 289.593h73.778v-197.924h-73.778zM-1.401 439.758v-440.96h511.417v440.96h-511.417zM361.742 410.24h104.789v-40.676h-104.789v40.676zM40.54 410.24h284.231v-40.676h-284.231v40.676zM467.349 41.465h-426.083v298.738h426.084l-0.001-298.738z" />
|
||||
<glyph unicode="" d="M392.476 434.738h-273.792c0 0-119.524-54.784-119.524-215.417 0-160.64 119.524-214.172 119.524-214.172h273.792c0 0 119.524 52.928 119.524 214.18 0 161.243-119.524 215.409-119.524 215.409zM383.765 40.903h-256.32c-21.198 12.245-92.523 62.123-92.523 178.418 0 116.096 70.884 166.798 92.722 179.655h255.986c21.291-12.43 92.608-62.834 92.608-179.648 0.007-116.587-70.912-166.073-92.473-178.425zM148.231 332.594h42.468v-125.085h-42.468zM320.953 332.594h42.467v-125.085h-42.467zM255.509 168c-40.249 0-42.766-38.706-42.916-43.548-0.014-0.327-0.014-49.415-0.014-49.415h86.5c0 0-0.007 49.052-0.021 49.316-0.192 4.287-2.973 43.647-43.549 43.647z" />
|
||||
<glyph unicode="" d="M260.743 481.365c-0.953 0-1.65 0.057-2.588 0.028-0.782 0.014-1.771-0.050-2.56-0.050-77.020 0-139.442-63.26-139.442-139.456 0-76.21 142.059-372.309 142.059-372.309s142.002 296.363 142.002 372.309-62.45 139.478-139.471 139.478zM257.842 290.29c-35.264 0-63.879 28.594-63.879 63.872s28.601 63.886 63.879 63.886c35.285 0 63.886-28.608 63.886-63.886s-28.601-63.872-63.886-63.872z" />
|
||||
<glyph unicode="" d="M455.865 396.672c0 15.964-7.524 23.488-23.481 23.488h-354.375c-15.972 0-23.488-7.524-23.488-23.488v-242.887h401.351v242.887zM423.339 186.325h-336.292v201.302h336.292v-201.302zM455.772 132.096h-401.251l-54.222-59.648h509.696l-54.223 59.648zM195.499 90.98l21.689 21.696h75.911l21.696-21.696h-119.296zM16.562 30.421c18.297 0 463.154 0 477.17 0 15.118 0 16.263 21.696 16.263 21.696h-509.696c0 0 0.426-21.696 16.263-21.696z" />
|
||||
<glyph unicode="" d="M493.561 356.423c-44.857 74.069-126.208 123.577-219.122 123.577-141.39 0-256-114.61-256-256s114.61-256 256-256c92.188 0 172.964 48.747 218.041 121.863l-221.582 132.957 222.663 133.603zM320.064 411.271c22.585 0 40.889-18.311 40.889-40.889s-18.311-40.889-40.889-40.889-40.889 18.311-40.889 40.889 18.304 40.889 40.889 40.889z" />
|
||||
<glyph unicode="" d="M480 341.119l-107.285 107.267-287.908-287.913-51.634-158.882 158.944 51.651 287.883 287.877zM71.546 39.95l34.858 107.285 72.44-72.434-107.298-34.851z" />
|
||||
<glyph unicode="" d="M373.476 478.578h-237.014c-20.935 0-37.909-16.974-37.909-37.909v-437.717c0-20.935 16.981-37.909 37.909-37.909h236.985c20.935 0 37.909 16.974 37.909 37.909l0.015 437.716c0.021 20.936-16.967 37.91-37.895 37.91zM255.004-9.721c-13.419 0-24.299 10.873-24.299 24.299 0 13.419 10.88 24.299 24.299 24.299s24.299-10.88 24.299-24.299c0.007-13.426-10.873-24.299-24.299-24.299zM382.933 64.597h-255.921v314.425h255.921v-314.425z" />
|
||||
<glyph unicode="" d="M0.59 417.515v-383.922h511.41v383.922h-511.41zM469.333 76.26h-426.076v298.588h426.076v-298.588zM94.684 111.723h336.064l-45.482 147.683-34.126-11.356-29.561 55.744-95.531-137.913-51.179 32.974zM96.668 286.471c0 0 0 0 0 0 0-22.296 18.075-40.37 40.37-40.37s40.37 18.075 40.37 40.37c0 0 0 0 0 0s0 0 0 0c0 22.296-18.075 40.37-40.37 40.37s-40.37-18.075-40.37-40.37c0 0 0 0 0 0z" />
|
||||
<glyph unicode="" d="M511.9 70.386c1.052 3.1 1.756 6.357 1.756 9.792l0.001 284.793c0 3.264-0.654 6.357-1.607 9.316l-167.31-143.261 167.16-160.64zM257.188 196.48l66.376 54.002 168.021 143.822c-2.759 0.818-5.618 1.394-8.633 1.394h-451.5c-3.022 0-5.888-0.576-8.654-1.401l168.121-143.893 66.269-53.924zM482.944 49.458c2.887 0 5.632 0.533 8.292 1.294l-168.804 162.14-65.244-53.099-65.145 53.013-168.875-162.061c2.652-0.747 5.397-1.287 8.284-1.287h451.492zM2.34 374.286c-0.953-2.958-1.607-6.052-1.607-9.316v-284.793c0-3.442 0.704-6.699 1.756-9.792l167.246 160.569-167.395 143.332z" />
|
||||
<glyph unicode="" d="M138.539 437.141h374.158v-82.211h-374.158zM138.539 262.3h374.158v-82.225h-374.158zM138.539 86.507h374.158v-82.219h-374.158zM0.533 396.103c0-22.665 18.373-41.038 41.038-41.038s41.038 18.374 41.038 41.038c0 22.665-18.373 41.038-41.038 41.038s-41.038-18.373-41.038-41.038zM0.533 221.476c0-22.665 18.373-41.038 41.038-41.038s41.038 18.373 41.038 41.038c0 22.665-18.373 41.038-41.038 41.038s-41.038-18.374-41.038-41.038zM0.533 46.073c0-0.001 0-0.002 0-0.003 0-22.665 18.373-41.038 41.038-41.038 22.663 0 41.037 18.372 41.038 41.035 0 22.665-18.373 41.038-41.038 41.038s-41.038-18.373-41.038-41.038z" />
|
||||
<glyph unicode="" d="M256 481.593c-141.383 0-256-114.61-256-256s114.617-256 256-256 256 114.61 256 256-114.617 256-256 256zM288.853 402.297c10.247 0.050 18.368-3.911 23.58-10.098 5.241-6.165 7.644-14.3 7.644-22.628 0-21.604-17.159-42.048-41.109-42.126-0.199 0-0.412 0-0.612 0-18.78 0-30.514 13.938-30.635 34.219 0.037 17.472 14.082 40.533 41.132 40.633zM319.851 115.321c-35.804-39.097-79.964-62.428-96.768-62.649-0.050 0-0.071 0-0.107 0-5.696 0-11.591 1.508-15.865 6.151-4.295 4.672-6.514 11.797-6.514 21.98 0 7.78 1.287 24.583 4.196 36.743l25.685 110.656c1.244 6.172 1.927 10.517 1.97 12.764-4.444-1.607-23.979-15.922-33.628-23.41l-3.407-2.594-9.998 27.15 1.956 1.82c36.146 33.429 79.58 60.217 99.506 60.466 5.689 0.092 10.645-2.816 13.312-7.516 2.738-4.629 3.812-10.652 3.812-17.892 0-7.9-1.33-24.377-3.804-35.065l-28.181-114.695c-1.337-5.511-1.884-9.543-1.884-12.089-0.014-1.436 0.185-2.375 0.327-2.816 3.008 0.363 23.012 14.080 35.961 25.998l3.065 2.78 10.688-23.452 1.5-2.297-1.822-2.033z" />
|
||||
<glyph unicode="" d="M413.696 206.386h98.361l-97.685 92.288v149.312h-78.884v-74.781l-79.367 74.98-256.178-241.799h95.189v-206.571h113.65v146.020h94.898v-146.020h110.016z" />
|
||||
<glyph unicode="" d="M-1.408 481.593h210.553v-210.553h-210.553zM300.203 481.593h210.553v-210.553h-210.553zM-1.408 179.982h210.553v-210.553h-210.553zM300.203 179.982h210.553v-210.553h-210.553z" />
|
||||
<glyph unicode="" d="M263.808 311.836l78.13-78.165 84.338 84.288 85.404-85.803v249.394l-249.031 0.206 85.795-85.269zM163.499 55.054l84.65 84.651-78.129 78.158-84.345-84.281-85.391 85.81v-249.422l249.017-0.178z" />
|
||||
<glyph unicode="" d="M256 481.593c-141.383 0-256-114.61-256-256s114.617-256 256-256 256 114.61 256 256-114.617 256-256 256zM272.967 72.555c-7.602-7.332-18.084-10.766-29.881-10.724-0.092-0.007-0.185-0.007-0.27-0.007-11.236 0-21.34 3.527-28.793 10.702-7.623 7.204-11.428 17.301-11.364 28.466-0.071 11.15 3.733 21.241 11.413 28.309 7.531 7.068 17.714 10.503 29.006 10.46 11.755 0.036 22.18-3.314 29.817-10.46 7.68-7.068 11.484-17.159 11.413-28.309 0.087-11.164-3.718-21.255-11.341-28.437zM341.483 268.338c-3.989-9.906-9.024-18.503-15.125-25.685-5.888-6.912-12.373-13.042-19.463-18.347-6.379-4.793-12.224-9.906-17.493-15.282-5.056-5.212-9.358-11.207-12.942-18.14-3.193-6.094-5.042-14.542-5.042-25.436v-7.111h-59.776l-0.612 6.436c-0.484 5.020-0.74 9.806-0.74 14.386 0 9.166 0.96 17.522 3.022 24.996 2.93 10.752 7.026 20.188 12.373 28.295 5.191 7.851 11.164 14.748 17.927 20.601 6.208 5.383 11.975 10.517 17.323 15.46 5.070 4.658 9.195 9.444 12.444 14.329 2.745 4.132 4.196 9.060 4.238 15.424-0.057 8.448-2.233 14.116-6.244 18.489-3.108 3.534-10.702 6.507-23.716 6.45-3.932 0-8.192-0.42-12.779-1.301-4.636-0.924-9.294-2.219-13.945-3.89-4.729-1.707-9.237-3.662-13.518-5.881-4.366-2.24-8.199-4.523-11.513-6.798l-6.635-4.587-27.442 52.7 5.205 3.563c11.129 7.623 23.865 13.86 38.137 18.773 14.706 5.035 32.071 7.452 52.060 7.452 27.157 0.021 49.479-6.635 65.82-20.665 16.32-13.888 24.654-33.429 24.555-56.398 0.010-14.779-1.931-27.366-6.119-37.833z" />
|
||||
<glyph unicode="" d="M346.19 40.327c0-8.953-7.559-16.519-16.519-16.519l-257.18 0.007c-8.96 0-16.519 7.559-16.519 16.519v257.181c0 8.967 7.559 16.526 16.519 16.526h135.488l55.801 55.815-191.289-0.014c-39.787 0-72.334-32.562-72.334-72.341v-257.173c-0.001-39.773 32.561-72.328 72.334-72.328h257.173c39.787 0 72.334 32.562 72.334 72.313v191.324l-55.815-55.801v-135.509zM253.141 461.148l82.539-82.552-151.211-151.218 75.065-75.065 151.218 151.211 82.553-82.568 18.851 259.037z" />
|
||||
<glyph unicode="" d="M499.918 85.383l-189.589 327.189c-29.504 50.923-77.838 50.951-107.406 0.071l-190.251-327.338c-29.568-50.88-5.611-92.508 53.234-92.508h380.658c58.851-0.001 82.858 41.663 53.354 92.586zM258.361 50.418c-18.226 0-32.74 14.492-32.74 32.74 0 18.226 14.5 32.74 32.74 32.74 18.219 0 32.74-14.5 32.74-32.74-0.015-18.248-14.514-32.74-32.74-32.74zM281.557 136.59h-46.386l-15.609 188.885h77.639l-15.644-188.885z" />
|
||||
<glyph unicode="" d="M511.751 262.073c9.87 84.188-67.932 162.027-173.767 173.86-64.818 7.253-125.084-11.975-164.352-47.275 8.811 0.846 17.671 1.351 26.432 1.351 52.58 0 102.99-15.431 141.945-43.456 41.266-29.696 66.965-71.41 72.356-117.454 4.807-40.96-7.076-82.695-33.429-118.201 54.322-40.683 104.071-29.76 92.516-21.042-32.277 24.341-39.14 48.107-37.106 66.752 41.499 23.588 70.193 60.956 75.405 105.465zM382.443 225.351c-9.010 76.921-88.085 132.523-182.379 132.523-8.917 0-17.956-0.498-27.1-1.515-105.828-11.84-183.631-89.678-173.768-173.859 5.22-44.516 33.906-81.877 75.413-105.465 2.041-18.645-4.821-42.418-37.106-66.759-5.156-3.883 1.877-8.206 16.050-8.206 22.123 0 61.668 10.524 99.556 49.664 9.358-1.145 18.951-1.735 28.693-1.735 8.846 0 17.82 0.484 26.873 1.5 105.842 11.833 183.631 89.671 173.768 173.852z" />
|
||||
<glyph unicode="" d="M256 481.593c-141.383 0-256-114.617-256-256s114.617-256 256-256 256 114.617 256 256c0 141.383-114.617 256-256 256zM417.244 136.37l-70.535-70.535-89.429 89.429-89.415-89.415-70.535 70.535 89.408 89.415-89.408 89.415 70.535 70.535 89.415-89.415 89.415 89.422 70.542-70.535-89.415-89.429 89.422-89.422z" />
|
||||
<glyph unicode="" d="M258.859 221.931l-131.527-131.527v-124.338l0.32-0.313 256.17 256.178-256.17 256.17-0.32-0.313v-124.33z" />
|
||||
<glyph unicode="" d="M423.858 404.174v27.485c0 27.058-17.067 43.214-45.668 43.214s-45.668-16.156-45.668-43.214v-27.477l-30.94-0.008v27.485c0 27.058-17.067 43.214-45.653 43.214-28.594 0-45.668-16.156-45.668-43.214v-27.477h-30.94v27.477c0 27.058-17.067 43.214-45.668 43.214-28.594 0-45.668-16.156-45.668-43.214v-27.477l-52.429-0.008v-440.164h440.164l-0.001 440.164h-51.861zM356.985 431.659c0 13.355 6.108 18.766 21.205 18.766s21.205-5.412 21.205-18.766v-73.5c0-13.348-6.108-18.766-21.205-18.766s-21.205 5.419-21.205 18.766v73.5zM234.709 431.659c0 13.355 6.116 18.766 21.212 18.766 15.090 0 21.212-5.412 21.212-18.766v-73.5c0-13.348-6.123-18.766-21.212-18.766-15.097 0-21.212 5.419-21.212 18.766v73.5zM112.441 431.659c0 13.355 6.116 18.766 21.212 18.766 15.090 0 21.205-5.412 21.205-18.766v-73.5c0-13.348-6.116-18.766-21.205-18.766-15.097 0-21.212 5.419-21.212 18.766v73.5zM439.040 0.69h-366.798v305.671h366.798v-305.671zM256.676 118.336c0 23.317-15.723 36.224-43.221 44.089l-0.001 0.562c24.704 8.42 38.165 21.902 38.165 42.958 0 21.34-21.056 38.18-57.266 38.18-17.124 0-35.1-2.24-50.254-9.273l4.203-30.876c11.52 5.618 23.872 9.259 36.516 9.259 19.648 0 24.981-6.734 24.981-16.832 0-14.613-14.044-21.077-37.902-22.741v-30.891c34.532-1.963 45.76-9.266 45.76-26.944 0-12.914-12.352-22.741-31.438-22.741-15.737 0-28.082 2.24-42.958 7.865l-4.21-30.891c12.068-4.779 28.068-7.858 43.243-7.858 41.82-0.008 74.382 19.37 74.382 56.134zM320.932 195.548v-130.545h37.624v176.305h-18.808l-53.917-26.659 4.21-30.884z" />
|
||||
<glyph unicode="" d="M31.104 8.156h450.105v276.985h-450.105v-276.985zM180.366 211.57h151.566v-64.917l-151.566-0.001v64.918zM401.579 437.483h-290.852l-110.791-62.315v-55.403h512.434v55.403z" />
|
||||
<glyph unicode="" d="M213.447 319.204c6.82 0 13.419 0.939 19.74 2.524l-27.712 22.692c-9.671 7.9-15.673 19.1-16.917 31.531-1.252 12.43 2.453 24.597 10.347 34.219 8.896 10.901 22.080 17.152 36.16 17.152 10.795 0 21.298-3.769 29.611-10.588l29.454-24.121c0.235 2.51 0.391 5.070 0.391 7.666 0 44.779-36.302 81.088-81.067 81.088-44.793 0-81.088-36.309-81.088-81.088-0.014-44.78 36.288-81.075 81.081-81.075zM397.461 354.574c-15.957 0-31.019-3.691-44.551-10.098-8.533-4.039-16.441-9.173-23.509-15.268l-81.643 66.866c-3.705 3.065-8.213 4.551-12.686 4.551-5.781 0-11.541-2.51-15.488-7.339-7.026-8.555-5.774-21.184 2.802-28.174l82.261-67.392c-4.281-8.348-7.531-17.308-9.436-26.788-1.017-5.028-1.55-10.226-1.806-15.488l49.372 27.342c8.903 4.928 18.951 7.545 29.106 7.545 21.852 0 42.012-11.883 52.594-31.012 16.043-28.985 5.497-65.614-23.474-81.65l-43.172-23.893c12.231-5.020 25.6-7.844 39.623-7.844 57.621 0 104.32 46.706 104.32 104.327s-46.706 104.315-104.313 104.315zM277.312 139.705l110.763 61.326c16.135 8.924 21.959 29.227 13.035 45.369-6.080 11.001-17.479 17.223-29.22 17.223-5.483 0-11.022-1.344-16.142-4.181l-109.81-60.8c-6.329 6.99-13.34 13.326-20.985 18.908-22.656 16.526-50.475 26.404-80.676 26.404-75.754 0-137.166-61.419-137.166-137.181 0-75.769 61.412-137.18 137.159-137.18 75.762 0 137.188 61.419 137.188 137.18 0 1.543-0.185 3.044-0.235 4.572-0.32 9.75-1.657 19.222-3.911 28.36z" />
|
||||
<glyph unicode="" d="M425.7 8.967c16.171 4.359 38.386-13.973 52.388-43.108l28.096 11.918c-11.086 29.888-9.067 58.276 4.764 67.314l-28.359 46.236-77.953-0.006 21.064-82.354zM462.201 42.347c6.471 2.752 13.938-0.277 16.683-6.727 2.752-6.478-0.277-13.959-6.748-16.711-6.457-2.731-13.938 0.292-16.683 6.748-2.745 6.478 0.277 13.945 6.748 16.69zM332.494 443.506c-8.142 19.179-30.265 28.11-49.429 19.975-19.164-8.128-28.103-30.265-19.968-49.422l59.129-139.349h81.913l-71.645 168.796zM512.078 119.104v127.822h-280.028l-5.291-16.142c5.092-14.585 5.305-30.478 0.377-45.554l-15.402-46.933c1.671-6.364 2.816-12.772 3.556-19.179l296.788-0.007zM458.816 227.406v-37.291h-21.305v37.291h21.305zM267.079 159.922h-21.305v67.484h21.305v-67.484zM330.994 190.116h-21.312v37.291h21.312v-37.291zM394.887 159.922h-21.291v67.484h21.291v-67.484zM74.652 190.116h-20.629v37.291h21.319v-36.807c1.586 1.131 3.164 2.219 4.715 3.243l1.351 4.124 10.375 31.652c2.041 6.215 4.907 12.004 8.427 17.301l-99.435-0.001v-127.822h18.987c9.401 30.99 33.699 55.815 54.89 71.019zM176.768 138.66l0.398 1.216c-15.9 21.845-36.117 28.956-55.758 30.727-5.248 0.42-10.432 0.363-15.388 0.007-14.372-7.836-68.466-45.248-54.656-93.717 19.563-68.622-28.686-75.25-38.372-80.142-4.864-2.46 14.841-28.942 52.117-24.363 5.703 0.697 11.812 2.126 18.325 4.48 48.52 17.571 121.281 82.531 93.334 161.792zM146.617 243.022c-10.567-3.804-19.378-12.274-23.132-23.765l-10.389-31.68c3.136 0.014 6.343-0.071 9.614-0.32 20.174-1.372 42.581-9.237 60.622-28.58l12.11 36.935c3.797 11.52 1.721 23.524-4.53 32.875l68.402 208.469c4.011 12.245-2.631 25.408-14.876 29.419-3.371 1.102-6.791 1.401-10.105 1.003-8.683-1.060-16.398-7.004-19.314-15.879l-68.402-208.477z" />
|
||||
<glyph unicode="" d="M192 337.593c0-44.183 35.817-80 80-80s80 35.817 80 80c0 44.183-35.817 80-80 80s-80-35.817-80-80zM0 337.593c0-44.183 35.817-80 80-80s80 35.817 80 80c0 44.183-35.817 80-80 80s-80-35.817-80-80zM384 177.593v48c0 17.6-14.4 32-32 32h-320c-17.6 0-32-14.4-32-32v-160c0-17.6 14.4-32 32-32h320c17.6 0 32 14.4 32 32v48l128-80v224l-128-80zM320 97.593h-256v96h256v-96z" />
|
||||
<glyph unicode="" d="M96-30.407h320l32 352h-384zM320 417.593v64h-128v-64h-160v-96l32 32h384l32-32v96h-160zM288 417.593h-64v32h64v-32z" />
|
||||
<glyph unicode="" d="M380.931-30.407c56.863 103.016 66.444 260.153-156.931 254.912v-126.912l-192 192 192 192v-124.186c267.481 6.971 297.285-236.107 156.931-387.814z" />
|
||||
<glyph unicode="" d="M123.86 125.804c13.063-10.613 32.271-8.631 42.898 4.433v0.051l31.079 38.261 49.466-66.992c6.576-8.887 17.503-13.546 28.526-12.076 10.986 1.427 20.312 8.748 24.364 19.098l47.016 119.962 68.184-160.6c4.791-11.323 15.835-18.564 28.065-18.564 0.563 0 1.119 0.015 1.704 0.029 12.866 0.754 23.83 9.443 27.494 21.76l64.915 218.39 28.613-58.784c7.336-15.141 25.578-21.431 40.726-14.073 15.133 7.351 21.453 25.607 14.080 40.718l-62.881 129.266c-5.522 11.33-17.371 18.051-29.893 17.042-12.566-1.039-23.128-9.596-26.734-21.694l-63.115-212.253-64.197 151.34c-4.857 11.432-16.048 18.761-28.511 18.571-12.398-0.176-23.406-7.79-27.934-19.369l-54.155-138.174-40.089 54.287c-5.64 7.592-14.366 12.112-23.823 12.361-9.479 0.212-18.395-3.906-24.357-11.271l-55.859-68.791c-10.627-13.1-8.623-32.307 4.418-42.928v0z" horiz-adv-x="746" />
|
||||
<glyph unicode="" d="M395.743-25.655c-0.545 0-1.096 0.014-1.615 0.040-14.67 0.794-22.416 6.544-28.068 10.752l-2.067 1.549-104.993 85.51-101.547-86.317c-5.711-4.412-13.528-10.444-28.541-11.271-0.479-0.033-1.083-0.053-1.7-0.053-11.861 0-24.602 6.847-30.982 16.654-6.144 8.894-7.004 17.598-7.103 23.342 0.046 7.305 1.412 12.832 2.744 17.322l40.547 132.89-103.844 68.431c-3.63 2.429-8.265 5.816-12.722 11.048-4.352 5.317-9.859 13.509-10.122 26.295-0.17 8.869 3.138 18.163 8.862 24.891 3.886 4.746 8.835 8.488 14.946 11.212 8.967 3.787 16.109 4.188 22.128 4.267l128.801 0.072 37.336 134.111c1.412 5.015 3.42 10.942 7.713 17.349 7.451 11.041 19.194 17.506 32.25 17.789l0.374 0.006 0.367-0.006c13.201-0.315 24.622-6.597 32.171-17.697 4.247-6.295 6.229-11.993 7.739-17.218l37.389-134.328 128.571-0.072c4.064-0.013 9.479-0.243 15.774-1.93 6.485-1.916 14.388-5.080 21.609-13.653 5.658-6.728 8.934-15.99 8.77-24.779-0.25-12.702-5.724-20.907-9.82-25.975-4.779-5.605-9.413-8.986-12.951-11.349l-102.623-67.715 45.246-132.726c1.634-4.969 3.249-10.884 3.308-18.4-0.079-6.157-0.958-14.953-7.627-24.293-6.19-9.138-18.747-15.748-30.32-15.748v0z" />
|
||||
<glyph unicode="" d="M395.743-25.655c-0.545 0-1.096 0.014-1.615 0.040-14.67 0.794-22.416 6.544-28.068 10.752l-2.067 1.549-104.993 85.51-101.547-86.317c-5.711-4.412-13.528-10.444-28.541-11.271-0.479-0.033-1.083-0.053-1.7-0.053-11.861 0-24.602 6.847-30.982 16.654-6.144 8.894-7.004 17.598-7.103 23.342 0.046 7.305 1.412 12.832 2.744 17.322l40.547 132.89-103.844 68.431c-3.63 2.429-8.265 5.816-12.722 11.048-4.352 5.317-9.859 13.509-10.122 26.295-0.17 8.869 3.138 18.163 8.862 24.891 3.886 4.746 8.835 8.488 14.946 11.212 8.967 3.787 16.109 4.188 22.128 4.267l128.801 0.072 37.336 134.111c1.412 5.015 3.42 10.942 7.713 17.349 7.451 11.041 19.194 17.506 32.25 17.789l0.374 0.006 0.367-0.006c13.201-0.315 24.622-6.597 32.171-17.697 4.247-6.295 6.229-11.993 7.739-17.218l37.389-134.328 128.571-0.072c4.064-0.013 9.479-0.243 15.774-1.93 6.485-1.916 14.388-5.080 21.609-13.653 5.658-6.728 8.934-15.99 8.77-24.779-0.25-12.702-5.724-20.907-9.82-25.975-4.779-5.605-9.413-8.986-12.951-11.349l-102.623-67.715 45.246-132.726c1.634-4.969 3.249-10.884 3.308-18.4-0.079-6.157-0.958-14.953-7.627-24.293-6.19-9.138-18.747-15.748-30.32-15.748v0zM384.414 12.378l1.227-0.906c4.037-3 5.422-4.030 10.056-4.3 1.018 0.125 2.921 1.064 3.453 1.727 1.457 2.048 1.687 3.341 1.713 5.586-0.020 2.173-0.44 4.326-1.608 7.89l-46.651 136.868c-0.748 2.101-1.182 4.601-1.228 7.26-0.315 8.474 4.398 19.43 12.315 24.195l105.925 69.888c2.665 1.779 4.325 3.184 5.848 4.963 1.464 1.818 2.199 3.131 2.245 5.651 0.020 0.775-0.558 2.396-1.057 3-1.614 1.923-2.954 2.475-5.409 3.203-1.706 0.447-3.826 0.683-6.931 0.696l-132.713 0.079c-5.337 0-11.638 2.343-16.443 6.124-4.667 3.446-8.56 8.921-9.938 14.172l-38.381 137.899c-0.906 3.144-1.733 5.382-3.341 7.772-1.962 2.888-4.129 3.223-5.395 3.282-1.195-0.053-3.407-0.394-5.357-3.289-1.621-2.415-2.429-4.634-3.341-7.87l-38.347-137.754c-1.372-5.258-5.278-10.752-10.339-14.5-4.411-3.479-10.706-5.829-16.036-5.829l-132.779-0.073c-3.951-0.052-6.308-0.295-9.294-1.549-1.129-0.512-2.002-1.148-2.83-2.153-0.643-0.774-1.247-2.363-1.234-3.19 0.053-2.527 0.782-3.82 2.501-5.921 1.28-1.496 2.934-2.895 5.691-4.739l106.378-70.098c8.146-4.923 13.102-16.502 12.761-25.173-0.046-2.423-0.401-4.72-1.064-6.821l-41.504-136.034c-0.827-2.809-1.339-5.022-1.359-7.706 0.039-2.048 0.262-3.368 1.549-5.232 0.761-0.978 2.816-2.008 3.84-2.094 4.601 0.269 5.973 1.326 10.056 4.484l1.182 0.905 104.060 88.616c4.103 3.61 10.122 5.75 16.22 5.75 6.066 0 12.032-2.087 16.076-5.586l109.483-89.193z" />
|
||||
<glyph unicode="" d="M253.426 475.779c-139.446 0-252.493-113.040-252.493-252.494s113.047-252.493 252.493-252.493 252.493 113.040 252.493 252.493c0 139.454-113.047 252.494-252.493 252.494v0zM253.426 33.916c-104.42 0-189.37 84.943-189.37 189.369 0 104.42 84.95 189.37 189.37 189.37s189.37-84.95 189.37-189.37c0-104.426-84.95-189.369-189.37-189.369v0zM375.934 166.699l-99.875 67.465v116.126c0 2.777-1.129 5.484-3.079 7.448-1.957 1.957-4.671 3.079-7.448 3.079h-27.62c-2.778 0-5.478-1.122-7.442-3.079-1.957-1.964-3.079-4.678-3.079-7.448v-137.132c0-2.778 1.122-5.485 3.079-7.449 0.793-0.792 1.711-1.452 2.714-1.95l116.372-77.95c1.753-1.157 3.78-1.774 5.835-1.774 0.744 0 1.494 0.084 2.23 0.238 2.785 0.589 5.191 2.287 6.713 4.713l14.644 23.426c2.995 4.79 1.648 11.117-3.044 14.287v0z" />
|
||||
<glyph unicode="" d="M378.599 202.16h-43.253c-23.082 0-28.609 13.354-12.288 29.668 16.314 16.314 30.082 30.082 30.58 30.573 0.498 0.519 0.498 1.325 0 1.837s-13.635 13.642-29.177 29.191c-15.543 15.536-28.672 28.672-29.177 29.177-0.498 0.491-1.326 0.491-1.838 0-0.498-0.505-14.266-14.272-30.58-30.586s-29.661-10.794-29.661 12.288v43.246c0 0.716-0.589 1.305-1.304 1.305h-82.53c-0.716 0-1.305-0.589-1.305-1.305v-43.246c0-23.082-13.347-28.602-29.661-12.288s-30.074 30.081-30.572 30.586c-0.512 0.491-1.333 0.491-1.845 0-0.491-0.505-13.635-13.641-29.177-29.177-15.542-15.549-28.672-28.686-29.177-29.191-0.498-0.505-0.498-1.318 0-1.837 0.505-0.491 14.266-14.259 30.587-30.573 16.314-16.314 10.787-29.668-12.295-29.668h-43.254c-0.722 0-1.304-0.589-1.304-1.304v-82.523c0-0.73 0.582-1.305 1.304-1.305h43.247c23.075 0 28.609-13.354 12.288-29.668l-30.573-30.573c-0.498-0.519-0.498-1.325 0-1.837 0.505-0.505 13.635-13.642 29.177-29.177 15.542-15.55 28.672-28.672 29.177-29.191 0.498-0.491 1.326-0.491 1.838 0 0.498 0.519 14.265 14.273 30.579 30.586 16.314 16.314 29.661 10.795 29.661-12.288v-43.246c0-0.729 0.589-1.305 1.305-1.305h82.53c0.715 0 1.304 0.576 1.304 1.305v43.246c0 23.083 13.348 28.602 29.661 12.302 16.314-16.327 30.089-30.081 30.594-30.586 0.498-0.505 1.319-0.505 1.824 0s13.634 13.627 29.184 29.177c15.549 15.535 28.679 28.672 29.177 29.177s0.498 1.318 0 1.837c-0.498 0.505-14.266 14.259-30.58 30.573-16.307 16.314-10.787 29.668 12.288 29.668h43.246c0.723 0 1.305 0.575 1.305 1.305v82.523c0 0.715-0.582 1.304-1.305 1.304v0zM193.48 97.355c-35.097 0-63.558 28.454-63.558 63.558 0 35.096 28.461 63.551 63.558 63.551 35.103 0 63.558-28.455 63.558-63.551-0.007-35.111-28.455-63.558-63.558-63.558v0zM505.681 401.995h-21.617c-11.523 0-14.286 6.656-6.13 14.819 8.15 8.15 15.031 15.017 15.276 15.276 0.246 0.246 0.246 0.66 0 0.919-0.245 0.246-6.81 6.81-14.574 14.561-7.764 7.778-14.329 14.329-14.575 14.588-0.252 0.246-0.673 0.246-0.918 0-0.26-0.245-7.133-7.126-15.283-15.276s-14.813-5.4-14.813 6.123c0 11.538 0 21.259 0.007 21.616-0.007 0.358-0.302 0.646-0.652 0.646h-41.227c-0.358 0-0.645-0.288-0.645-0.646v-21.616c0-11.523-6.67-14.287-14.82-6.137-8.157 8.164-15.031 15.031-15.283 15.29-0.26 0.246-0.673 0.246-0.919 0-0.252-0.245-6.817-6.81-14.581-14.574-7.757-7.765-14.322-14.329-14.568-14.575-0.252-0.245-0.252-0.673 0-0.919 0.253-0.259 7.126-7.126 15.283-15.276 8.143-8.149 5.387-14.819-6.144-14.819h-21.595c-0.365-0.014-0.652-0.302-0.659-0.66 0.007-0.357 0-9.63 0-20.613v-20.606c0-0.358 0.294-0.646 0.652-0.646s10.086-0.014 21.602-0.014c11.538 0.014 14.287-6.656 6.144-14.805-8.157-8.15-15.037-15.031-15.283-15.276-0.252-0.26-0.252-0.674 0-0.919 0.253-0.26 6.818-6.824 14.575-14.589 7.764-7.75 14.322-14.315 14.574-14.574 0.253-0.246 0.666-0.246 0.926 0 0.245 0.259 7.119 7.126 15.276 15.29 8.15 8.136 14.82 5.386 14.82-6.137 0-11.538 0.007-21.259 0-21.616 0-0.358 0.287-0.646 0.645-0.646h41.22c0.35 0 0.645 0.288 0.652 0.66 0.007 0.343 0 10.071 0 21.588 0 11.537 6.663 14.301 14.813 6.151s15.030-15.031 15.283-15.29c0.252-0.246 0.666-0.246 0.918 0 0.246 0.259 6.811 6.824 14.575 14.574l14.574 14.575c0.246 0.259 0.246 0.673 0 0.933-0.245 0.245-7.126 7.126-15.283 15.276-8.156 8.149-5.393 14.819 6.137 14.819h21.617c0.35 0 0.645 0.288 0.645 0.646v20.613c0 10.969 0 20.249 0.007 20.613-0.014 0.351-0.309 0.653-0.652 0.653v0zM435.691 357.738c-12.4-12.4-32.502-12.4-44.895 0s-12.4 32.509 0 44.902c12.4 12.393 32.502 12.4 44.895 0 12.407-12.393 12.4-32.509 0-44.902v0z" />
|
||||
<glyph unicode="" d="M653.814 398.002h-126.338c-0.097 0.183-0.126 0.377-0.222 0.56l-18.113 36.207c-4.666 9.313-17.003 16.935-27.426 16.935h-243.181c-10.424 0-22.76-7.622-27.426-16.935l-18.113-36.207c-0.097-0.183-0.145-0.377-0.232-0.56h-132.241c-10.404 0-18.934-8.54-18.934-18.954v-359.723c0-10.424 8.53-18.954 18.934-18.954h593.312c10.423 0 18.944 8.53 18.944 18.954v359.723c-0.010 10.424-8.55 18.954-18.964 18.954v0zM357.54 54.923c-82.152 0-148.77 66.599-148.77 148.78 0 82.132 66.618 148.731 148.77 148.731s148.77-66.599 148.77-148.731c0-82.181-66.618-148.78-148.77-148.78v0zM357.54 299.814c-53.006 0-96.13-43.115-96.13-96.111 0-53.017 43.124-96.15 96.13-96.15 53.016 0 96.15 43.133 96.15 96.15 0 52.996-43.134 96.111-96.15 96.111v0z" horiz-adv-x="705" />
|
||||
<glyph unicode="" d="M384.919 375.307c-15.318 13.67-38.821 12.345-52.491-2.987-13.669-15.318-12.33-38.814 2.995-52.484 31.688-28.349 51.509-69.148 51.523-114.94-0.148-85.063-68.973-153.888-154.028-154.028-85.055 0.14-153.888 68.965-154.028 154.028 0.014 46.002 20.017 86.948 51.958 115.312 15.374 13.606 16.79 37.116 3.177 52.469-13.621 15.367-37.11 16.798-52.47 3.17l-0.014 0.022c-47.139-41.711-77.031-103.018-77.017-170.98 0.021-126.156 102.246-228.38 228.394-228.395 126.141 0.022 228.373 102.239 228.387 228.395 0.007 67.668-29.605 128.736-76.386 170.418v0zM233.57 167.204c20.543 0 37.187 16.643 37.187 37.166v239.258c0 20.543-16.644 37.193-37.187 37.193s-37.186-16.65-37.186-37.193v-239.258c0-20.523 16.643-37.166 37.186-37.166v0z" horiz-adv-x="462" />
|
||||
<glyph unicode="" d="M333.404 258.090v84.011c0 77.013-62.442 139.456-139.456 139.456-0.96 0-1.649 0.056-2.595 0.028-0.775 0.014-1.764-0.043-2.553-0.043-77.028 0-139.442-62.442-139.442-139.456v-83.996h-49.358v-288.448h384.071v288.448h-50.667zM119.111 342.086c0 38.415 31.261 69.668 69.682 69.668 1.095 0 3.406 0.057 3.406 0.057s1.166-0.043 1.749-0.043c38.415 0 69.682-31.253 69.682-69.667v-84.011h-144.512v83.996h-0.007z" horiz-adv-x="391" />
|
||||
<glyph unicode="" d="M368.475 286.215h117.867v-23.766h-117.867zM183.8 116.042h302.542v-23.751h-302.542zM183.8 189.241h302.542v-23.742h-302.542zM368.475 359.423h117.867v-23.767h-117.867zM183.8 379.201h141.452v-142.476h-141.452zM544.529 451.748h-414.985c-14.517 0-18.457-3.947-18.457-18.597v-60.556h-58.169c-14.518 0-18.457-3.948-18.457-18.589v-307.109c0-21.892 25.55-50.267 49.887-50.267h460.172c14.534 0 18.457 3.947 18.457 18.597v417.924c0.008 14.65-3.906 18.597-18.448 18.597v0zM531.547 28.308h-447.183c-5.59 0-17.854 12.453-18.456 18.597v294.037h45.188v-284.259h31.43v284.259h0.008v79.153h389.013v-391.787z" horiz-adv-x="594" />
|
||||
<glyph unicode="" d="M511.911 98.528c-35.345 15.709-87.788 56.173-165.433 70.079 19.854 21.252 34.889 54.491 50.346 93.874 8.964 22.821 7.42 42.269 7.42 69.966 0 20.463 3.861 53.296-1.219 71.338-17.123 60.985-60.408 77.808-111.112 77.808-50.745 0-94.070-16.904-111.169-77.995-5.039-17.993-1.178-50.753-1.178-71.16 0-27.761-1.512-47.274 7.477-70.135 15.579-39.579 30.386-72.769 50.176-93.94-77.036-14.157-129.081-54.329-164.198-69.982-72.663-32.402-73.021-67.884-73.021-67.884v-60.262l585.2 0.073v60.189c0 0.016-0.342 35.612-73.289 68.031v0z" horiz-adv-x="593" />
|
||||
<glyph unicode="" d="M256 481.593c-141.385 0-256-114.615-256-256s114.615-256 256-256 256 114.615 256 256-114.615 256-256 256zM160 225.593c0 53.020 42.98 96 96 96s96-42.98 96-96-42.98-96-96-96-96 42.98-96 96zM462.99 139.855v0l-88.71 36.745c6.259 15.092 9.72 31.638 9.72 48.993s-3.461 33.901-9.72 48.993l88.71 36.745c10.954-26.411 17.010-55.365 17.010-85.738s-6.057-59.327-17.010-85.738v0zM341.739 432.583v0 0l-36.745-88.71c-15.092 6.259-31.638 9.72-48.994 9.72s-33.901-3.461-48.993-9.72l-36.745 88.711c26.411 10.952 55.366 17.009 85.738 17.009 30.373 0 59.327-6.057 85.739-17.010zM49.010 311.331l88.711-36.745c-6.259-15.092-9.721-31.638-9.721-48.993s3.461-33.901 9.72-48.993l-88.71-36.745c-10.953 26.411-17.010 55.365-17.010 85.738s6.057 59.327 17.010 85.738zM170.262 18.603l36.745 88.71c15.092-6.259 31.638-9.72 48.993-9.72s33.901 3.461 48.993 9.72l36.745-88.71c-26.411-10.952-55.365-17.010-85.738-17.010s-59.327 6.057-85.738 17.010z" />
|
||||
<glyph unicode="" d="M256 481.593c-141.383 0-256-114.61-256-256s114.617-256 256-256c141.383 0 256 114.61 256 256s-114.617 256-256 256v0zM419.527 293.021l-179.726-180.139c-5.177-5.191-15.403-9.437-22.727-9.437h-15.524c-7.324 0-17.55 4.26-22.72 9.437l-84.636 85.027c-5.17 5.192-5.163 13.682 0.021 18.859l33.309 33.309c5.184 5.191 13.66 5.191 18.851 0.014l54.073-53.959c5.191-5.184 13.668-5.177 18.844 0.014l148.203 148.551c5.177 5.184 13.661 5.212 18.859 0.050l33.13-32.903c5.192-5.17 5.213-13.625 0.043-18.823v0z" />
|
||||
<glyph unicode="" d="M252.493 476.15c-139.446 0-252.493-113.046-252.493-252.493 0-139.453 113.047-252.493 252.493-252.493 139.447 0 252.493 113.040 252.493 252.493 0 139.447-113.046 252.493-252.493 252.493v0zM252.493 34.287c-104.42 0-189.37 84.943-189.37 189.37 0 104.42 84.95 189.37 189.37 189.37s189.37-84.95 189.37-189.37c0-104.427-84.95-189.37-189.37-189.37v0zM257.171 99.746c69.724 0 126.247 56.523 126.247 126.247s-56.523 126.246-126.247 126.246c-69.724 0-126.246-56.522-126.246-126.246s56.522-126.247 126.246-126.247z" horiz-adv-x="504" />
|
||||
<glyph unicode="" d="M322.361 291.975v168.285h-132.757v-168.285h-168.271v-132.743h168.271v-168.27h132.757v168.27l168.263-0.007v132.75h-168.263z" />
|
||||
<glyph unicode="" d="M132.144 188.874c-6.859 6.868-6.839 18.132 0.029 24.991l44.139 44.148c6.868 6.869 18.113 6.869 24.991 0.010l71.68-71.526c6.868-6.858 18.113-6.849 24.972 0.020l196.453 196.917c6.859 6.878 18.104 6.907 25.002 0.058l43.916-43.607c6.887-6.849 6.916-18.065 0.058-24.943l-238.225-238.795c-6.869-6.878-20.422-12.501-30.141-12.501h-20.576c-9.719 0-23.263 5.642-30.121 12.511l-112.177 112.717z" horiz-adv-x="695" />
|
||||
<glyph unicode="" d="M480 91.225l-134.496 134.368 134.496 134.368-89.632 89.632-134.368-134.432-134.432 134.432-89.568-89.632 134.368-134.368-134.368-134.368 89.568-89.632 134.432 134.432 134.368-134.432z" />
|
||||
<glyph unicode="" d="M562.904 189.737c-0.168 0.28-0.344 0.552-0.496 0.84-5.512 10.136-12.344 19.304-20.28 27.248l-108.44 108.424c-0.44 0.456-0.856 0.832-1.232 1.168-13.816 13.4-30.608 23.224-48.872 28.648 21.048-22.032 34.984-49.552 40.392-79.832 1.608-9.080 2.44-18.36 2.44-27.592 0-3.68-0.16-7.56-0.488-11.84l67.576-67.592c5.872-5.872 10.232-13.28 12.576-21.416 1.36-4.672 2.032-9.528 2.032-14.456 0-5.456-0.832-10.832-2.472-15.992-2.488-7.776-6.56-14.536-12.144-20.112l-44.064-44.064c-9.44-9.44-22.216-14.64-35.984-14.64s-26.544 5.2-35.984 14.64l-108.416 108.416c-3.904 3.904-7.144 8.512-9.608 13.72-3.264 6.84-4.984 14.544-4.984 22.248 0 5.2 0.768 10.344 2.264 15.28 0.144 0.44 0.296 0.872 0.472 1.312l0.264 0.72c0.64 1.816 1.232 3.28 1.856 4.624 0.36 0.784 0.752 1.544 1.16 2.312 0.736 1.392 1.56 2.768 2.528 4.232l0.408 0.608c0.296 0.44 0.576 0.888 0.888 1.312 1.608 2.184 3.16 4.016 4.752 5.592l16.8 16.8c-0.184 2-0.64 3.784-1.376 5.296-0.704 1.488-1.56 2.752-2.576 3.768l-42.12 42.12-19.344-19.36c-1.872-1.872-3.752-3.888-5.736-6.184-0.296-0.328-0.576-0.688-0.856-1.032l-0.624-0.768c-1.328-1.576-2.592-3.168-3.816-4.8-0.424-0.544-0.816-1.112-1.216-1.656l-0.232-0.328c-1.2-1.688-2.36-3.392-3.472-5.128l-0.296-0.456c-0.264-0.408-0.528-0.832-0.8-1.232-1.296-2.128-2.544-4.28-3.672-6.392l-0.168-0.312-0.16-0.296c-3.936-7.488-7.096-15.456-9.376-23.72-0.816-2.936-1.456-5.656-1.984-8.28-1.608-8.016-2.424-16.112-2.424-24.16 0-7.080 0.64-14.184 1.856-21.096 4.312-24.216 15.72-46.144 32.952-63.392l108.432-108.416c46.656-46.656 122.56-46.656 169.216 0l44.064 44.064c15.080 15.088 25.84 34.152 31.128 55.152 2.496 9.984 3.784 19.896 3.784 29.464 0 18.904-4.544 37.792-13.128 54.608-0.096 0.192-0.2 0.4-0.28 0.608-0.080 0.16-0.144 0.32-0.232 0.48-0.144 0.304-0.312 0.56-0.488 0.84v0zM358 334.521l-108.416 108.432c-46.656 46.64-122.56 46.64-169.216-0.016l-44.064-44.064c-15.096-15.080-25.84-34.16-31.128-55.144-2.496-9.984-3.784-19.888-3.784-29.472 0-18.904 4.544-37.784 13.128-54.608 0.112-0.184 0.2-0.408 0.28-0.608 0.080-0.16 0.144-0.328 0.232-0.488 0.144-0.264 0.296-0.528 0.472-0.816s0.344-0.56 0.496-0.856c5.528-10.144 12.36-19.296 20.296-27.232l108.424-108.424c0.456-0.472 0.856-0.84 1.248-1.168 13.816-13.392 30.592-23.216 48.856-28.64-21.032 22.032-34.968 49.544-40.36 79.832-1.624 9.048-2.456 18.344-2.456 27.592 0 3.656 0.16 7.528 0.488 11.84l-67.576 67.592c-5.872 5.872-10.232 13.28-12.576 21.424-1.36 4.672-2.048 9.512-2.048 14.44 0 5.456 0.84 10.84 2.488 16 2.488 7.784 6.56 14.544 12.144 20.112l44.064 44.064c19.512 19.512 52.472 19.512 71.968 0l108.416-108.416c3.904-3.904 7.144-8.512 9.608-13.72 3.248-6.84 4.984-14.528 4.984-22.248 0-5.2-0.768-10.344-2.264-15.28-0.144-0.456-0.296-0.888-0.472-1.344l-0.264-0.688c-0.64-1.816-1.232-3.28-1.856-4.624-0.36-0.784-0.768-1.544-1.168-2.312-0.736-1.408-1.576-2.832-2.512-4.232l-0.376-0.56c-0.296-0.472-0.592-0.92-0.92-1.36-1.608-2.184-3.16-4.016-4.736-5.592l-16.816-16.8c0.184-2 0.64-3.784 1.376-5.312 0.704-1.488 1.56-2.752 2.576-3.752l42.12-42.12 19.344 19.36c1.84 1.84 3.72 3.872 5.752 6.184 0.296 0.344 0.592 0.704 0.872 1.064l0.592 0.72c1.328 1.592 2.592 3.184 3.816 4.824 0.496 0.648 0.968 1.304 1.44 1.976 1.232 1.688 2.376 3.392 3.504 5.128l0.36 0.568 0.704 1.128c1.312 2.112 2.544 4.256 3.688 6.392l0.16 0.288 0.168 0.32c3.936 7.464 7.096 15.44 9.392 23.712 0.784 2.848 1.424 5.576 1.968 8.296 1.608 8 2.424 16.096 2.424 24.144 0 7.096-0.64 14.192-1.856 21.104-4.344 24.192-15.736 46.112-32.984 63.36v0z" horiz-adv-x="584" />
|
||||
<glyph unicode="" d="M653.622 397.952h-126.301c-0.097 0.183-0.126 0.376-0.222 0.559l-18.108 36.197c-4.664 9.31-16.998 16.93-27.418 16.93h-243.109c-10.421 0-22.754-7.62-27.418-16.93l-18.108-36.197c-0.097-0.183-0.145-0.376-0.232-0.559h-132.202c-10.401 0-18.928-8.538-18.928-18.949v-359.617c0-10.421 8.527-18.948 18.928-18.948h593.138c10.42 0 18.938 8.527 18.938 18.948v359.617c-0.010 10.421-8.547 18.949-18.958 18.949v0zM357.435 54.974c-82.128 0-148.726 66.579-148.726 148.736 0 82.108 66.598 148.687 148.726 148.687s148.726-66.579 148.726-148.687c0-82.157-66.598-148.736-148.726-148.736v0zM357.435 299.792c-52.991 0-96.102-43.102-96.102-96.082 0-53.002 43.111-96.122 96.102-96.122 53 0 96.121 43.12 96.121 96.122 0 52.98-43.121 96.082-96.121 96.082v0z" horiz-adv-x="705" />
|
||||
<glyph unicode="" d="M160 161.593v96h96l-128 128-128-128h96v-160h192l-64 64zM416 193.593v160h-192l64-64h64v-96h-96l128-128 128 128z" />
|
||||
<glyph unicode="" d="M400 417.593c-5.312 0-10.562-0.375-15.792-1.125-29.874 40.708-77.020 65.125-128.208 65.125s-98.312-24.417-128.208-65.125c-5.23 0.75-10.48 1.125-15.792 1.125-61.75 0-112-50.25-112-112s50.25-112 112-112c13.688 0 27.084 2.5 39.709 7.333 28.957-25.25 65.791-39.333 104.291-39.333 38.542 0 75.333 14.083 104.291 39.333 12.625-4.833 26.021-7.333 39.709-7.333 61.75 0 112 50.25 112 112s-50.25 112-112 112zM400 225.593c-17.125 0-32.916 5.5-45.938 14.667-23.478-28.292-58.438-46.667-98.062-46.667s-74.584 18.375-98.062 46.667c-13-9.167-28.813-14.667-45.938-14.667-44.188 0-80 35.812-80 80s35.812 80 80 80c10.812 0 21.062-2.208 30.438-6.083 21.229 41.416 63.853 70.083 113.562 70.083s92.334-28.667 113.541-70.083c9.397 3.875 19.668 6.083 30.459 6.083 44.188 0 80-35.812 80-80s-35.812-80-80-80zM225 1.593c0-17.688 14.312-32 32-32s32 14.312 32 32-32 64-32 64-32-46.312-32-64zM352 33.593c0-17.688 14.312-32 32-32s32 14.312 32 32-32 64-32 64-32-46.312-32-64zM96 97.593c0-17.688 14.312-32 32-32s32 14.312 32 32-32 64-32 64-32-46.312-32-64z" />
|
||||
<glyph unicode="" d="M256 337.593c-61.75 0-112-50.25-112-112s50.25-112 112-112 112 50.25 112 112c0 61.75-50.25 112-112 112zM256 145.593c-44.188 0-80 35.812-80 80s35.812 80 80 80 80-35.812 80-80-35.812-80-80-80zM256 369.593c8.833 0 16 7.167 16 16v32c0 8.833-7.167 16-16 16s-16-7.167-16-16v-32c0-8.833 7.167-16 16-16zM256 81.593c-8.833 0-16-7.167-16-16v-32c0-8.833 7.167-16 16-16s16 7.167 16 16v32c0 8.833-7.167 16-16 16zM380.438 327.426l22.625 22.625c6.25 6.25 6.25 16.375 0 22.625s-16.375 6.25-22.625 0l-22.625-22.625c-6.25-6.25-6.25-16.375 0-22.625s16.375-6.25 22.625 0zM131.562 123.759l-22.625-22.625c-6.25-6.249-6.25-16.374 0-22.624s16.375-6.25 22.625 0l22.625 22.624c6.25 6.271 6.25 16.376 0 22.625-6.249 6.251-16.375 6.272-22.625 0zM112 225.593c0 8.833-7.167 16-16 16h-32c-8.833 0-16-7.167-16-16s7.167-16 16-16h32c8.833 0 16 7.167 16 16zM448 241.593h-32c-8.833 0-16-7.167-16-16s7.167-16 16-16h32c8.833 0 16 7.167 16 16s-7.167 16-16 16zM131.541 327.426c6.251-6.25 16.376-6.25 22.625 0 6.251 6.25 6.251 16.375 0 22.625l-22.625 22.625c-6.25 6.25-16.374 6.25-22.625 0-6.25-6.25-6.25-16.375 0-22.625l22.625-22.625zM380.459 123.781c-6.271 6.25-16.376 6.25-22.625 0-6.251-6.25-6.271-16.375 0-22.625l22.625-22.625c6.249-6.25 16.374-6.25 22.624 0s6.25 16.374 0 22.625l-22.624 22.625z" />
|
||||
<glyph unicode="" d="M208 417.593c8.833 0 16 7.167 16 16v32c0 8.833-7.167 16-16 16s-16-7.167-16-16v-32c0-8.833 7.167-16 16-16zM332.438 375.426l22.625 22.625c6.249 6.25 6.249 16.375 0 22.625s-16.375 6.25-22.625 0l-22.625-22.625c-6.25-6.25-6.25-16.375 0-22.625s16.375-6.25 22.625 0zM16 257.593h32c8.833 0 16 7.167 16 16s-7.167 16-16 16h-32c-8.833 0-16-7.167-16-16s7.167-16 16-16zM352 273.593c0-8.833 7.167-16 16-16h32c8.833 0 16 7.167 16 16s-7.167 16-16 16h-32c-8.833 0-16-7.167-16-16zM83.541 375.426c6.251-6.25 16.376-6.25 22.625 0 6.251 6.25 6.251 16.375 0 22.625l-22.625 22.625c-6.25 6.25-16.374 6.25-22.625 0-6.25-6.25-6.25-16.375 0-22.625l22.625-22.625zM400 225.593c-5.312 0-10.562-0.375-15.792-1.125-16.771 22.875-39.124 40.333-64.458 51.5-1.291 60.625-50.812 109.625-111.75 109.625-61.75 0-112-50.25-112-112 0-17.438 4.334-33.75 11.5-48.438-59.625-2.437-107.5-51.374-107.5-111.562 0-61.75 50.25-112 112-112 13.688 0 27.084 2.5 39.709 7.333 28.957-25.25 65.791-39.333 104.291-39.333 38.542 0 75.333 14.083 104.291 39.333 12.625-4.833 26.021-7.333 39.709-7.333 61.75 0 112 50.25 112 112s-50.25 112-112 112zM208 353.593c39.812 0 72.562-29.167 78.708-67.25-10.021 2-20.249 3.25-30.708 3.25-45.938 0-88.5-19.812-118.375-53.25-5.937 11.167-9.625 23.708-9.625 37.25 0 44.188 35.812 80 80 80zM400 33.593c-17.125 0-32.916 5.5-45.938 14.667-23.478-28.292-58.438-46.667-98.062-46.667s-74.584 18.375-98.062 46.667c-13-9.167-28.813-14.667-45.938-14.667-44.188 0-80 35.812-80 80s35.812 80 80 80c7.75 0 15.062-1.458 22.125-3.541 2.812-0.792 5.667-1.417 8.312-2.521 4.375 8.562 9.875 16.396 15.979 23.75 23.376 28.124 58.146 46.312 97.584 46.312 10.125 0 19.834-1.458 29.25-3.709 10.562-2.499 20.542-6.291 29.834-11.291 23.291-12.375 42.416-31.542 54.457-55.063 9.397 3.875 19.668 6.063 30.459 6.063 44.188 0 80-35.812 80-80s-35.812-80-80-80z" />
|
||||
<glyph unicode="" d="M326.042 37.905l-18 10.376c0.542 3.124 0.958 6.311 0.958 9.624 0 3.312-0.416 6.5-1 9.625l18.042 10.396c8.417 4.917 11.291 15.729 6.458 24.104-4.876 8.479-15.667 11.375-24.125 6.5l-18.188-10.5c-4.876 4.146-10.375 7.396-16.5 9.604v20.896c0 9.771-7.938 17.688-17.688 17.688s-17.666-7.917-17.666-17.688v-20.875c-6.126-2.188-11.646-5.479-16.521-9.625l-18.146 10.5c-8.479 4.875-19.292 2-24.167-6.479-4.875-8.417-1.938-19.25 6.5-24.126l17.959-10.375c-0.584-3.146-0.959-6.334-0.959-9.646s0.375-6.5 0.959-9.624l-17.958-10.375c-8.459-4.875-11.375-15.75-6.5-24.188s15.688-11.312 24.125-6.438l18.167 10.438c4.874-4.125 10.396-7.375 16.542-9.562v-20.938c0-9.749 7.916-17.624 17.666-17.624s17.688 7.875 17.688 17.624v20.938c6.125 2.188 11.688 5.438 16.521 9.625l18.167-10.5c8.458-4.875 19.249-2 24.125 6.438 4.874 8.437 1.999 19.25-6.459 24.187zM256 40.218c-9.75 0-17.688 7.938-17.688 17.688s7.938 17.646 17.688 17.646 17.667-7.896 17.667-17.646-7.917-17.688-17.667-17.688zM474.166 85.343l-12.083 3.208c-0.291 3.833-1.208 7.479-2.896 10.979l8.771 8.771c4.125 4.125 4.104 10.792 0 14.854-4.083 4.104-10.708 4.125-14.833 0l-8.791-8.75c-3.459 1.625-7.146 2.562-10.959 2.875l-3.209 12.062c-1.499 5.583-7.25 8.938-12.874 7.438-5.604-1.521-8.875-7.271-7.417-12.875l3.209-11.896c-1.584-1.084-3.084-2.292-4.5-3.667-1.375-1.417-2.542-2.916-3.626-4.459l-11.896 3.209c-5.604 1.499-11.396-1.876-12.896-7.438-1.499-5.625 1.876-11.354 7.417-12.875l12-3.229c0.334-3.771 1.292-7.458 2.979-10.959l-8.812-8.812c-4.083-4.104-4.062-10.729 0.042-14.812 4.083-4.083 10.708-4.125 14.792-0.042l8.832 8.833c3.459-1.707 7.168-2.666 11.001-2.957l3.166-12.021c1.542-5.604 7.25-8.938 12.876-7.438 5.583 1.5 8.957 7.249 7.458 12.917l-3.209 11.896c1.5 1.062 3.042 2.25 4.459 3.625 1.375 1.396 2.542 2.938 3.624 4.479l11.917-3.209c5.604-1.5 11.375 1.854 12.854 7.417 1.5 5.585-1.812 11.334-7.396 12.876zM438.312 78.655c-4.125-4.125-10.771-4.104-14.875 0-4.062 4.062-4.104 10.729 0 14.854 4.104 4.083 10.771 4.083 14.875 0 4.063-4.104 4.063-10.791 0-14.854zM118.938 139.093l-11.875-3.188c-1.104 1.5-2.25 3.021-3.646 4.438-1.416 1.375-2.916 2.562-4.479 3.625l3.188 11.938c1.5 5.604-1.834 11.375-7.375 12.854-5.625 1.5-11.375-1.834-12.875-7.417l-3.25-12.062c-3.812-0.312-7.458-1.25-10.938-2.896l-8.812 8.771c-4.125 4.125-10.75 4.104-14.834 0-4.104-4.104-4.104-10.75 0-14.854l8.771-8.771c-1.646-3.5-2.604-7.188-2.896-10.979l-12.042-3.208c-5.625-1.542-8.959-7.25-7.458-12.875 1.521-5.583 7.271-8.875 12.896-7.417l11.875 3.23c1.062-1.604 2.25-3.105 3.688-4.501 1.375-1.375 2.875-2.604 4.438-3.625l-3.188-11.896c-1.5-5.625 1.834-11.417 7.416-12.917 5.626-1.5 11.334 1.833 12.834 7.438l3.25 12c3.812 0.312 7.5 1.271 11 2.938l8.791-8.792c4.084-4.124 10.709-4.041 14.834 0.042 4.062 4.062 4.125 10.708 0 14.812l-8.812 8.812c1.688 3.46 2.688 7.188 2.938 11.001l12.062 3.188c5.562 1.521 8.896 7.25 7.396 12.875-1.501 5.56-7.251 8.894-12.897 7.436zM88.562 110.635c-4.104-4.104-10.75-4.104-14.875 0-4.062 4.083-4.062 10.771 0 14.833 4.125 4.083 10.771 4.083 14.875 0s4.063-10.75 0-14.833zM512 305.593c0 61.75-50.25 112-112 112-5.312 0-10.562-0.375-15.792-1.125-29.874 40.708-77.020 65.125-128.208 65.125s-98.312-24.417-128.208-65.125c-5.23 0.75-10.48 1.125-15.792 1.125-61.75 0-112-50.25-112-112s50.25-112 112-112c13.688 0 27.084 2.5 39.709 7.333 28.957-25.25 65.791-39.333 104.291-39.333 38.542 0 75.333 14.083 104.291 39.333 12.625-4.833 26.021-7.333 39.709-7.333 61.75 0 112 50.25 112 112zM354.062 240.26c-23.478-28.292-58.438-46.667-98.062-46.667s-74.584 18.375-98.062 46.667c-13-9.167-28.813-14.667-45.938-14.667-44.188 0-80 35.812-80 80s35.812 80 80 80c10.812 0 21.062-2.208 30.438-6.083 21.229 41.416 63.853 70.083 113.562 70.083s92.334-28.667 113.541-70.083c9.397 3.875 19.668 6.083 30.459 6.083 44.188 0 80-35.812 80-80s-35.812-80-80-80c-17.125 0-32.916 5.5-45.938 14.667z" />
|
||||
<glyph unicode="" d="M512 241.592c0 49.167-40 89.146-89.167 89.146-2.396 0-4.771-0.104-7.146-0.291-23.125 28.854-57.979 45.978-95.688 45.978-37.688 0-72.562-17.124-95.688-45.979-2.375 0.188-4.771 0.291-7.188 0.291-49.123 0.001-89.123-39.978-89.123-89.145 0-5.146 0.688-10.104 1.5-15.042-0.542-0.708-1.188-1.354-1.708-2.083-5.229 0.75-10.479 1.125-15.792 1.125-61.75 0-112-50.249-112-111.999s50.25-112 112-112c13.688 0 27.084 2.5 39.709 7.333 28.957-25.25 65.791-39.333 104.291-39.333 38.542 0 75.333 14.083 104.291 39.333 12.625-4.833 26.021-7.333 39.709-7.333 61.75 0 112 50.249 112 112 0 25.688-9.042 49.083-23.666 67.999 14.582 15.896 23.666 36.833 23.666 60zM400 33.593c-17.125 0-32.916 5.499-45.938 14.666-23.479-28.291-58.438-46.666-98.062-46.666s-74.584 18.375-98.062 46.666c-13-9.167-28.812-14.666-45.938-14.666-44.188 0-80 35.812-80 80s35.812 79.999 80 79.999c10.812 0 21.062-2.188 30.438-6.062 0.562 1.062 1.25 2 1.812 3.021 5.625 10.271 12.562 19.688 20.666 28.042 23.084 23.916 55.167 39 91.084 39 49.709 0 92.334-28.666 113.541-70.062 5.646 2.312 11.668 3.813 17.875 4.812l12.584 1.25c12.334 0 23.875-3.042 34.312-8 11.312-5.416 21.021-13.374 28.646-23.188 10.5-13.521 17.042-30.354 17.042-48.812 0-44.188-35.812-80-80-80zM465.562 203.968c-18.479 13.458-41 21.624-65.562 21.624-5.312 0-10.562-0.375-15.792-1.125-29.874 40.708-77.021 65.125-128.208 65.125-34.125 0-66.312-11.042-92.938-30.334 7.479 22.854 28.729 39.479 54.062 39.479 7.75 0 15.062-1.562 21.75-4.332 15.188 29.562 45.625 50.020 81.125 50.020s65.958-20.457 81.084-50.020c6.729 2.77 14.083 4.332 21.749 4.332 31.584 0 57.167-25.583 57.167-57.146 0.001-14.478-5.561-27.54-14.437-37.623z" />
|
||||
<glyph unicode="" d="M206.933 148.615l58.596 164.622 0.064 0.036h-0.057l0.057 0.185-154.759-0.128c0.739 2.524 37.682 103.587 56.59 168.263h-86.82l-80.54-227.065-0.064-0.035h0.050l-0.050-0.185 154.759 0.121c-0.526-1.785-19.392-53.071-36.956-105.821h-72.491l67.42-179.499 171.080 179.499-76.879 0.007z" horiz-adv-x="284" />
|
||||
<glyph unicode="" d="M253.141 229.255l131.527 131.527v124.338l-0.32 0.313-256.17-256.178 256.17-256.17 0.32 0.313v124.33z" />
|
||||
<glyph unicode="" d="M743.538 230.236v0c-0.062-49.405-16.655-89.42-66.414-89.42-49.755 0-66.355 40.016-66.407 89.42v0.245c0.052 49.404 16.652 89.416 66.41 89.416 49.755 0 66.348-40.012 66.41-89.416v-0.245zM677.124 369.593c-87.786 0-133.124-62.281-133.124-139.112s44.221-139.115 133.124-139.115c88.904 0 133.128 62.284 133.128 139.115s-45.345 139.112-133.128 139.112v0zM288 89.17v384.616c0 0 50.565 7.206 54.486 7.736 4.442 0.602 10.338-2.57 10.338-8.842v-142.582c10.497 10.008 22.048 18.075 34.642 24.226 12.603 6.14 27.386 9.216 44.362 9.216 14.7 0 27.724-2.501 39.096-7.511 11.383-4.995 20.876-12.022 28.486-21.058 7.611-9.046 13.383-19.84 17.324-32.391 3.934-12.551 5.904-26.371 5.904-41.472v-171.938h-64.827v171.938c0 16.498-3.803 29.271-11.417 38.317-7.614 9.036-19.031 13.558-34.258 13.558-11.197 0-21.69-2.542-31.483-7.642-9.807-5.089-19.079-12.018-27.827-20.798v-195.373h-64.824zM1162.845 78.954c-44.607 0-72.565 26.050-72.565 74.642v144.007h-50.28c0 0 10.686 37.078 11.531 40.001 0.849 2.917 3.059 6.047 7.496 6.667s31.186 4.363 31.186 4.363l12.355 78.858c0 0 36.3 5.134 42.055 5.995 5.435 0.817 10.362-3.113 10.362-9.050v-75.803h63.59v-51.031h-63.59v-142.070c0-19.397 11.773-26.811 23.055-26.811 6.897 0 16.341 3.678 23.389 6.954 4.355 2.021 11.103 0.522 12.845-5.577 1.545-5.404 9.742-34.086 9.742-34.086-7.072-4.58-29.428-17.058-61.172-17.058zM996.193 309.323c-12.635 4.117-36.38 10.707-58.969 10.707-23.017 0-41.128-7.978-41.128-27.178 0-23.981 39.031-30.966 65.749-40.739 17.862-6.535 65.766-19.276 65.766-70.961 0-62.786-51.972-89.627-107.41-89.627-55.445 0-88.2 20.691-88.2 20.691s8.6 30.474 10.341 36.494c1.576 5.414 7.851 7.313 11.845 5.774 14.265-5.518 40.034-13.191 69.155-13.191 29.486 0 43.755 9.033 43.755 28.288 0 25.627-39.817 33.46-66.152 41.793-18.138 5.736-66.155 19.113-66.155 75.952 0 55.995 49.010 82.266 101.389 82.266 44.338 0 66.086-9.303 82.331-17.605 0 0-9.052-31.65-10.396-36.366-1.593-5.597-6.176-8.168-11.92-6.299zM134.203 225.292c-29.176 0-51.934 15.547-51.934 49.457 0 33.916 22.783 49.464 51.934 49.464 29.159 0 51.941-15.505 51.941-49.464 0-33.954-22.755-49.457-51.941-49.457v0zM99.566 94.639c0 0 32.342-1.228 64.658-2.729 36.307-1.685 47.62-9.534 47.62-28.395 0-23.043-31.552-45.457-75.645-45.457-41.855 0-62.762 14.61-62.762 38.933 0 13.956 7.345 29.568 26.127 37.649v0zM269.286 360.073c0 6.058-5.159 9.52-10.079 8.957-21.755-2.501-37.276-12.773-47.317-22.331-19.717 15.499-47.086 22.894-77.807 22.894-61.586 0-109.704-29.817-109.704-94.844 0-37.324 15.834-63.045 40.986-78.187-18.68-8.873-31.12-27.693-31.12-46.197 0-30.955 24.376-40.649 24.376-40.649s-42.62-20.753-42.62-62.274c0-53.151 48.755-74.642 108.331-74.642 85.873 0 144.955 35.584 144.955 100.923 0 40.213-30.669 62.412-97.514 65.052-39.666 1.57-65.359 3.003-71.721 5.116-8.41 2.802-12.545 9.558-12.545 17.017 0 8.233 6.742 16.076 17.365 21.455 9.269-1.643 19.052-2.459 29.21-2.459 61.638 0 109.71 29.734 109.71 94.844 0 15.793-2.841 29.499-8.007 41.206 9.055 4.846 20.196 8.257 33.5 8.257v35.861z" horiz-adv-x="1232" />
|
||||
</font></defs></svg>
|
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 53 KiB |
BIN
ghost/admin/docs/dist/fonts/icons.ttf
vendored
BIN
ghost/admin/docs/dist/fonts/icons.ttf
vendored
Binary file not shown.
BIN
ghost/admin/docs/dist/fonts/icons.woff
vendored
BIN
ghost/admin/docs/dist/fonts/icons.woff
vendored
Binary file not shown.
418
ghost/admin/docs/index-old.html
Normal file
418
ghost/admin/docs/index-old.html
Normal file
@ -0,0 +1,418 @@
|
||||
<!doctype html>
|
||||
<!--[if (IE 8)&!(IEMobile)]><html class="no-js lt-ie9" lang="en"><![endif]-->
|
||||
<!--[if (gte IE 9)| IEMobile |!(IE)]><!--><html class="no-js" lang="en"><!--<![endif]-->
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
|
||||
<title>Ghost Admin</title>
|
||||
|
||||
<meta name="HandheldFriendly" content="True">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1, minimal-ui">
|
||||
|
||||
<meta http-equiv="cleartype" content="on">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<meta name="apple-mobile-web-app-title" content="Ghost">
|
||||
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
|
||||
<meta name="application-name" content="Ghost">
|
||||
<meta name="msapplication-TileColor" content="#ffffff">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans:400,300,700">
|
||||
<link rel="stylesheet" href="../dist/css/ghost-ui.css" />
|
||||
</head>
|
||||
<body class="ember-application settings" data-ember-extension="1">
|
||||
|
||||
<div id="ember411" class="ember-view">
|
||||
<header id="global-header" class="navbar">
|
||||
<a class="ghost-logo" href="/" title="/" data-bindattr-1="1" data-off-canvas="left">
|
||||
<span class="hidden">Ghost</span>
|
||||
</a>
|
||||
<nav id="global-nav" role="navigation">
|
||||
<ul id="main-menu">
|
||||
<li id="ember475" class="ember-view content"><a id="ember479" class="ember-view" href="/ghost/ember/">Content</a></li>
|
||||
<li id="ember496" class="ember-view editor"><a id="ember497" class="ember-view" href="/ghost/ember/editor/">New Post</a></li>
|
||||
<li id="ember515" class="ember-view settings active"><a id="ember516" class="ember-view active" href="/ghost/ember/settings/">Settings</a></li>
|
||||
|
||||
<li id="usermenu" class="usermenu subnav">
|
||||
<a id="ember535" class="ember-view dropdown">
|
||||
<img class="avatar" src="/content/images/2014/Jun/me-bike-1.jpg" data-bindattr-2="2" alt="Avatar">
|
||||
<span class="name">Paul Davis</span>
|
||||
</a>
|
||||
<ul id="ember546" class="ember-view ghost-popover fade-in overlay">
|
||||
<li class="usermenu-profile"><a id="ember548" class="ember-view" href="/ghost/ember/settings/user/">Your Profile</a></li>
|
||||
<li class="divider"></li>
|
||||
<li class="usermenu-help"><a href="http://support.ghost.org/">Help / Support</a></li>
|
||||
<li class="divider"></li>
|
||||
<li class="usermenu-signout"><a id="ember556" class="ember-view" href="/ghost/ember/signout/">Sign Out</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<div class="burger-menu">
|
||||
<div class="navigation">
|
||||
|
||||
<a class="nav-item logo internal active" data-item="search" href="/">
|
||||
<div class="label">Clarity</div>
|
||||
</a>
|
||||
|
||||
<div class="desktop-center">
|
||||
|
||||
<div class="nav-item categories menu-holder no-tablet no-mobile active" data-item="search" href="/" data-element="categories-dropdown" data-header-dropdown="categories">
|
||||
<div class="label"><em>Categories<span class="menu-arrow"></span></em></div>
|
||||
|
||||
<div class="menu-wrapper">
|
||||
<div class="menu">
|
||||
<div class="categories-dropdown">
|
||||
<div class="inner">
|
||||
|
||||
<div class="categories">
|
||||
<div class="category-item" data-hover="show-subcategory" data-category-id="141" data-href="/browse/business" data-tappable="true">
|
||||
<span class="category-label">Business</span>
|
||||
</div>
|
||||
|
||||
<div class="category-item" data-hover="show-subcategory" data-category-id="84" data-href="/browse/sales-marketing" data-tappable="true">
|
||||
<span class="category-label">Sales & Marketing</span>
|
||||
</div>
|
||||
|
||||
<div class="category-item" data-hover="show-subcategory" data-category-id="80" data-href="/browse/funding" data-tappable="true">
|
||||
<span class="category-label">Funding</span>
|
||||
</div>
|
||||
|
||||
<div class="category-item" data-hover="show-subcategory" data-category-id="87" data-href="/browse/product-design" data-tappable="true">
|
||||
<span class="category-label">Product & Design</span>
|
||||
</div>
|
||||
<div class="category-item" data-hover="show-subcategory" data-category-id="94" data-href="/browse/technology" data-tappable="true">
|
||||
<span class="category-label">Technology</span>
|
||||
</div>
|
||||
<div class="category-item" data-hover="show-subcategory" data-category-id="93" data-href="/browse/skills-management" data-tappable="true">
|
||||
<span class="category-label">Skills & Management</span>
|
||||
</div>
|
||||
<div class="category-item" data-hover="show-subcategory" data-category-id="132" data-href="/browse/industries" data-tappable="true">
|
||||
<span class="category-label">Industries</span>
|
||||
</div>
|
||||
<div class="category-item" data-hover="show-subcategory" data-category-id="150" data-href="/browse/other" data-tappable="true">
|
||||
<span class="category-label">Other</span>
|
||||
</div>
|
||||
</div><!--.categories-->
|
||||
|
||||
<div class="side-menu">
|
||||
<div class="subcategories" data-category-id="141">
|
||||
<div class="subcategory-item root-category" data-href="/browse/business">Business</div>
|
||||
<div class="subcategory-item" data-href="/browse/business/career-advice">Career Advice</div>
|
||||
<div class="subcategory-item" data-href="/browse/business/branding">Branding</div>
|
||||
<div class="subcategory-item" data-href="/browse/business/financial-consulting">Financial Consulting</div>
|
||||
<div class="subcategory-item" data-href="/browse/business/customer-engagement">Customer Engagement</div>
|
||||
<div class="subcategory-item" data-href="/browse/business/strategy">Strategy</div>
|
||||
<div class="subcategory-item" data-href="/browse/business/sectors">Sectors</div>
|
||||
<div class="subcategory-item" data-href="/browse/business/getting-started">Getting Started</div>
|
||||
<div class="subcategory-item" data-href="/browse/business/human-resources">Human Resources</div>
|
||||
<div class="subcategory-item" data-href="/browse/business/business-development">Business Development</div>
|
||||
<div class="subcategory-item" data-href="/browse/business/legal">Legal</div>
|
||||
<div class="subcategory-item" data-href="/browse/business/other">Other</div>
|
||||
</div>
|
||||
<div class="subcategories" data-category-id="84">
|
||||
<div class="subcategory-item root-category" data-href="/browse/sales-marketing">Sales & Marketing</div>
|
||||
<div class="subcategory-item" data-href="/browse/sales-marketing/social-media-marketing">Social Media Marketing</div>
|
||||
<div class="subcategory-item" data-href="/browse/sales-marketing/search-engine-optimization">Search Engine Optimization</div>
|
||||
<div class="subcategory-item" data-href="/browse/sales-marketing/public-relations">Public Relations</div>
|
||||
<div class="subcategory-item" data-href="/browse/marketing-advertising/branding">Branding</div>
|
||||
<div class="subcategory-item" data-href="/browse/marketing-advertising/publishing">Publishing</div>
|
||||
<div class="subcategory-item" data-href="/browse/sales-marketing/inbound-marketing">Inbound Marketing</div>
|
||||
<div class="subcategory-item" data-href="/browse/sales-marketing/email-marketing">Email Marketing</div>
|
||||
<div class="subcategory-item" data-href="/browse/marketing-advertising/copywriting">Copywriting</div>
|
||||
<div class="subcategory-item" data-href="/browse/sales-marketing/growth-strategy">Growth Strategy</div>
|
||||
<div class="subcategory-item" data-href="/browse/sales-marketing/search-engine-marketing">Search Engine Marketing</div>
|
||||
<div class="subcategory-item" data-href="/browse/sales-marketing/sales-lead-generation">Sales & Lead Generation</div>
|
||||
<div class="subcategory-item" data-href="/browse/sales-marketing/advertising">Advertising</div>
|
||||
<div class="subcategory-item" data-href="/browse/sales-marketing/other">Other</div>
|
||||
</div>
|
||||
<div class="subcategories" data-category-id="80">
|
||||
<div class="subcategory-item root-category" data-href="/browse/funding">Funding</div>
|
||||
<div class="subcategory-item" data-href="/browse/raising-capital/crowdfunding">Crowdfunding</div>
|
||||
<div class="subcategory-item" data-href="/browse/raising-capital/kickstarter">Kickstarter</div>
|
||||
<div class="subcategory-item" data-href="/browse/raising-capital/venture-capital">Venture Capital</div>
|
||||
<div class="subcategory-item" data-href="/browse/funding/finance">Finance</div>
|
||||
<div class="subcategory-item" data-href="/browse/funding/bootstrapping">Bootstrapping</div>
|
||||
<div class="subcategory-item" data-href="/browse/funding/nonprofit">Nonprofit</div>
|
||||
<div class="subcategory-item" data-href="/browse/funding/other">Other</div>
|
||||
</div>
|
||||
<div class="subcategories" data-category-id="87">
|
||||
<div class="subcategory-item root-category" data-href="/browse/product-design">Product & Design</div>
|
||||
<div class="subcategory-item" data-href="/browse/product-design/identity">Identity</div>
|
||||
<div class="subcategory-item" data-href="/browse/product-design/user-experience">User Experience</div>
|
||||
<div class="subcategory-item" data-href="/browse/product-design/lean-startup">Lean Startup</div>
|
||||
<div class="subcategory-item" data-href="/browse/product-design/product-management">Product Management</div>
|
||||
<div class="subcategory-item" data-href="/browse/product-design/metrics-analytics">Metrics & Analytics</div>
|
||||
<div class="subcategory-item" data-href="/browse/product-design/other">Other</div>
|
||||
</div>
|
||||
<div class="subcategories" data-category-id="94">
|
||||
<div class="subcategory-item root-category" data-href="/browse/technology">Technology</div>
|
||||
<div class="subcategory-item" data-href="/browse/technology/wordpress">Wordpress</div>
|
||||
<div class="subcategory-item" data-href="/browse/technology/software-development">Software Development</div>
|
||||
<div class="subcategory-item" data-href="/browse/technology/mobile">Mobile</div>
|
||||
<div class="subcategory-item" data-href="/browse/technology/ruby">Ruby</div>
|
||||
<div class="subcategory-item" data-href="/browse/technology/crm">CRM</div>
|
||||
<div class="subcategory-item" data-href="/browse/technology/innovation">Innovation</div>
|
||||
<div class="subcategory-item" data-href="/browse/technology/cloud">Cloud</div>
|
||||
<div class="subcategory-item" data-href="/browse/technology/other">Other</div>
|
||||
</div>
|
||||
<div class="subcategories" data-category-id="93">
|
||||
<div class="subcategory-item root-category" data-href="/browse/skills-management">Skills & Management</div>
|
||||
<div class="subcategory-item" data-href="/browse/skills-management/productivity">Productivity</div>
|
||||
<div class="subcategory-item" data-href="/browse/skills-management/entrepreneurship">Entrepreneurship</div>
|
||||
<div class="subcategory-item" data-href="/browse/skills-management/public-speaking">Public Speaking</div>
|
||||
<div class="subcategory-item" data-href="/browse/skills-management/leadership">Leadership</div>
|
||||
<div class="subcategory-item" data-href="/browse/skills-management/coaching">Coaching</div>
|
||||
<div class="subcategory-item" data-href="/browse/skills-management/other">Other</div>
|
||||
</div>
|
||||
<div class="subcategories" data-category-id="132">
|
||||
<div class="subcategory-item root-category" data-href="/browse/industries">Industries</div>
|
||||
<div class="subcategory-item" data-href="/browse/industries/saas">SaaS</div>
|
||||
<div class="subcategory-item" data-href="/browse/industries/e-commerce">E-commerce</div>
|
||||
<div class="subcategory-item" data-href="/browse/industries/education">Education</div>
|
||||
<div class="subcategory-item" data-href="/browse/industries/real-estate">Real Estate</div>
|
||||
<div class="subcategory-item" data-href="/browse/industries/restaurant-retail">Restaurant & Retail</div>
|
||||
<div class="subcategory-item" data-href="/browse/industries/marketplaces">Marketplaces</div>
|
||||
<div class="subcategory-item" data-href="/browse/industries/nonprofit">Nonprofit</div>
|
||||
<div class="subcategory-item" data-href="/browse/industries/other">Other</div>
|
||||
</div>
|
||||
</div><!--.side-menu-->
|
||||
|
||||
</div><!--.inner-->
|
||||
</div><!--.categories-dropdown-->
|
||||
</div><!--.menu-->
|
||||
</div><!--.menu-wrapper-->
|
||||
</div><!--.menu-holder-->
|
||||
|
||||
<div class="search-box no-tablet no-mobile">
|
||||
<form action="#" onsubmit="return false;">
|
||||
<div class="input-wrapper">
|
||||
<input placeholder="Search" type="text" name="search_query" class="search_query noglow" value="">
|
||||
</div>
|
||||
<div class="button-wrapper">
|
||||
<i class="clear-search"></i>
|
||||
<button type="submit" class="btn-clear submit-search">
|
||||
<span>Search</span>
|
||||
<i class="search-glass"></i>
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div class="sections">
|
||||
<a href="/" class="nav-item search internal active" data-item="search">
|
||||
<div class="label"><em>Browse</em></div>
|
||||
</a>
|
||||
<a class="nav-item internal" data-item="questions" href="/questions">
|
||||
<div class="label"><em>Answers</em></div>
|
||||
</a>
|
||||
<a class="nav-item live internal" data-item="live" href="/live/upcoming">
|
||||
<div class="label">
|
||||
<em>Live</em>
|
||||
<sup>NEW</sup>
|
||||
</div>
|
||||
</a>
|
||||
<a class="nav-item calls internal" data-item="calls" href="/calls">
|
||||
<div class="label">
|
||||
<em>Calls</em>
|
||||
<div class="unread-badge-wrapper">
|
||||
<div class="unread-badge" data-badge="incoming-calls"></div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
<a class="nav-item inbox internal" data-item="inbox" href="/inbox">
|
||||
<div class="label">
|
||||
<em>Inbox</em>
|
||||
<div class="unread-badge-wrapper">
|
||||
<div class="unread-badge" data-badge="unread-messages"></div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div><!--.sections-->
|
||||
|
||||
</div><!--.desktop-center-->
|
||||
|
||||
<div class="nav-item user-item menu-holder internal" data-item="settings" data-href="/account" data-header-dropdown="me-menu">
|
||||
<div class="label">
|
||||
<div class="image"><img src="https://s3.amazonaws.com/clarityfm-production/users/pictures/8389/list_square/75e958a6674a7d68fe0d575fb235116c.jpg?1354967814" alt="John O'Nolan"></div>
|
||||
<div class="name">
|
||||
John O'Nolan
|
||||
<small>Profile & Settings</small>
|
||||
</div>
|
||||
<div class="me">
|
||||
<em>
|
||||
Me<span class="count hidden" data-burger-menu-badge=""></span><span class="menu-arrow"></span>
|
||||
</em>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="menu-wrapper">
|
||||
<div class="menu">
|
||||
<a class="nav-item internal" data-item="settings" href="/account">
|
||||
<div class="label">Account</div>
|
||||
</a>
|
||||
<a class="nav-item internal" data-item="calls" href="/calls">
|
||||
<div class="label">
|
||||
<em>Calls</em>
|
||||
<div class="unread-badge-wrapper">
|
||||
<div class="unread-badge" data-badge="incoming-calls"></div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
<a class="nav-item internal" data-item="inbox" href="/inbox">
|
||||
<div class="label">
|
||||
<em>Inbox</em>
|
||||
<div class="unread-badge-wrapper">
|
||||
<div class="unread-badge" data-badge="unread-messages"></div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
<a class="nav-item internal" data-item="favorites" href="/favorites">
|
||||
<div class="label">Favorites</div>
|
||||
</a>
|
||||
<a class="nav-item internal separator" data-item="settings" href="/settings/profile">
|
||||
<div class="label">Edit Profile</div>
|
||||
</a>
|
||||
<a class="nav-item internal" data-item="settings" href="/settings/account">
|
||||
<div class="label">Settings</div>
|
||||
</a>
|
||||
<a class="nav-item external separator" target="_blank" href="http://help.clarity.fm">
|
||||
<div class="label">Support</div>
|
||||
</a>
|
||||
<div class="nav-item internal logout separator" data-action="logout">
|
||||
<div class="label">Logout</div>
|
||||
</div>
|
||||
</div><!--menu-->
|
||||
</div><!--menu-wrapper-->
|
||||
</div><!--menu-holder-->
|
||||
|
||||
<a class="nav-item favorites-item internal" data-item="favorites" href="/favorites">
|
||||
<div class="label"><em>Favorites</em></div>
|
||||
</a>
|
||||
|
||||
<div class="toll-free-number authed">1-866-499-0341</div>
|
||||
|
||||
</div><!--navigation-->
|
||||
</div><!--burger-menu-->
|
||||
|
||||
|
||||
<main role="main" id="main">
|
||||
<aside id="ember573" class="ember-view notifications">
|
||||
</aside>
|
||||
|
||||
<div id="ember428" class="ember-view wrapper">
|
||||
<aside class="settings-sidebar" role="complementary">
|
||||
<header>
|
||||
<h1 class="title">Settings</h1>
|
||||
</header>
|
||||
<nav class="settings-menu">
|
||||
<ul>
|
||||
<li id="ember595" class="ember-view about active">
|
||||
<a id="ember596" class="ember-view active" href="/ghost/ember/settings/about/">About Ghost</a>
|
||||
</li>
|
||||
|
||||
<li id="ember597" class="ember-view general">
|
||||
<a id="ember598" class="ember-view" href="/ghost/ember/settings/general/">General</a>
|
||||
</li>
|
||||
|
||||
<li id="ember607" class="ember-view users">
|
||||
<a id="ember608" class="ember-view" href="/ghost/ember/settings/user/">User</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</aside>
|
||||
|
||||
<section class="settings-content active">
|
||||
<header class="fade-in">
|
||||
<button class="button-back">Back</button>
|
||||
<h2 class="title">About</h2>
|
||||
</header>
|
||||
|
||||
<section class="content settings-about fade-in">
|
||||
|
||||
<section class="about-ghost-intro">
|
||||
<h1>
|
||||
<span class="ghost_logo">
|
||||
<span class="hidden">Ghost</span>
|
||||
</span>
|
||||
<!-- Get the version number from the currently running install -->
|
||||
<span class="version blue">v0.4.2</span>
|
||||
</h1>
|
||||
<p>A free, open, simple publishing platform</p>
|
||||
|
||||
<div class="about-environment-help clearfix">
|
||||
<div class="about-environment">
|
||||
<p>
|
||||
<!-- Get the latest version number (and then compare) -->
|
||||
<b>Version:</b> 0.4.2 (That latest version!)<br>
|
||||
<!-- Get details like environment, database & mail -->
|
||||
<b>Environment:</b> Production<br>
|
||||
<b>Database:</b> SQLite3 <br>
|
||||
<b>Mail:</b> Native
|
||||
</p>
|
||||
</div>
|
||||
<div class="about-help">
|
||||
<a href="http://docs.ghost.org" class="button-dark">User Documentation</a>
|
||||
<a href="https://ghost.org/forum/" class="button-dark">Get Help With Ghost</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="about-credits">
|
||||
<h1>The People Who Made it Possible</h1>
|
||||
|
||||
<!--
|
||||
List the top 20 contributors from the release currently installed & running,
|
||||
looking at both the Ghost & Ghost-UI repos
|
||||
|
||||
This should be able to be hard-coded into each release
|
||||
-->
|
||||
<ul class="top-contributors clearfix">
|
||||
<li><a href="https://github.com/ErisDS"><img src="https://avatars.githubusercontent.com/u/101513?" title="ErisDS" alt="ErisDS"></a></li>
|
||||
<li><a href="https://github.com/JohnONolan"><img src="https://avatars.githubusercontent.com/u/120485?" title="JohnONolan" alt="JohnONolan"></a></li>
|
||||
<li><a href="https://github.com/matthojo"><img src="https://avatars.githubusercontent.com/u/367517?" title="matthojo" alt="matthojo"></a></li>
|
||||
<li><a href="https://github.com/jgable"><img src="https://avatars.githubusercontent.com/u/164497?" title="jgable" alt="jgable"></a></li>
|
||||
<li><a href="https://github.com/sebgie"><img src="https://avatars.githubusercontent.com/u/539213?" title="sebgie" alt="sebgie"></a></li>
|
||||
<li><a href="https://github.com/halfdan"><img src="https://avatars.githubusercontent.com/u/176576?" title="halfdan" alt="halfdan"></a></li>
|
||||
<li><a href="https://github.com/javorszky"><img src="https://avatars.githubusercontent.com/u/1196299?" title="javorszky" alt="javorszky"></a></li>
|
||||
<li><a href="https://github.com/jaswilli"><img src="https://avatars.githubusercontent.com/u/214142?" title="jaswilli" alt="jaswilli"></a></li>
|
||||
<li><a href="https://github.com/hswolff"><img src="https://avatars.githubusercontent.com/u/322576?" title="hswolff" alt="hswolff"></a></li>
|
||||
<li><a href="https://github.com/cobbspur"><img src="https://avatars.githubusercontent.com/u/4405395?" title="cobbspur" alt="cobbspur"></a></li>
|
||||
<li><a href="https://github.com/tgriesser"><img src="https://avatars.githubusercontent.com/u/154748?" title="tgriesser" alt="tgriesser"></a></li>
|
||||
<li><a href="https://github.com/gotdibbs"><img src="https://avatars.githubusercontent.com/u/1540648?" title="gotdibbs" alt="gotdibbs"></a></li>
|
||||
<li><a href="https://github.com/novaugust"><img src="https://avatars.githubusercontent.com/u/1207005?" title="novaugust" alt="novaugust"></a></li>
|
||||
<li><a href="https://github.com/darvelo"><img src="https://avatars.githubusercontent.com/u/523169?" title="darvelo" alt="darvelo"></a></li>
|
||||
<li><a href="https://github.com/ricardobeat"><img src="https://avatars.githubusercontent.com/u/97396?" title="ricardobeat" alt="ricardobeat"></a></li>
|
||||
<li><a href="https://github.com/jamesbloomer"><img src="https://avatars.githubusercontent.com/u/1221713?" title="jamesbloomer" alt="jamesbloomer"></a></li>
|
||||
<li><a href="https://github.com/cgiffard"><img src="https://avatars.githubusercontent.com/u/453993?" title="cgiffard" alt="cgiffard"></a></li>
|
||||
<li><a href="https://github.com/jgillich"><img src="https://avatars.githubusercontent.com/u/347965?" title="jgillich" alt="jgillich"></a></li>
|
||||
<li><a href="https://github.com/shindakun"><img src="https://avatars.githubusercontent.com/u/319128?" title="shindakun" alt="shindakun"></a></li>
|
||||
<li><a href="https://github.com/PaulAdamDavis"><img src="https://avatars.githubusercontent.com/u/390392?" title="PaulAdamDavis" alt="PaulAdamDavis"></a></li>
|
||||
</ul>
|
||||
|
||||
<p class="about-contributors-info">Ghost is built by an incredible group of contributors from all over the world. Here are just a few of the people who helped create the version you’re using right now.</p>
|
||||
|
||||
<a href="https://github.com/TryGhost/Ghost/blob/master/CONTRIBUTING.md" class="about-get-involved button-save large">Find out how you can get involved</a>
|
||||
|
||||
<p class="about-copyright">
|
||||
Copyright 2013 - 2014 Ghost Foundation, released under the <a href="https://github.com/TryGhost/Ghost/blob/master/LICENSE">MIT license</a>.<br>
|
||||
<a href="https://ghost.org/">Ghost</a> is a trademark of the <a href="https://ghost.org/about/">Ghost Foundation</a>.
|
||||
</p>
|
||||
</section>
|
||||
|
||||
</section>
|
||||
|
||||
</section>
|
||||
|
||||
</main>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
6
ghost/admin/docs/index.html
Normal file
6
ghost/admin/docs/index.html
Normal file
@ -0,0 +1,6 @@
|
||||
---
|
||||
layout: default
|
||||
title: Ghost UI · Making publishing beautiful.
|
||||
---
|
||||
|
||||
test
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
layout: default
|
||||
title: Ghost UI
|
||||
---
|
||||
|
||||
# Ghost-UI
|
Loading…
Reference in New Issue
Block a user