2017-01-23 10:01:46 -05:00
|
|
|
@import 'variables';
|
2017-01-26 09:06:40 -05:00
|
|
|
@import 'fonts/roboto';
|
|
|
|
@import 'fonts/roboto-mono';
|
|
|
|
@import 'fonts/montserrat';
|
2017-01-23 10:01:46 -05:00
|
|
|
@import 'font-awesome';
|
2016-02-27 18:02:59 -05:00
|
|
|
|
2016-03-05 16:43:05 -05:00
|
|
|
/* http://meyerweb.com/eric/tools/css/reset/
|
|
|
|
v2.0 | 20110126
|
|
|
|
License: none (public domain)
|
|
|
|
*/
|
|
|
|
|
|
|
|
html, body, div, span, applet, object, iframe,
|
|
|
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
|
|
|
a, abbr, acronym, address, big, cite, code,
|
|
|
|
del, dfn, em, img, ins, kbd, q, s, samp,
|
|
|
|
small, strike, strong, sub, sup, tt, var,
|
|
|
|
b, u, i, center,
|
|
|
|
dl, dt, dd, ol, ul, li,
|
|
|
|
fieldset, form, label, legend,
|
|
|
|
table, caption, tbody, tfoot, thead, tr, th, td,
|
|
|
|
article, aside, canvas, details, embed,
|
|
|
|
figure, figcaption, footer, header, hgroup,
|
|
|
|
menu, nav, output, ruby, section, summary,
|
|
|
|
time, mark, audio, video {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
font-size: 100%;
|
|
|
|
font: inherit;
|
|
|
|
vertical-align: baseline;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* HTML5 display-role reset for older browsers */
|
|
|
|
article, aside, details, figcaption, figure,
|
|
|
|
footer, header, hgroup, menu, nav, section {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
line-height: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ol, ul {
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
blockquote, q {
|
|
|
|
quotes: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
blockquote:before, blockquote:after,
|
|
|
|
q:before, q:after {
|
|
|
|
content: '';
|
|
|
|
content: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
|
|
|
border-collapse: collapse;
|
|
|
|
border-spacing: 0;
|
|
|
|
}
|
|
|
|
|
2016-10-06 15:39:30 -04:00
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 8px;
|
|
|
|
height: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
2017-01-23 10:01:46 -05:00
|
|
|
background: lighten($color1, 4%);
|
|
|
|
border: 0px none $color5;
|
2016-10-06 15:39:30 -04:00
|
|
|
border-radius: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
2017-01-23 10:01:46 -05:00
|
|
|
background: lighten($color1, 6%);
|
2016-10-06 15:39:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb:active {
|
2017-01-23 10:01:46 -05:00
|
|
|
background: lighten($color1, 4%);
|
2016-10-06 15:39:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track {
|
2017-01-23 10:01:46 -05:00
|
|
|
border: 0px none $color5;
|
2016-10-12 13:14:47 -04:00
|
|
|
border-radius: 0;
|
2017-01-23 11:18:41 -05:00
|
|
|
background: rgba($color8, 0.1);
|
2016-10-06 15:39:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track:hover {
|
2017-01-23 10:01:46 -05:00
|
|
|
background: $color1;
|
2016-10-06 15:39:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track:active {
|
2017-01-23 10:01:46 -05:00
|
|
|
background: $color1;
|
2016-10-06 15:39:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-corner {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
2016-02-27 18:02:59 -05:00
|
|
|
body {
|
2017-01-05 07:59:58 -05:00
|
|
|
font-family: 'Roboto', sans-serif;
|
2017-01-23 10:01:46 -05:00
|
|
|
background: $color1 image-url('background-photo.jpeg');
|
2016-03-05 16:43:05 -05:00
|
|
|
background-size: cover;
|
2016-03-06 11:52:23 -05:00
|
|
|
background-attachment: fixed;
|
2016-02-27 18:02:59 -05:00
|
|
|
font-size: 13px;
|
|
|
|
line-height: 18px;
|
2016-03-05 16:43:05 -05:00
|
|
|
font-weight: 400;
|
2017-01-23 10:01:46 -05:00
|
|
|
color: $color5;
|
2016-03-05 17:42:40 -05:00
|
|
|
padding-bottom: 140px;
|
2016-08-24 11:56:44 -04:00
|
|
|
text-rendering: optimizelegibility;
|
|
|
|
font-feature-settings: "kern";
|
2016-12-20 18:56:13 -05:00
|
|
|
text-size-adjust: none;
|
2016-08-24 11:56:44 -04:00
|
|
|
|
|
|
|
&.app-body {
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
padding: 0;
|
2017-01-27 21:56:10 -05:00
|
|
|
background: $color1;
|
2016-08-24 11:56:44 -04:00
|
|
|
}
|
2016-10-03 10:10:17 -04:00
|
|
|
|
2016-12-18 09:20:39 -05:00
|
|
|
&.embed {
|
|
|
|
background: transparent;
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
.container {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-27 21:56:10 -05:00
|
|
|
&.admin {
|
|
|
|
background: darken($color1, 4%);
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2016-10-03 10:10:17 -04:00
|
|
|
@media screen and (max-width: 360px) {
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
2016-08-24 11:56:44 -04:00
|
|
|
}
|
|
|
|
|
2017-01-27 14:38:35 -05:00
|
|
|
button:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2016-08-24 11:56:44 -04:00
|
|
|
.app-holder {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2016-02-27 18:02:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
2016-02-29 13:42:08 -05:00
|
|
|
width: 700px;
|
2016-02-27 18:02:59 -05:00
|
|
|
margin: 0 auto;
|
2016-02-28 08:02:53 -05:00
|
|
|
margin-top: 40px;
|
2016-10-02 18:26:00 -04:00
|
|
|
|
|
|
|
@media screen and (max-width: 700px) {
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2016-02-27 18:02:59 -05:00
|
|
|
}
|
|
|
|
|
2016-03-05 16:43:05 -05:00
|
|
|
.logo-container {
|
2016-10-03 10:10:17 -04:00
|
|
|
max-width: 400px;
|
2016-03-05 16:43:05 -05:00
|
|
|
margin: 100px auto;
|
2016-10-03 10:38:22 -04:00
|
|
|
margin-bottom: 0;
|
2016-03-05 16:43:05 -05:00
|
|
|
cursor: default;
|
|
|
|
|
2016-10-03 10:10:17 -04:00
|
|
|
@media screen and (max-width: 360px) {
|
|
|
|
margin: 30px auto;
|
|
|
|
}
|
|
|
|
|
2016-03-05 16:43:05 -05:00
|
|
|
h1 {
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
2017-01-23 10:01:46 -05:00
|
|
|
color: $color5;
|
2016-03-05 16:43:05 -05:00
|
|
|
font-size: 48px;
|
|
|
|
font-weight: 500;
|
|
|
|
|
2016-09-26 17:55:21 -04:00
|
|
|
img {
|
|
|
|
display: block;
|
|
|
|
margin: 20px auto;
|
|
|
|
width: 180px;
|
|
|
|
height: 180px;
|
|
|
|
}
|
|
|
|
|
2016-03-10 19:26:59 -05:00
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
outline: 0;
|
2016-09-26 17:55:21 -04:00
|
|
|
|
|
|
|
img {
|
|
|
|
opacity: 0.8;
|
|
|
|
transition: all 0.8s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
img {
|
|
|
|
opacity: 1;
|
|
|
|
transition-duration: 0.2s;
|
|
|
|
}
|
|
|
|
}
|
2016-03-10 19:26:59 -05:00
|
|
|
}
|
|
|
|
|
2016-03-05 16:43:05 -05:00
|
|
|
small {
|
|
|
|
display: block;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: 400;
|
|
|
|
font-family: 'Roboto Mono', monospace;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-list {
|
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 5px;
|
|
|
|
}
|
|
|
|
}
|
2016-02-27 18:02:59 -05:00
|
|
|
|
2016-03-05 17:42:40 -05:00
|
|
|
.footer {
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 30px;
|
2016-12-29 10:54:54 -05:00
|
|
|
font-size: 12px;
|
2017-01-23 10:01:46 -05:00
|
|
|
color: darken($color2, 25%);
|
2016-03-05 17:42:40 -05:00
|
|
|
|
|
|
|
.domain {
|
2016-12-29 10:54:54 -05:00
|
|
|
font-weight: 500;
|
2016-10-03 10:10:17 -04:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2016-03-05 17:42:40 -05:00
|
|
|
}
|
2016-03-24 22:22:26 -04:00
|
|
|
|
|
|
|
.powered-by {
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: underline;
|
2016-12-29 10:54:54 -05:00
|
|
|
font-weight: 500;
|
2016-03-24 22:22:26 -04:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-05 17:42:40 -05:00
|
|
|
}
|
|
|
|
|
2016-10-18 10:37:15 -04:00
|
|
|
@import 'forms';
|
2016-02-29 13:42:08 -05:00
|
|
|
@import 'accounts';
|
|
|
|
@import 'stream_entries';
|
2016-09-27 17:12:33 -04:00
|
|
|
@import 'components';
|
|
|
|
@import 'about';
|
2016-11-28 12:45:13 -05:00
|
|
|
@import 'tables';
|
2016-12-13 07:42:10 -05:00
|
|
|
@import 'admin';
|