Added Social Authentication + fixed Agent Cron
This commit is contained in:
@@ -205,6 +205,7 @@ .CodeMirror {
|
||||
border-left: none;
|
||||
border-right: none;
|
||||
padding-top: 52px;
|
||||
font-family: $family-monospace;
|
||||
}
|
||||
|
||||
.CodeMirror .CodeMirror-code .cm-url {
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user