Added Social Authentication + fixed Agent Cron

This commit is contained in:
NGPixel
2016-10-30 18:41:10 -04:00
parent fa7391ea4b
commit dc6fc449f0
23 changed files with 428 additions and 111 deletions

View File

@@ -205,6 +205,7 @@ .CodeMirror {
border-left: none;
border-right: none;
padding-top: 52px;
font-family: $family-monospace;
}
.CodeMirror .CodeMirror-code .cm-url {

View File

@@ -36,6 +36,13 @@ .section.is-small {
.mkcontent {
h1 {
border-bottom: 1px dotted $blue;
padding-bottom: 4px;
font-weight: 400;
color: desaturate($blue, 20%);
}
h2 {
border-bottom: 1px dotted $grey-light;
padding-bottom: 4px;
font-weight: 400;
@@ -44,7 +51,7 @@ .mkcontent {
a.toc-anchor {
font-size: 80%;
color: $purple;
color: $blue;
border-bottom: none;
&:visited {
@@ -74,6 +81,7 @@ .mkcontent {
pre {
padding: 0;
font-family: $family-monospace;
> code {
box-shadow: inset 0 0 5px 0 $grey-light;
@@ -94,6 +102,7 @@ .mkcontent {
float: right;
margin-top: -50px;
max-width: 200px;
background-color: #FFF;
}
strong {
@@ -104,6 +113,23 @@ .mkcontent {
font-size: 120%;
}
table thead th {
background-color: $blue;
color: #FFF;
border-color: #FFF;
border-bottom-color: $blue;
border-top-color: $blue;
&:first-child {
border-left-color: $blue;
}
&:last-child {
border-right-color: $blue;
}
}
}
.content a:not(.button):visited {

View File

@@ -20,7 +20,7 @@ $yellow: #fce473 !default
// Typography
$family-monospace: monospace;
$family-monospace: Consolas, "Liberation Mono", Menlo, Courier, monospace;
$family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
$size-1: 48px !default

View File

@@ -125,6 +125,59 @@ #root {
}
#social {
margin-top: 25px;
> span {
display: block;
font-weight: bold;
color: rgba(255,255,255,0.7);
}
button {
margin-right: 5px;
width: auto;
padding: 0 15px;
> i {
margin-right: 10px;
font-size: 16px;
}
&.ms {
background-color: #009688;
border-color: lighten(#009688, 10%);
&:hover {
background-color: darken(#009688, 10%);
}
}
&.google {
background-color: #2196F3;
border-color: lighten(#2196F3, 10%);
&:hover {
background-color: darken(#2196F3, 10%);
}
}
&.facebook {
background-color: #673AB7;
border-color: lighten(#673AB7, 10%);
&:hover {
background-color: darken(#673AB7, 10%);
}
}
}
}
}
#copyright {