Removed themes
@ -1,21 +0,0 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2022 KiwiSin
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
181
themes/Aurora/animations.css
vendored
@ -1,181 +0,0 @@
|
||||
/* ************************************************************* */
|
||||
/*
|
||||
/* Use this file to add custom CSS animations.
|
||||
/* Delete this file if you wish to use the default animations.
|
||||
/* If you do not want to have animations in your theme,
|
||||
/* remove or comment them and include this file in your theme.
|
||||
/*
|
||||
/* ************************************************************* */
|
||||
|
||||
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
- Entrance animations
|
||||
- Button hover animations
|
||||
- Icon hover animations
|
||||
- Footer hover animations
|
||||
|
||||
*/
|
||||
|
||||
|
||||
|
||||
/* Entrance animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.button-entrance {
|
||||
animation-name: popUp;
|
||||
animation-duration: 1s;
|
||||
animation-fill-mode: both;
|
||||
/* Used to start button entrance animation one after another */
|
||||
animation-delay: calc(var(--delay)/10);
|
||||
}
|
||||
|
||||
@keyframes popUp {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: scale3d(0.3, 0.3, 0.3);
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.fadein {
|
||||
animation-name: fadein;
|
||||
animation-duration: 3s;
|
||||
animation-fill-mode: both;
|
||||
}
|
||||
|
||||
@keyframes fadein {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Button hover animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* (Also apply to icon) */
|
||||
|
||||
.button-hover, .credit-hover, .social-hover{
|
||||
display:inline-block;
|
||||
-webkit-transform:perspective(1px) translateZ(0);
|
||||
transform:perspective(1px) translateZ(0);
|
||||
box-shadow:0 0 1px rgba(0,0,0,0);
|
||||
-webkit-transition-duration:.3s;
|
||||
transition-duration:.3s;
|
||||
-webkit-transition-property:transform;
|
||||
transition-property:transform
|
||||
}
|
||||
.button-hover:active,.credit-hover:active, .social-hover:active,
|
||||
.button-hover:focus,.credit-hover:focus, .social-hover:focus,
|
||||
.button-hover:hover,.credit-hover:hover, .social-hover:hover{
|
||||
-webkit-transform:scale(1.1);
|
||||
transform:scale(1.1)
|
||||
}
|
||||
|
||||
|
||||
/* Icon hover animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.icon-hover{
|
||||
display:inline-block;
|
||||
-webkit-transform:perspective(1px) translateZ(0);
|
||||
transform:perspective(1px) translateZ(0);
|
||||
box-shadow:0 0 1px rgba(0,0,0,0);
|
||||
-webkit-transition-duration:.3s;
|
||||
transition-duration:.3s
|
||||
}
|
||||
.icon-hover .hvr-icon{
|
||||
-webkit-transform:translateZ(0);
|
||||
transform:translateZ(0)
|
||||
}
|
||||
.icon-hover:active .hvr-icon,.icon-hover:focus .hvr-icon,.icon-hover:hover .hvr-icon{
|
||||
-webkit-animation-name:icon-hover;
|
||||
animation-name:icon-hover;
|
||||
-webkit-animation-duration:1s;
|
||||
animation-duration:1s;
|
||||
-webkit-animation-timing-function:ease-in-out;
|
||||
animation-timing-function:ease-in-out;
|
||||
-webkit-animation-iteration-count:1;
|
||||
animation-iteration-count:1
|
||||
}
|
||||
|
||||
@-webkit-keyframes icon-hover{
|
||||
16.65%{
|
||||
-webkit-transform:translateY(6px);
|
||||
transform:translateY(6px)
|
||||
}
|
||||
33.3%{
|
||||
-webkit-transform:translateY(-5px);
|
||||
transform:translateY(-5px)
|
||||
}
|
||||
49.95%{
|
||||
-webkit-transform:translateY(4px);
|
||||
transform:translateY(4px)
|
||||
}
|
||||
66.6%{
|
||||
-webkit-transform:translateY(-2px);
|
||||
transform:translateY(-2px)
|
||||
}
|
||||
83.25%{
|
||||
-webkit-transform:translateY(1px);
|
||||
transform:translateY(1px)
|
||||
}
|
||||
100%{
|
||||
-webkit-transform:translateY(0);
|
||||
transform:translateY(0)
|
||||
}
|
||||
}
|
||||
@keyframes icon-hover{
|
||||
16.65%{
|
||||
-webkit-transform:translateY(6px);
|
||||
transform:translateY(6px)
|
||||
}
|
||||
33.3%{
|
||||
-webkit-transform:translateY(-5px);
|
||||
transform:translateY(-5px)
|
||||
}
|
||||
49.95%{
|
||||
-webkit-transform:translateY(4px);
|
||||
transform:translateY(4px)
|
||||
}
|
||||
66.6%{
|
||||
-webkit-transform:translateY(-2px);
|
||||
transform:translateY(-2px)
|
||||
}
|
||||
83.25%{
|
||||
-webkit-transform:translateY(1px);
|
||||
transform:translateY(1px)
|
||||
}
|
||||
100%{
|
||||
-webkit-transform:translateY(0);
|
||||
transform:translateY(0)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Footer hover animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.footer-hover{
|
||||
display:inline-block;
|
||||
-webkit-transform:perspective(1px) translateZ(0);
|
||||
transform:perspective(1px) translateZ(0);
|
||||
box-shadow:0 0 1px rgba(0,0,0,0);
|
||||
-webkit-transition-duration:.3s;
|
||||
transition-duration:.3s;
|
||||
-webkit-transition-property:transform;
|
||||
transition-property:transform;
|
||||
-webkit-transition-timing-function:ease-out;
|
||||
transition-timing-function:ease-out
|
||||
}
|
||||
.footer-hover:active,.footer-hover:focus,.footer-hover:hover{
|
||||
-webkit-transform:translateY(-8px);
|
||||
transform:translateY(-8px)
|
||||
}
|
Before Width: | Height: | Size: 232 KiB |
438
themes/Aurora/brands.css
vendored
@ -1,438 +0,0 @@
|
||||
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
|
||||
- Rounded user avatars
|
||||
- Buttons
|
||||
- Brand Styles
|
||||
|
||||
*/
|
||||
|
||||
|
||||
/* Rounded avatars
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
/* Disable this if you don't want rounded avatars for users */
|
||||
.rounded-avatar {
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.social-icon {
|
||||
font-size: 32px;
|
||||
padding: 10px;
|
||||
}
|
||||
.social-icon-div {
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
|
||||
/* Buttons
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.button,
|
||||
button {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
height: 48px;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
font-size: 18px;
|
||||
width: 300px;
|
||||
font-weight: 700;
|
||||
line-height: 48px;
|
||||
letter-spacing: 0.1px;
|
||||
white-space: wrap;
|
||||
border-radius: 8px;
|
||||
cursor: pointer;
|
||||
}
|
||||
button:hover,
|
||||
.button:focus {
|
||||
color: #333;
|
||||
border-color: #888;
|
||||
outline: 0; }
|
||||
.button.button-primary {
|
||||
color: #FFF;
|
||||
filter: brightness(90%) }
|
||||
.button.button-primary:hover,
|
||||
.button.button-primary:focus {
|
||||
color: #FFF;
|
||||
filter: brightness(90%) }
|
||||
|
||||
|
||||
/* Brand Icons
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.icon {
|
||||
padding: 0px 8px 3.5px 0px;
|
||||
vertical-align: middle;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
|
||||
/* Brand Styles
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
/* Custom link button*/
|
||||
.button.button-custom {
|
||||
color: #FFFFFF;
|
||||
background-color: #FFFFFF;
|
||||
background-image: linear-gradient(-135deg,#0f0c29,#302b63,#24243e) }
|
||||
.button.button-custom:hover,
|
||||
.button.button-custom:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Default (this is great for your own brand color!) */
|
||||
.button.button-default {
|
||||
color: #FFFFFF;
|
||||
background-color: #0085FF }
|
||||
.button.button-default:hover,
|
||||
.button.button-default:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Discord */
|
||||
.button.button-discord {
|
||||
color: #FFFFFF;
|
||||
background-color: #5865F2 }
|
||||
.button.button-discord:hover,
|
||||
.button.button-discord:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Facebook */
|
||||
.button.button-facebook {
|
||||
color: #FFFFFF;
|
||||
background-color: #1877f2 }
|
||||
.button.button-facebook:hover,
|
||||
.button.button-facebook:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Facebook Messenger */
|
||||
.button.button-messenger {
|
||||
color: #FFFFFF;
|
||||
background-image: linear-gradient(25deg,#0099FF, #5F5DFF,#A033FF, #C740CC, #FF5280, #FF7061) }
|
||||
.button.button-messenger:hover,
|
||||
.button.button-messenger:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Figma */
|
||||
.button.button-figma {
|
||||
color: #FFFFFF;
|
||||
background-color: #000000 }
|
||||
.button.button-figma:hover,
|
||||
.button.button-figma:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Github */
|
||||
.button.button-github {
|
||||
color: #FFFFFF;
|
||||
background-color: #000000 }
|
||||
.button.button-github:hover,
|
||||
.button.button-github:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Goodreads */
|
||||
.button.button-goodreads {
|
||||
color: #333333;
|
||||
background-color: #F3F1E6 }
|
||||
.button.button-goodreads:hover,
|
||||
.button.button-goodreads:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Instagram */
|
||||
.button.button-instagram {
|
||||
color: #FFFFFF;
|
||||
background-image: linear-gradient(-135deg,#1400c8,#b900b4,#f50000) }
|
||||
.button.button-instagram:hover,
|
||||
.button.button-instagram:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Kit */
|
||||
.button.button-kit {
|
||||
color: #FFFFFF;
|
||||
background-color: #000000 }
|
||||
.button.button-kit:hover,
|
||||
.button.button-kit:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* LinkedIn */
|
||||
.button.button-linkedin {
|
||||
color: #FFFFFF;
|
||||
background-color: #2867B2 }
|
||||
.button.button-linkedin:hover,
|
||||
.button.button-linkedin:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Medium */
|
||||
.button.button-medium {
|
||||
color: #FFFFFF;
|
||||
background-color: #000000 }
|
||||
.button.button-medium:hover,
|
||||
.button.button-medium:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Pinterest */
|
||||
.button.button-pinterest {
|
||||
color: #000000;
|
||||
background-color: #FFE2EB }
|
||||
.button.button-pinterest:hover,
|
||||
.button.button-pinterest:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Producthunt */
|
||||
.button.button-producthunt {
|
||||
color: #DA552F;
|
||||
border-style: solid;
|
||||
border-color: #DA552F;
|
||||
border-width: 2px;
|
||||
background-color: #FFFFFF }
|
||||
.button.button-producthunt:hover,
|
||||
.button.button-producthunt:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Reddit */
|
||||
.button.button-reddit {
|
||||
color: #000000;
|
||||
background-color: #D7DFE2 }
|
||||
.button.button-reddit:hover,
|
||||
.button.button-reddit:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Skoob */
|
||||
.button.button-skoob {
|
||||
color: #FFFFFF;
|
||||
background-color: #3189C8 }
|
||||
.button.button-skoob:hover,
|
||||
.button.button-skoob:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Snapchat */
|
||||
.button.button-snapchat {
|
||||
color: #000000;
|
||||
background-color: #fffc00 }
|
||||
.button.button-snapchat:hover,
|
||||
.button.button-snapchat:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* SoundCloud */
|
||||
.button.button-soundcloud {
|
||||
color: #FFFFFF;
|
||||
background-color: #ff5500 }
|
||||
.button.button-soundcloud:hover,
|
||||
.button.button-soundcloud:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Spotify */
|
||||
.button.button-spotify {
|
||||
color: #FFFFFF;
|
||||
background-color: #000000 }
|
||||
.button.button-spotify:hover,
|
||||
.button.button-spotify:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Steam */
|
||||
.button.button-steam {
|
||||
color: #FFFFFF;
|
||||
background-color: #171a21 }
|
||||
.button.button-steam:hover,
|
||||
.button.button-steam:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Telegram */
|
||||
.button.button-telegram {
|
||||
color: #FFFFFF;
|
||||
background-color: #3faee8 }
|
||||
.button.button-telegram:hover,
|
||||
.button.button-telegram:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* TikTok */
|
||||
.button.button-tiktok {
|
||||
color: #FFFFFF;
|
||||
background-color: #000000 }
|
||||
.button.button-tiktok:hover,
|
||||
.button.button-tiktok:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Tumblr */
|
||||
.button.button-tumblr {
|
||||
color: #FFFFFF;
|
||||
background-color: #131313 }
|
||||
.button.button-tumblr:hover,
|
||||
.button.button-tumblr:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Twitch */
|
||||
.button.button-twitch {
|
||||
color: #FFFFFF;
|
||||
background-color: #9146ff }
|
||||
.button.button-twitch:hover,
|
||||
.button.button-twitch:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Twitter */
|
||||
.button.button-twitter {
|
||||
color: #FFFFFF;
|
||||
background-color: #1DA1F2 }
|
||||
.button.button-twitter:hover,
|
||||
.button.button-twitter:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Vimeo */
|
||||
.button.button-vimeo {
|
||||
color: #FFFFFF;
|
||||
background-color: #1ab7ea }
|
||||
.button.button-vimeo:hover,
|
||||
.button.button-vimeo:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* YouTube V2 */
|
||||
.button.button-youtube {
|
||||
color: #FFFFFF;
|
||||
background-color: #FF0000 }
|
||||
.button.button-youtube:hover,
|
||||
.button.button-youtube:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Wordpress */
|
||||
.button.button-wordpress {
|
||||
color: #FFFFFF;
|
||||
background-color: #21759b }
|
||||
.button.button-wordpress:hover,
|
||||
.button.button-wordpress:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Bandcamp */
|
||||
.button.button-bandcamp {
|
||||
color: #ffffff;
|
||||
background-color: #1d9fc3;
|
||||
}
|
||||
.button.button-bandcamp:hover,
|
||||
.button.button-bandcamp:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
/* Patreon */
|
||||
.button.button-patreon {
|
||||
color: #ffffff;
|
||||
background-color: #ff424d;
|
||||
}
|
||||
.button.button-patreon:hover,
|
||||
.button.button-patreon:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
/* Signal */
|
||||
.button.button-signal {
|
||||
color: #ffffff;
|
||||
background-color: #3a76f0;
|
||||
}
|
||||
.button.button-signal:hover,
|
||||
.button.button-signal:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
/* Venmo */
|
||||
.button.button-venmo {
|
||||
color: #ffffff;
|
||||
background-color: #3d95ce;
|
||||
}
|
||||
.button.button-venmo:hover,
|
||||
.button.button-venmo:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
/* Cash App */
|
||||
.button.button-cashapp {
|
||||
color: #ffffff;
|
||||
background-image: linear-gradient(to bottom, #00d64b, #00c244);
|
||||
}
|
||||
.button.button-cashapp:hover,
|
||||
.button.button-cashapp:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
/* Gitlab */
|
||||
.button.button-gitlab {
|
||||
color: #ffffff;
|
||||
background-color: #6151b2;
|
||||
}
|
||||
.button.button-gitlab:hover,
|
||||
.button.button-gitlab:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
/* Mastodon */
|
||||
.button.button-mastodon {
|
||||
color: #ffffff;
|
||||
background-color: #1f232b;
|
||||
}
|
||||
.button.button-mastodon:hover,
|
||||
.button.button-mastodon:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
/* PayPal */
|
||||
.button.button-paypal {
|
||||
color: #ffffff;
|
||||
background-color: #003087;
|
||||
}
|
||||
.button.button-paypal:hover,
|
||||
.button.button-paypal:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
/* WhatsApp */
|
||||
.button.button-whatsapp {
|
||||
color: #ffffff;
|
||||
background-color: #455a64;
|
||||
}
|
||||
.button.button-whatsapp:hover,
|
||||
.button.button-whatsapp:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
/* Xing */
|
||||
.button.button-xing {
|
||||
color: #ffffff;
|
||||
background-color: #026466;
|
||||
}
|
||||
.button.button-xing:hover,
|
||||
.button.button-xing:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
/* Buy Me a Coffee */
|
||||
.button.button-coffee {
|
||||
color: #100a26;
|
||||
background-color: #ffdd00;
|
||||
}
|
||||
.button.button-coffee:hover,
|
||||
.button.button-coffee:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
/* Trello */
|
||||
.button.button-trello {
|
||||
color: #ffffff;
|
||||
background-color: #0079bf;
|
||||
}
|
||||
.button.button-trello:hover,
|
||||
.button.button-trello:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
/* Website */
|
||||
.button.button-website {
|
||||
color: #ffffff;
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
/* Custom Website */
|
||||
.button.button-custom_website {
|
||||
color: #ffffff;
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
.button.button-web:hover,
|
||||
.button.button-web:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
@ -1,70 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Theme Config
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The theme config allows you to configure how LittleLink Custom should treat your theme.
|
||||
| All settings can either be set to "true" or "false", unless stated otherwise.
|
||||
|
|
||||
| The settings below change how your buttons behave.
|
||||
|
|
||||
*/
|
||||
|
||||
// Some themes may not be compatible with custom buttons created by the Button Editor.
|
||||
// If 'false' the default button CSS is used.
|
||||
'allow_custom_buttons' => 'true',
|
||||
|
||||
'open_links_in_same_tab' => 'false',
|
||||
|
||||
// You can use this option to use the default button styling. For example reskins of the Default Theme.
|
||||
// This can be useful if you do not want to update your brand styles every time a new button is added.
|
||||
// If true the file "brands.css" wont be used anymore and can be removed.
|
||||
'use_default_buttons' => 'true',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Code
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Custom code allows you to inject customized Blade, PHP, HTML, JavaScript and CSS code.
|
||||
|
|
||||
| In your "extra" folder, you will find 3 separate files for injecting your code to
|
||||
| different places on the final page (head, body, at the end of the body).
|
||||
|
|
||||
| You may also attach custom assets like CSS, JS, or images.
|
||||
| You can find instructions for this in the files in your extra folder.
|
||||
|
|
||||
*/
|
||||
|
||||
'enable_custom_code' => 'false',
|
||||
|
||||
// Disable individual files (only applies if above is 'true').
|
||||
'enable_custom_head' => 'true',
|
||||
'enable_custom_body' => 'true',
|
||||
'enable_custom_body_end' => 'true',
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Icons
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| You may add custom icons to your theme.
|
||||
| These icons are stored under: .../extra/custom-icons.
|
||||
|
|
||||
| You can adjust the file extension types to use other files than just SVGs.
|
||||
|
|
||||
*/
|
||||
|
||||
'use_custom_icons' => 'false',
|
||||
|
||||
// Is not set correct this will cause errors.
|
||||
'custom_icon_extension' => '.svg', // (.png, .jpg ...)
|
||||
|
||||
|
||||
|
||||
];
|
Before Width: | Height: | Size: 404 KiB |
@ -1,16 +0,0 @@
|
||||
# LittleLink Custom Aurora Theme
|
||||
Find more themes: https://github.com/JulianPrieber/llc-themes
|
||||
|
||||
* Theme Name: Aurora
|
||||
* Theme Version: 1.6
|
||||
* Theme Date: 2022-07-21
|
||||
* Theme Author: KiwiSin
|
||||
* Theme Author URI: https://me.unraid.nz/@kiwi
|
||||
* Theme License: GPLv3
|
||||
* Source code: https://github.com/LittleLink-Custom/Aurora
|
||||
|
||||
|
||||
### Used assets:
|
||||
* Built using:
|
||||
* https://github.com/dhg/Skeleton
|
||||
* License: MIT
|
104
themes/Aurora/share.button.css
vendored
@ -1,104 +0,0 @@
|
||||
.share-icon {
|
||||
padding: 0px 8px 3.5px 0px;
|
||||
vertical-align: middle;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.sharediv {
|
||||
position:relative;
|
||||
top: 30px;
|
||||
right: 30px;
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
|
||||
.toastdiv {
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
-webkit-align-items: center;
|
||||
align-items: center;
|
||||
-webkit-justify-content: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.toastbox {
|
||||
width: 280px;
|
||||
padding: 10px;
|
||||
background-color: rgba(0, 0, 0, 0.7);
|
||||
color: white;
|
||||
border-radius: 4px;
|
||||
position: fixed;
|
||||
top: 105%;
|
||||
-webkit-transition: transform 0.3s linear;
|
||||
transition: transform 0.3s linear;
|
||||
z-index: 2;
|
||||
text-align: center;
|
||||
}
|
||||
.toastbox.toast-tox--active {
|
||||
-webkit-transform: translateY(-150px);
|
||||
transform: translateY(-150px);
|
||||
}
|
||||
.sharebutton,
|
||||
sharebutton {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
height: 48px;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
font-size: 18px;
|
||||
width: 48px;
|
||||
font-weight: 700;
|
||||
line-height: 48px;
|
||||
letter-spacing: 0.1px;
|
||||
white-space: wrap;
|
||||
border-radius: 8px;
|
||||
cursor: pointer;
|
||||
color: #000000;
|
||||
background-color: #efefef
|
||||
}
|
||||
@media screen and (min-width: 600px) {
|
||||
.sharebutton,
|
||||
sharebutton {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
height: 48px;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
font-size: 18px;
|
||||
width: 150px;
|
||||
font-weight: 700;
|
||||
line-height: 48px;
|
||||
letter-spacing: 0.1px;
|
||||
white-space: wrap;
|
||||
border-radius: 8px;
|
||||
cursor: pointer;
|
||||
color: #000000;
|
||||
background-color: #efefef
|
||||
}
|
||||
}
|
||||
sharebutton:hover,
|
||||
.sharebutton:hover {
|
||||
color: #000000;
|
||||
opacity: 0.85;
|
||||
filter: alpha(opacity=40);
|
||||
border-color: #888;
|
||||
outline: 0; }
|
||||
.sharebutton.sharebutton-primary {
|
||||
color: #FFFFFF;
|
||||
filter: brightness(90%) }
|
||||
.sharebutton.sharebutton-primary:hover,
|
||||
.sharebutton.sharebutton-primary:focus {
|
||||
color: #FFFFFF;
|
||||
filter: brightness(90%) }
|
||||
|
||||
@media screen and (max-width: 600px) {
|
||||
.sharebutton-mb {
|
||||
display: none;
|
||||
}
|
||||
.sharebutton-img {
|
||||
position: relative;
|
||||
left: 3px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
}
|
242
themes/Aurora/skeleton-auto.css
vendored
@ -1,242 +0,0 @@
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
|
||||
- Grid
|
||||
- Base Styles
|
||||
- Typography
|
||||
- Links
|
||||
- Code
|
||||
- Spacing
|
||||
- Utilities
|
||||
- Misc
|
||||
- Credit footer
|
||||
|
||||
*/
|
||||
|
||||
|
||||
/* Grid
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.container {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
text-align: center;
|
||||
margin: 0 auto;
|
||||
box-sizing: border-box; }
|
||||
.column {
|
||||
position: center;
|
||||
width: 100%;
|
||||
float: center;
|
||||
box-sizing: border-box; }
|
||||
|
||||
/* For devices larger than 400px */
|
||||
@media (min-width: 400px) {
|
||||
.container {
|
||||
width: 85%;
|
||||
padding: 0; }
|
||||
}
|
||||
|
||||
/* For devices larger than 550px */
|
||||
@media (min-width: 550px) {
|
||||
.container {
|
||||
width: 80%; }
|
||||
.column,
|
||||
.columns {
|
||||
margin-left: 0; }
|
||||
.column:first-child,
|
||||
.columns:first-child {
|
||||
margin-left: 0; }
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* Base Styles
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* NOTE
|
||||
html is set to 62.5% so that all the REM measurements throughout Skeleton
|
||||
are based on 10px sizing. So basically 1.5rem = 15px :) */
|
||||
|
||||
html {
|
||||
font-size: 100%; }
|
||||
|
||||
body {
|
||||
font-size: 18px;
|
||||
line-height: 24px;
|
||||
font-weight: 400;
|
||||
color: white;
|
||||
font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
background: url(https://raw.githubusercontent.com/LittleLink-Custom/Aurora/main/aurora.jpg) no-repeat center center fixed;
|
||||
-webkit-background-size: cover;
|
||||
-moz-background-size: cover;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
|
||||
/* Typography
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
h1 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 16px;
|
||||
font-weight: 800; }
|
||||
h1 { font-size:24px; line-height: 64px; letter-spacing: 0;}
|
||||
|
||||
|
||||
/* Larger than phablet */
|
||||
@media (min-width: 550px) {
|
||||
h1 { font-size: 48px; line-height: 96px;}
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 0; }
|
||||
|
||||
|
||||
/* Links
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
a {
|
||||
color: #0085FF;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
color: #0085FF; }
|
||||
|
||||
.spacing {
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
.social-icon{color:#fff!important;}
|
||||
|
||||
/* Code
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
code {
|
||||
padding: .2rem .5rem;
|
||||
margin: 0 .2rem;
|
||||
font-size: 90%;
|
||||
white-space: nowrap;
|
||||
background: #F1F1F1;
|
||||
border: 1px solid #E1E1E1;
|
||||
border-radius: 4px; }
|
||||
pre > code {
|
||||
display: block;
|
||||
padding: 1rem 1.5rem;
|
||||
white-space: pre; }
|
||||
|
||||
/* Spacing
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
button,
|
||||
.button {
|
||||
margin-bottom: 1rem; }
|
||||
input,
|
||||
textarea,
|
||||
select,
|
||||
fieldset {
|
||||
margin-bottom: 1.5rem; }
|
||||
pre,
|
||||
blockquote,
|
||||
dl,
|
||||
figure,
|
||||
p,
|
||||
ol {
|
||||
margin-bottom: 2.5rem; }
|
||||
|
||||
|
||||
/* Utilities
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.u-full-width {
|
||||
width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.u-max-full-width {
|
||||
max-width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.u-pull-right {
|
||||
float: right; }
|
||||
.u-pull-left {
|
||||
float: left; }
|
||||
|
||||
|
||||
/* Misc
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
hr {
|
||||
margin-top: 3rem;
|
||||
margin-bottom: 3.5rem;
|
||||
border-width: 0;
|
||||
border-top: 1px solid #E1E1E1; }
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
/* ===== Scrollbar CSS ===== */
|
||||
/* Firefox */
|
||||
* {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #171a1d #31363b;
|
||||
}
|
||||
|
||||
/* Chrome, Edge, and Safari */
|
||||
*::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-track {
|
||||
background: #31363b;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-thumb {
|
||||
background-color: #171a1d;
|
||||
border-radius: 30px;
|
||||
border: 3px none #ffffff;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: light) {
|
||||
/* ===== Scrollbar CSS ===== */
|
||||
/* Firefox */
|
||||
* {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #323232 #dbdbdb;
|
||||
}
|
||||
|
||||
/* Chrome, Edge, and Safari */
|
||||
*::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-track {
|
||||
background: #dbdbdb;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-thumb {
|
||||
background-color: #323232;
|
||||
border-radius: 30px;
|
||||
border: 3px none #ffffff;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* Credit footer
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* Styling for credit footer text */
|
||||
.credit-txt {
|
||||
font-weight: 700;
|
||||
font-size: 15px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* Some fonts shift the credit footer icon around
|
||||
/* You can uncomment this to hide the icon and only display the text
|
||||
.credit-icon {
|
||||
display: none; }
|
||||
.credit-footer {
|
||||
position: relative;
|
||||
right: 15px; }
|
||||
*/
|
||||
|
||||
/* Switches text color for credit footer for dark/light mode */
|
||||
|
||||
.credit-txt-clr{
|
||||
color: #FFF !important;
|
||||
}
|
||||
|
||||
/* @media (prefers-color-scheme: light) {
|
||||
.credit-txt-clr{
|
||||
color: #100a26 !important;
|
||||
}
|
||||
} */
|
2
themes/Auroradev/.gitignore
vendored
@ -1,2 +0,0 @@
|
||||
|
||||
.DS_Store
|
@ -1,21 +0,0 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2022 KiwiSin
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
181
themes/Auroradev/animations.css
vendored
@ -1,181 +0,0 @@
|
||||
/* ************************************************************* */
|
||||
/*
|
||||
/* Use this file to add custom CSS animations.
|
||||
/* Delete this file if you wish to use the default animations.
|
||||
/* If you do not want to have animations in your theme,
|
||||
/* remove or comment them and include this file in your theme.
|
||||
/*
|
||||
/* ************************************************************* */
|
||||
|
||||
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
- Entrance animations
|
||||
- Button hover animations
|
||||
- Icon hover animations
|
||||
- Footer hover animations
|
||||
|
||||
*/
|
||||
|
||||
|
||||
|
||||
/* Entrance animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.button-entrance {
|
||||
animation-name: popUp;
|
||||
animation-duration: 1s;
|
||||
animation-fill-mode: both;
|
||||
/* Used to start button entrance animation one after another */
|
||||
animation-delay: calc(var(--delay)/10);
|
||||
}
|
||||
|
||||
@keyframes popUp {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: scale3d(0.3, 0.3, 0.3);
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.fadein {
|
||||
animation-name: fadein;
|
||||
animation-duration: 3s;
|
||||
animation-fill-mode: both;
|
||||
}
|
||||
|
||||
@keyframes fadein {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Button hover animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* (Also apply to icon) */
|
||||
|
||||
.button-hover, .credit-hover, .social-hover{
|
||||
display:inline-block;
|
||||
-webkit-transform:perspective(1px) translateZ(0);
|
||||
transform:perspective(1px) translateZ(0);
|
||||
box-shadow:0 0 1px rgba(0,0,0,0);
|
||||
-webkit-transition-duration:.3s;
|
||||
transition-duration:.3s;
|
||||
-webkit-transition-property:transform;
|
||||
transition-property:transform
|
||||
}
|
||||
.button-hover:active,.credit-hover:active, .social-hover:active,
|
||||
.button-hover:focus,.credit-hover:focus, .social-hover:focus,
|
||||
.button-hover:hover,.credit-hover:hover, .social-hover:hover{
|
||||
-webkit-transform:scale(1.1);
|
||||
transform:scale(1.1)
|
||||
}
|
||||
|
||||
|
||||
/* Icon hover animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.icon-hover{
|
||||
display:inline-block;
|
||||
-webkit-transform:perspective(1px) translateZ(0);
|
||||
transform:perspective(1px) translateZ(0);
|
||||
box-shadow:0 0 1px rgba(0,0,0,0);
|
||||
-webkit-transition-duration:.3s;
|
||||
transition-duration:.3s
|
||||
}
|
||||
.icon-hover .hvr-icon{
|
||||
-webkit-transform:translateZ(0);
|
||||
transform:translateZ(0)
|
||||
}
|
||||
.icon-hover:active .hvr-icon,.icon-hover:focus .hvr-icon,.icon-hover:hover .hvr-icon{
|
||||
-webkit-animation-name:icon-hover;
|
||||
animation-name:icon-hover;
|
||||
-webkit-animation-duration:1s;
|
||||
animation-duration:1s;
|
||||
-webkit-animation-timing-function:ease-in-out;
|
||||
animation-timing-function:ease-in-out;
|
||||
-webkit-animation-iteration-count:1;
|
||||
animation-iteration-count:1
|
||||
}
|
||||
|
||||
@-webkit-keyframes icon-hover{
|
||||
16.65%{
|
||||
-webkit-transform:translateY(6px);
|
||||
transform:translateY(6px)
|
||||
}
|
||||
33.3%{
|
||||
-webkit-transform:translateY(-5px);
|
||||
transform:translateY(-5px)
|
||||
}
|
||||
49.95%{
|
||||
-webkit-transform:translateY(4px);
|
||||
transform:translateY(4px)
|
||||
}
|
||||
66.6%{
|
||||
-webkit-transform:translateY(-2px);
|
||||
transform:translateY(-2px)
|
||||
}
|
||||
83.25%{
|
||||
-webkit-transform:translateY(1px);
|
||||
transform:translateY(1px)
|
||||
}
|
||||
100%{
|
||||
-webkit-transform:translateY(0);
|
||||
transform:translateY(0)
|
||||
}
|
||||
}
|
||||
@keyframes icon-hover{
|
||||
16.65%{
|
||||
-webkit-transform:translateY(6px);
|
||||
transform:translateY(6px)
|
||||
}
|
||||
33.3%{
|
||||
-webkit-transform:translateY(-5px);
|
||||
transform:translateY(-5px)
|
||||
}
|
||||
49.95%{
|
||||
-webkit-transform:translateY(4px);
|
||||
transform:translateY(4px)
|
||||
}
|
||||
66.6%{
|
||||
-webkit-transform:translateY(-2px);
|
||||
transform:translateY(-2px)
|
||||
}
|
||||
83.25%{
|
||||
-webkit-transform:translateY(1px);
|
||||
transform:translateY(1px)
|
||||
}
|
||||
100%{
|
||||
-webkit-transform:translateY(0);
|
||||
transform:translateY(0)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Footer hover animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.footer-hover{
|
||||
display:inline-block;
|
||||
-webkit-transform:perspective(1px) translateZ(0);
|
||||
transform:perspective(1px) translateZ(0);
|
||||
box-shadow:0 0 1px rgba(0,0,0,0);
|
||||
-webkit-transition-duration:.3s;
|
||||
transition-duration:.3s;
|
||||
-webkit-transition-property:transform;
|
||||
transition-property:transform;
|
||||
-webkit-transition-timing-function:ease-out;
|
||||
transition-timing-function:ease-out
|
||||
}
|
||||
.footer-hover:active,.footer-hover:focus,.footer-hover:hover{
|
||||
-webkit-transform:translateY(-8px);
|
||||
transform:translateY(-8px)
|
||||
}
|
Before Width: | Height: | Size: 232 KiB |
438
themes/Auroradev/brands.css
vendored
@ -1,438 +0,0 @@
|
||||
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
|
||||
- Rounded user avatars
|
||||
- Buttons
|
||||
- Brand Styles
|
||||
|
||||
*/
|
||||
|
||||
|
||||
/* Rounded avatars
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
/* Disable this if you don't want rounded avatars for users */
|
||||
.rounded-avatar {
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.social-icon {
|
||||
font-size: 32px;
|
||||
padding: 10px;
|
||||
}
|
||||
.social-icon-div {
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
|
||||
/* Buttons
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.button,
|
||||
button {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
height: 48px;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
font-size: 18px;
|
||||
width: 300px;
|
||||
font-weight: 700;
|
||||
line-height: 48px;
|
||||
letter-spacing: 0.1px;
|
||||
white-space: wrap;
|
||||
border-radius: 8px;
|
||||
cursor: pointer;
|
||||
}
|
||||
button:hover,
|
||||
.button:focus {
|
||||
color: #333;
|
||||
border-color: #888;
|
||||
outline: 0; }
|
||||
.button.button-primary {
|
||||
color: #FFF;
|
||||
filter: brightness(90%) }
|
||||
.button.button-primary:hover,
|
||||
.button.button-primary:focus {
|
||||
color: #FFF;
|
||||
filter: brightness(90%) }
|
||||
|
||||
|
||||
/* Brand Icons
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.icon {
|
||||
padding: 0px 8px 3.5px 0px;
|
||||
vertical-align: middle;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
|
||||
/* Brand Styles
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
/* Custom link button*/
|
||||
.button.button-custom {
|
||||
color: #FFFFFF;
|
||||
background-color: #FFFFFF;
|
||||
background-image: linear-gradient(-135deg,#0f0c29,#302b63,#24243e) }
|
||||
.button.button-custom:hover,
|
||||
.button.button-custom:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Default (this is great for your own brand color!) */
|
||||
.button.button-default {
|
||||
color: #FFFFFF;
|
||||
background-color: #0085FF }
|
||||
.button.button-default:hover,
|
||||
.button.button-default:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Discord */
|
||||
.button.button-discord {
|
||||
color: #FFFFFF;
|
||||
background-color: #5865F2 }
|
||||
.button.button-discord:hover,
|
||||
.button.button-discord:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Facebook */
|
||||
.button.button-facebook {
|
||||
color: #FFFFFF;
|
||||
background-color: #1877f2 }
|
||||
.button.button-facebook:hover,
|
||||
.button.button-facebook:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Facebook Messenger */
|
||||
.button.button-messenger {
|
||||
color: #FFFFFF;
|
||||
background-image: linear-gradient(25deg,#0099FF, #5F5DFF,#A033FF, #C740CC, #FF5280, #FF7061) }
|
||||
.button.button-messenger:hover,
|
||||
.button.button-messenger:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Figma */
|
||||
.button.button-figma {
|
||||
color: #FFFFFF;
|
||||
background-color: #000000 }
|
||||
.button.button-figma:hover,
|
||||
.button.button-figma:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Github */
|
||||
.button.button-github {
|
||||
color: #FFFFFF;
|
||||
background-color: #000000 }
|
||||
.button.button-github:hover,
|
||||
.button.button-github:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Goodreads */
|
||||
.button.button-goodreads {
|
||||
color: #333333;
|
||||
background-color: #F3F1E6 }
|
||||
.button.button-goodreads:hover,
|
||||
.button.button-goodreads:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Instagram */
|
||||
.button.button-instagram {
|
||||
color: #FFFFFF;
|
||||
background-image: linear-gradient(-135deg,#1400c8,#b900b4,#f50000) }
|
||||
.button.button-instagram:hover,
|
||||
.button.button-instagram:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Kit */
|
||||
.button.button-kit {
|
||||
color: #FFFFFF;
|
||||
background-color: #000000 }
|
||||
.button.button-kit:hover,
|
||||
.button.button-kit:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* LinkedIn */
|
||||
.button.button-linkedin {
|
||||
color: #FFFFFF;
|
||||
background-color: #2867B2 }
|
||||
.button.button-linkedin:hover,
|
||||
.button.button-linkedin:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Medium */
|
||||
.button.button-medium {
|
||||
color: #FFFFFF;
|
||||
background-color: #000000 }
|
||||
.button.button-medium:hover,
|
||||
.button.button-medium:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Pinterest */
|
||||
.button.button-pinterest {
|
||||
color: #000000;
|
||||
background-color: #FFE2EB }
|
||||
.button.button-pinterest:hover,
|
||||
.button.button-pinterest:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Producthunt */
|
||||
.button.button-producthunt {
|
||||
color: #DA552F;
|
||||
border-style: solid;
|
||||
border-color: #DA552F;
|
||||
border-width: 2px;
|
||||
background-color: #FFFFFF }
|
||||
.button.button-producthunt:hover,
|
||||
.button.button-producthunt:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Reddit */
|
||||
.button.button-reddit {
|
||||
color: #000000;
|
||||
background-color: #D7DFE2 }
|
||||
.button.button-reddit:hover,
|
||||
.button.button-reddit:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Skoob */
|
||||
.button.button-skoob {
|
||||
color: #FFFFFF;
|
||||
background-color: #3189C8 }
|
||||
.button.button-skoob:hover,
|
||||
.button.button-skoob:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Snapchat */
|
||||
.button.button-snapchat {
|
||||
color: #000000;
|
||||
background-color: #fffc00 }
|
||||
.button.button-snapchat:hover,
|
||||
.button.button-snapchat:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* SoundCloud */
|
||||
.button.button-soundcloud {
|
||||
color: #FFFFFF;
|
||||
background-color: #ff5500 }
|
||||
.button.button-soundcloud:hover,
|
||||
.button.button-soundcloud:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Spotify */
|
||||
.button.button-spotify {
|
||||
color: #FFFFFF;
|
||||
background-color: #000000 }
|
||||
.button.button-spotify:hover,
|
||||
.button.button-spotify:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Steam */
|
||||
.button.button-steam {
|
||||
color: #FFFFFF;
|
||||
background-color: #171a21 }
|
||||
.button.button-steam:hover,
|
||||
.button.button-steam:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Telegram */
|
||||
.button.button-telegram {
|
||||
color: #FFFFFF;
|
||||
background-color: #3faee8 }
|
||||
.button.button-telegram:hover,
|
||||
.button.button-telegram:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* TikTok */
|
||||
.button.button-tiktok {
|
||||
color: #FFFFFF;
|
||||
background-color: #000000 }
|
||||
.button.button-tiktok:hover,
|
||||
.button.button-tiktok:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Tumblr */
|
||||
.button.button-tumblr {
|
||||
color: #FFFFFF;
|
||||
background-color: #131313 }
|
||||
.button.button-tumblr:hover,
|
||||
.button.button-tumblr:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Twitch */
|
||||
.button.button-twitch {
|
||||
color: #FFFFFF;
|
||||
background-color: #9146ff }
|
||||
.button.button-twitch:hover,
|
||||
.button.button-twitch:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Twitter */
|
||||
.button.button-twitter {
|
||||
color: #FFFFFF;
|
||||
background-color: #1DA1F2 }
|
||||
.button.button-twitter:hover,
|
||||
.button.button-twitter:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Vimeo */
|
||||
.button.button-vimeo {
|
||||
color: #FFFFFF;
|
||||
background-color: #1ab7ea }
|
||||
.button.button-vimeo:hover,
|
||||
.button.button-vimeo:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* YouTube V2 */
|
||||
.button.button-youtube {
|
||||
color: #FFFFFF;
|
||||
background-color: #FF0000 }
|
||||
.button.button-youtube:hover,
|
||||
.button.button-youtube:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Wordpress */
|
||||
.button.button-wordpress {
|
||||
color: #FFFFFF;
|
||||
background-color: #21759b }
|
||||
.button.button-wordpress:hover,
|
||||
.button.button-wordpress:focus {
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* Bandcamp */
|
||||
.button.button-bandcamp {
|
||||
color: #ffffff;
|
||||
background-color: #1d9fc3;
|
||||
}
|
||||
.button.button-bandcamp:hover,
|
||||
.button.button-bandcamp:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
/* Patreon */
|
||||
.button.button-patreon {
|
||||
color: #ffffff;
|
||||
background-color: #ff424d;
|
||||
}
|
||||
.button.button-patreon:hover,
|
||||
.button.button-patreon:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
/* Signal */
|
||||
.button.button-signal {
|
||||
color: #ffffff;
|
||||
background-color: #3a76f0;
|
||||
}
|
||||
.button.button-signal:hover,
|
||||
.button.button-signal:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
/* Venmo */
|
||||
.button.button-venmo {
|
||||
color: #ffffff;
|
||||
background-color: #3d95ce;
|
||||
}
|
||||
.button.button-venmo:hover,
|
||||
.button.button-venmo:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
/* Cash App */
|
||||
.button.button-cashapp {
|
||||
color: #ffffff;
|
||||
background-image: linear-gradient(to bottom, #00d64b, #00c244);
|
||||
}
|
||||
.button.button-cashapp:hover,
|
||||
.button.button-cashapp:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
/* Gitlab */
|
||||
.button.button-gitlab {
|
||||
color: #ffffff;
|
||||
background-color: #6151b2;
|
||||
}
|
||||
.button.button-gitlab:hover,
|
||||
.button.button-gitlab:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
/* Mastodon */
|
||||
.button.button-mastodon {
|
||||
color: #ffffff;
|
||||
background-color: #1f232b;
|
||||
}
|
||||
.button.button-mastodon:hover,
|
||||
.button.button-mastodon:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
/* PayPal */
|
||||
.button.button-paypal {
|
||||
color: #ffffff;
|
||||
background-color: #003087;
|
||||
}
|
||||
.button.button-paypal:hover,
|
||||
.button.button-paypal:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
/* WhatsApp */
|
||||
.button.button-whatsapp {
|
||||
color: #ffffff;
|
||||
background-color: #455a64;
|
||||
}
|
||||
.button.button-whatsapp:hover,
|
||||
.button.button-whatsapp:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
/* Xing */
|
||||
.button.button-xing {
|
||||
color: #ffffff;
|
||||
background-color: #026466;
|
||||
}
|
||||
.button.button-xing:hover,
|
||||
.button.button-xing:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
/* Buy Me a Coffee */
|
||||
.button.button-coffee {
|
||||
color: #100a26;
|
||||
background-color: #ffdd00;
|
||||
}
|
||||
.button.button-coffee:hover,
|
||||
.button.button-coffee:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
/* Trello */
|
||||
.button.button-trello {
|
||||
color: #ffffff;
|
||||
background-color: #0079bf;
|
||||
}
|
||||
.button.button-trello:hover,
|
||||
.button.button-trello:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
/* Website */
|
||||
.button.button-website {
|
||||
color: #ffffff;
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
/* Custom Website */
|
||||
.button.button-custom_website {
|
||||
color: #ffffff;
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
.button.button-web:hover,
|
||||
.button.button-web:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
@ -1,70 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Theme Config
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The theme config allows you to configure how LittleLink Custom should treat your theme.
|
||||
| All settings can either be set to "true" or "false", unless stated otherwise.
|
||||
|
|
||||
| The settings below change how your buttons behave.
|
||||
|
|
||||
*/
|
||||
|
||||
// Some themes may not be compatible with custom buttons created by the Button Editor.
|
||||
// If 'false' the default button CSS is used.
|
||||
'allow_custom_buttons' => 'true',
|
||||
|
||||
'open_links_in_same_tab' => 'false',
|
||||
|
||||
// You can use this option to use the default button styling. For example reskins of the Default Theme.
|
||||
// This can be useful if you do not want to update your brand styles every time a new button is added.
|
||||
// If true the file "brands.css" wont be used anymore and can be removed.
|
||||
'use_default_buttons' => 'true',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Code
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Custom code allows you to inject customized Blade, PHP, HTML, JavaScript and CSS code.
|
||||
|
|
||||
| In your "extra" folder, you will find 3 separate files for injecting your code to
|
||||
| different places on the final page (head, body, at the end of the body).
|
||||
|
|
||||
| You may also attach custom assets like CSS, JS, or images.
|
||||
| You can find instructions for this in the files in your extra folder.
|
||||
|
|
||||
*/
|
||||
|
||||
'enable_custom_code' => 'true',
|
||||
|
||||
// Disable individual files (only applies if above is 'true').
|
||||
'enable_custom_head' => 'true',
|
||||
'enable_custom_body' => 'false',
|
||||
'enable_custom_body_end' => 'false',
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Icons
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| You may add custom icons to your theme.
|
||||
| These icons are stored under: .../extra/custom-icons.
|
||||
|
|
||||
| You can adjust the file extension types to use other files than just SVGs.
|
||||
|
|
||||
*/
|
||||
|
||||
'use_custom_icons' => 'false',
|
||||
|
||||
// Is not set correct this will cause errors.
|
||||
'custom_icon_extension' => '.svg', // (.png, .jpg ...)
|
||||
|
||||
|
||||
|
||||
];
|
@ -1,38 +0,0 @@
|
||||
{{--
|
||||
|
||||
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom assets
|
||||
|--------------------------------------------------------------------------
|
||||
|
||||
Custom assets are stored in the 'custom-assets' directory found inside the 'extra' folder.
|
||||
Custom assets can be any file you would like to use in your theme.
|
||||
For example: JS, CSS or image files.
|
||||
|
||||
You can load these custom assets with a built-in function, 'themeAsset()'.
|
||||
Add the file you want to add to your 'custom-assets' folder, and include the name with the file extension in the function.
|
||||
|
||||
Down below, you can find a few examples using this function:
|
||||
|
||||
|
||||
|
||||
--}}
|
||||
|
||||
<style>
|
||||
html{
|
||||
font-size: 100%;
|
||||
}
|
||||
body{
|
||||
font-size: 18px;
|
||||
line-height: 24px;
|
||||
font-weight: 400;
|
||||
color: white;
|
||||
font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
background-image:
|
||||
url({{themeAsset('../../aurora.jpg')}});
|
||||
no-repeat center center fixed;
|
||||
-webkit-background-size: cover;
|
||||
-moz-background-size: cover;
|
||||
background-size: cover;
|
||||
}
|
||||
</style>
|
Before Width: | Height: | Size: 403 KiB |
@ -1,16 +0,0 @@
|
||||
# LittleLink Custom Aurora Theme
|
||||
Find more themes: https://github.com/JulianPrieber/llc-themes
|
||||
|
||||
* Theme Name: Aurora
|
||||
* Theme Version: 1.7
|
||||
* Theme Date: 2022-07-21
|
||||
* Theme Author: KiwiSin
|
||||
* Theme Author URI: https://me.unraid.nz/@kiwi
|
||||
* Theme License: GPLv3
|
||||
* Source code: https://github.com/LittleLink-Custom/Aurora
|
||||
|
||||
|
||||
### Used assets:
|
||||
* Built using:
|
||||
* https://github.com/dhg/Skeleton
|
||||
* License: MIT
|
104
themes/Auroradev/share.button.css
vendored
@ -1,104 +0,0 @@
|
||||
.share-icon {
|
||||
padding: 0px 8px 3.5px 0px;
|
||||
vertical-align: middle;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.sharediv {
|
||||
position:relative;
|
||||
top: 30px;
|
||||
right: 30px;
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
|
||||
.toastdiv {
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
-webkit-align-items: center;
|
||||
align-items: center;
|
||||
-webkit-justify-content: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.toastbox {
|
||||
width: 280px;
|
||||
padding: 10px;
|
||||
background-color: rgba(0, 0, 0, 0.7);
|
||||
color: white;
|
||||
border-radius: 4px;
|
||||
position: fixed;
|
||||
top: 105%;
|
||||
-webkit-transition: transform 0.3s linear;
|
||||
transition: transform 0.3s linear;
|
||||
z-index: 2;
|
||||
text-align: center;
|
||||
}
|
||||
.toastbox.toast-tox--active {
|
||||
-webkit-transform: translateY(-150px);
|
||||
transform: translateY(-150px);
|
||||
}
|
||||
.sharebutton,
|
||||
sharebutton {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
height: 48px;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
font-size: 18px;
|
||||
width: 48px;
|
||||
font-weight: 700;
|
||||
line-height: 48px;
|
||||
letter-spacing: 0.1px;
|
||||
white-space: wrap;
|
||||
border-radius: 8px;
|
||||
cursor: pointer;
|
||||
color: #000000;
|
||||
background-color: #efefef
|
||||
}
|
||||
@media screen and (min-width: 600px) {
|
||||
.sharebutton,
|
||||
sharebutton {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
height: 48px;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
font-size: 18px;
|
||||
width: 150px;
|
||||
font-weight: 700;
|
||||
line-height: 48px;
|
||||
letter-spacing: 0.1px;
|
||||
white-space: wrap;
|
||||
border-radius: 8px;
|
||||
cursor: pointer;
|
||||
color: #000000;
|
||||
background-color: #efefef
|
||||
}
|
||||
}
|
||||
sharebutton:hover,
|
||||
.sharebutton:hover {
|
||||
color: #000000;
|
||||
opacity: 0.85;
|
||||
filter: alpha(opacity=40);
|
||||
border-color: #888;
|
||||
outline: 0; }
|
||||
.sharebutton.sharebutton-primary {
|
||||
color: #FFFFFF;
|
||||
filter: brightness(90%) }
|
||||
.sharebutton.sharebutton-primary:hover,
|
||||
.sharebutton.sharebutton-primary:focus {
|
||||
color: #FFFFFF;
|
||||
filter: brightness(90%) }
|
||||
|
||||
@media screen and (max-width: 600px) {
|
||||
.sharebutton-mb {
|
||||
display: none;
|
||||
}
|
||||
.sharebutton-img {
|
||||
position: relative;
|
||||
left: 3px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
}
|
227
themes/Auroradev/skeleton-auto.css
vendored
@ -1,227 +0,0 @@
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
|
||||
- Grid
|
||||
- Base Styles
|
||||
- Typography
|
||||
- Links
|
||||
- Code
|
||||
- Spacing
|
||||
- Utilities
|
||||
- Misc
|
||||
- Credit footer
|
||||
|
||||
*/
|
||||
|
||||
|
||||
/* Grid
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.container {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
text-align: center;
|
||||
margin: 0 auto;
|
||||
box-sizing: border-box; }
|
||||
.column {
|
||||
position: center;
|
||||
width: 100%;
|
||||
float: center;
|
||||
box-sizing: border-box; }
|
||||
|
||||
/* For devices larger than 400px */
|
||||
@media (min-width: 400px) {
|
||||
.container {
|
||||
width: 85%;
|
||||
padding: 0; }
|
||||
}
|
||||
|
||||
/* For devices larger than 550px */
|
||||
@media (min-width: 550px) {
|
||||
.container {
|
||||
width: 80%; }
|
||||
.column,
|
||||
.columns {
|
||||
margin-left: 0; }
|
||||
.column:first-child,
|
||||
.columns:first-child {
|
||||
margin-left: 0; }
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* Base Styles
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* NOTE
|
||||
html is set to 62.5% so that all the REM measurements throughout Skeleton
|
||||
are based on 10px sizing. So basically 1.5rem = 15px :) */
|
||||
|
||||
|
||||
/* Typography
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
h1 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 16px;
|
||||
font-weight: 800; }
|
||||
h1 { font-size:24px; line-height: 64px; letter-spacing: 0;}
|
||||
|
||||
|
||||
/* Larger than phablet */
|
||||
@media (min-width: 550px) {
|
||||
h1 { font-size: 48px; line-height: 96px;}
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 0; }
|
||||
|
||||
|
||||
/* Links
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
a {
|
||||
color: #0085FF;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
color: #0085FF; }
|
||||
|
||||
.spacing {
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
.social-icon{color:#fff!important;}
|
||||
|
||||
/* Code
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
code {
|
||||
padding: .2rem .5rem;
|
||||
margin: 0 .2rem;
|
||||
font-size: 90%;
|
||||
white-space: nowrap;
|
||||
background: #F1F1F1;
|
||||
border: 1px solid #E1E1E1;
|
||||
border-radius: 4px; }
|
||||
pre > code {
|
||||
display: block;
|
||||
padding: 1rem 1.5rem;
|
||||
white-space: pre; }
|
||||
|
||||
/* Spacing
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
button,
|
||||
.button {
|
||||
margin-bottom: 1rem; }
|
||||
input,
|
||||
textarea,
|
||||
select,
|
||||
fieldset {
|
||||
margin-bottom: 1.5rem; }
|
||||
pre,
|
||||
blockquote,
|
||||
dl,
|
||||
figure,
|
||||
p,
|
||||
ol {
|
||||
margin-bottom: 2.5rem; }
|
||||
|
||||
|
||||
/* Utilities
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.u-full-width {
|
||||
width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.u-max-full-width {
|
||||
max-width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.u-pull-right {
|
||||
float: right; }
|
||||
.u-pull-left {
|
||||
float: left; }
|
||||
|
||||
|
||||
/* Misc
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
hr {
|
||||
margin-top: 3rem;
|
||||
margin-bottom: 3.5rem;
|
||||
border-width: 0;
|
||||
border-top: 1px solid #E1E1E1; }
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
/* ===== Scrollbar CSS ===== */
|
||||
/* Firefox */
|
||||
* {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #171a1d #31363b;
|
||||
}
|
||||
|
||||
/* Chrome, Edge, and Safari */
|
||||
*::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-track {
|
||||
background: #31363b;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-thumb {
|
||||
background-color: #171a1d;
|
||||
border-radius: 30px;
|
||||
border: 3px none #ffffff;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: light) {
|
||||
/* ===== Scrollbar CSS ===== */
|
||||
/* Firefox */
|
||||
* {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #323232 #dbdbdb;
|
||||
}
|
||||
|
||||
/* Chrome, Edge, and Safari */
|
||||
*::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-track {
|
||||
background: #dbdbdb;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-thumb {
|
||||
background-color: #323232;
|
||||
border-radius: 30px;
|
||||
border: 3px none #ffffff;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* Credit footer
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* Styling for credit footer text */
|
||||
.credit-txt {
|
||||
font-weight: 700;
|
||||
font-size: 15px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* Some fonts shift the credit footer icon around
|
||||
/* You can uncomment this to hide the icon and only display the text
|
||||
.credit-icon {
|
||||
display: none; }
|
||||
.credit-footer {
|
||||
position: relative;
|
||||
right: 15px; }
|
||||
*/
|
||||
|
||||
/* Switches text color for credit footer for dark/light mode */
|
||||
|
||||
.credit-txt-clr{
|
||||
color: #FFF !important;
|
||||
}
|
||||
|
||||
/* @media (prefers-color-scheme: light) {
|
||||
.credit-txt-clr{
|
||||
color: #100a26 !important;
|
||||
}
|
||||
} */
|
@ -1,674 +0,0 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
101
themes/BongoCat/animations.css
vendored
@ -1,101 +0,0 @@
|
||||
/* ************************************************************* */
|
||||
/*
|
||||
/* Use this file to add custom CSS animations.
|
||||
/* Delete this file if you wish to use the default animations.
|
||||
/* If you do not want to have animations in your theme,
|
||||
/* remove or comment them and include this file in your theme.
|
||||
/*
|
||||
/* ************************************************************* */
|
||||
|
||||
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
- Entrance animations
|
||||
- Button hover animations
|
||||
- Icon hover animations
|
||||
- Footer hover animations
|
||||
|
||||
*/
|
||||
|
||||
|
||||
|
||||
/* Entrance animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.button-entrance {
|
||||
animation-name: popUp;
|
||||
animation-duration: 1s;
|
||||
animation-fill-mode: both;
|
||||
/* Used to start button entrance animation one after another */
|
||||
animation-delay: calc(var(--delay)/10);
|
||||
}
|
||||
|
||||
@keyframes popUp {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: scale3d(0.3, 0.3, 0.3);
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.fadein {
|
||||
animation-name: fadein;
|
||||
animation-duration: 3s;
|
||||
animation-fill-mode: both;
|
||||
}
|
||||
|
||||
@keyframes fadein {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Button hover animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* (Also apply to icon) */
|
||||
|
||||
.button-hover, .credit-hover{
|
||||
display:inline-block;
|
||||
-webkit-transform:perspective(1px) translateZ(0);
|
||||
transform:perspective(1px) translateZ(0);
|
||||
box-shadow:0 0 1px rgba(0,0,0,0);
|
||||
-webkit-transition-duration:.1s;
|
||||
transition-duration:.1s;
|
||||
-webkit-transition-property:transform;
|
||||
transition-property:transform
|
||||
}
|
||||
.button-hover:active,.credit-hover:active,
|
||||
.button-hover:focus,.credit-hover:focus,
|
||||
.button-hover:hover,.credit-hover:hover{
|
||||
-webkit-transform:scale(1.02);
|
||||
transform:scale(1.02)
|
||||
}
|
||||
|
||||
|
||||
/* Footer hover animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.footer-hover{
|
||||
display:inline-block;
|
||||
-webkit-transform:perspective(1px) translateZ(0);
|
||||
transform:perspective(1px) translateZ(0);
|
||||
box-shadow:0 0 1px rgba(0,0,0,0);
|
||||
-webkit-transition-duration:.3s;
|
||||
transition-duration:.3s;
|
||||
-webkit-transition-property:transform;
|
||||
transition-property:transform;
|
||||
-webkit-transition-timing-function:ease-out;
|
||||
transition-timing-function:ease-out
|
||||
}
|
||||
.footer-hover:active,.footer-hover:focus,.footer-hover:hover{
|
||||
-webkit-transform:translateY(-8px);
|
||||
transform:translateY(-8px)
|
||||
}
|
82
themes/BongoCat/brands.css
vendored
@ -1,82 +0,0 @@
|
||||
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
|
||||
- Rounded user avatars
|
||||
- Buttons
|
||||
- Brand Styles
|
||||
|
||||
*/
|
||||
|
||||
|
||||
/* Rounded avatars
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
/* Disable this if you don't want rounded avatars for users */
|
||||
.rounded-avatar {
|
||||
border-radius: 50%;
|
||||
width: 200px;
|
||||
height: auto;
|
||||
max-height: 200px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.social-icon {
|
||||
font-size: 40px;
|
||||
padding: 10px;
|
||||
}
|
||||
.social-icon-div {
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
.social-icon{color:#7ed1e2;}
|
||||
|
||||
/* Buttons
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
:root {
|
||||
--bgColor: #223344;
|
||||
--bgColor2: #090a0f;
|
||||
--accentColor: #ff61d8;
|
||||
--font: 'Karla', sans-serif;
|
||||
--delay: .3s; }
|
||||
|
||||
.button {
|
||||
position: relative;
|
||||
background-color: transparent;
|
||||
color: #569cfa;
|
||||
border: solid #ff61d8 3px;
|
||||
border-radius: 10px;
|
||||
font-size: 1rem;
|
||||
text-align: center;
|
||||
display: block;
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
margin-bottom: 10px;
|
||||
padding: 10px; /* 17px */
|
||||
text-decoration: none;
|
||||
/* transition: all .25s cubic-bezier(.08, .59, .29, .99); */
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
|
||||
/* @media (hover: hover) {
|
||||
.button:hover {
|
||||
background-color: var(--accentColor);
|
||||
color: var(--bgColor);
|
||||
}
|
||||
}
|
||||
|
||||
.button:active {
|
||||
background-color: var(--accentColor);
|
||||
color: var(--bgColor);
|
||||
} */
|
||||
|
||||
|
||||
/* Brand Icons
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.icon {
|
||||
padding: 0px 8px 3.5px 0px;
|
||||
vertical-align: middle;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
@ -1,68 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Theme Config
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The theme config allows you to configure how LittleLink Custom should treat your theme.
|
||||
| All settings can either be set to "true" or "false", unless stated otherwise.
|
||||
|
|
||||
| The settings below change how your buttons behave.
|
||||
|
|
||||
*/
|
||||
|
||||
// Some themes may not be compatible with custom buttons created by the Button Editor.
|
||||
// If 'false' the default button CSS is used.
|
||||
'allow_custom_buttons' => 'false',
|
||||
|
||||
'open_links_in_same_tab' => 'false',
|
||||
|
||||
'allow_custom_background' => 'false',
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Code
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Custom code allows you to inject customized Blade, PHP, HTML, JavaScript and CSS code.
|
||||
|
|
||||
| In your "extra" folder, you will find 3 separate files for injecting your code to
|
||||
| different places on the final page (head, body, at the end of the body).
|
||||
|
|
||||
| You may also attach custom assets like CSS, JS, or images.
|
||||
| You can find instructions for this in the files in your extra folder.
|
||||
|
|
||||
*/
|
||||
|
||||
'enable_custom_code' => 'true',
|
||||
|
||||
// Disable individual files (only applies if above is 'true').
|
||||
'enable_custom_head' => 'true',
|
||||
'enable_custom_body' => 'true',
|
||||
'enable_custom_body_end' => 'true',
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Icons
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| You may add custom icons to your theme.
|
||||
| These icons are stored under: .../extra/custom-icons.
|
||||
|
|
||||
| You can adjust the file extension types to use other files than just SVGs.
|
||||
|
|
||||
*/
|
||||
|
||||
'use_custom_icons' => 'false',
|
||||
|
||||
// Is not set correct this will cause errors.
|
||||
'custom_icon_extension' => '.svg', // (.png, .jpg ...)
|
||||
|
||||
|
||||
|
||||
];
|
85
themes/BongoCat/extra/custom-assets/script.js
vendored
@ -1,85 +0,0 @@
|
||||
"use strict";
|
||||
var _a, _b;
|
||||
const ID = "bongo-cat";
|
||||
const s = (selector) => `#${ID} ${selector}`;
|
||||
const notes = document.querySelectorAll(".note");
|
||||
for (let note of notes) {
|
||||
(_a = note === null || note === void 0 ? void 0 : note.parentElement) === null || _a === void 0 ? void 0 : _a.appendChild(note.cloneNode(true));
|
||||
(_b = note === null || note === void 0 ? void 0 : note.parentElement) === null || _b === void 0 ? void 0 : _b.appendChild(note.cloneNode(true));
|
||||
}
|
||||
const music = { note: s(".music .note") };
|
||||
const cat = {
|
||||
pawRight: {
|
||||
up: s(".paw-right .up"),
|
||||
down: s(".paw-right .down"),
|
||||
},
|
||||
pawLeft: {
|
||||
up: s(".paw-left .up"),
|
||||
down: s(".paw-left .down"),
|
||||
},
|
||||
};
|
||||
const style = getComputedStyle(document.documentElement);
|
||||
const green = style.getPropertyValue("--green");
|
||||
const pink = style.getPropertyValue("--pink");
|
||||
const blue = style.getPropertyValue("--blue");
|
||||
const orange = style.getPropertyValue("--orange");
|
||||
const cyan = style.getPropertyValue("--cyan");
|
||||
gsap.set(music.note, { scale: 0, autoAlpha: 1 });
|
||||
const animatePawState = (selector) => gsap.fromTo(selector, { autoAlpha: 0 }, {
|
||||
autoAlpha: 1,
|
||||
duration: 0.01,
|
||||
repeatDelay: 0.19,
|
||||
yoyo: true,
|
||||
repeat: -1,
|
||||
});
|
||||
const tl = gsap.timeline();
|
||||
tl.add(animatePawState(cat.pawLeft.up), "start")
|
||||
.add(animatePawState(cat.pawRight.down), "start")
|
||||
.add(animatePawState(cat.pawLeft.down), "start+=0.19")
|
||||
.add(animatePawState(cat.pawRight.up), "start+=0.19")
|
||||
.timeScale(1.6);
|
||||
gsap.from(".terminal-code line", {
|
||||
drawSVG: "0%",
|
||||
duration: 0.1,
|
||||
stagger: 0.1,
|
||||
ease: "none",
|
||||
repeat: -1,
|
||||
});
|
||||
// typing for pipe function doesn't seem to be working for usage when partially applied?
|
||||
const noteElFn = gsap.utils.pipe(gsap.utils.toArray, gsap.utils.shuffle);
|
||||
const noteEls = noteElFn(music.note);
|
||||
const numNotes = noteEls.length / 3;
|
||||
const notesG1 = noteEls.splice(0, numNotes);
|
||||
const notesG2 = noteEls.splice(0, numNotes);
|
||||
const notesG3 = noteEls;
|
||||
const colorizer = gsap.utils.random([green, pink, blue, orange, cyan, "#a3a4ec", "#67b5c0", "#fd7c6e"], true);
|
||||
const rotator = gsap.utils.random(-50, 50, 1, true);
|
||||
const dir = (amt) => `${gsap.utils.random(["-", "+"])}=${amt}`;
|
||||
const animateNotes = (els) => {
|
||||
els.forEach((el) => {
|
||||
gsap.set(el, {
|
||||
stroke: colorizer(),
|
||||
rotation: rotator(),
|
||||
x: gsap.utils.random(-25, 25, 1),
|
||||
});
|
||||
});
|
||||
return gsap.fromTo(els, {
|
||||
autoAlpha: 1,
|
||||
y: 0,
|
||||
scale: 0,
|
||||
}, {
|
||||
duration: 2,
|
||||
autoAlpha: 0,
|
||||
scale: 1,
|
||||
ease: "none",
|
||||
stagger: {
|
||||
from: "random",
|
||||
each: 0.5,
|
||||
},
|
||||
rotation: dir(gsap.utils.random(20, 30, 1)),
|
||||
x: dir(gsap.utils.random(40, 60, 1)),
|
||||
y: gsap.utils.random(-200, -220, 1),
|
||||
onComplete: () => animateNotes(els),
|
||||
});
|
||||
};
|
||||
tl.add(animateNotes(notesG1)).add(animateNotes(notesG2), ">0.05").add(animateNotes(notesG3), ">0.25");
|
@ -1,3 +0,0 @@
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.9.1/gsap.min.js"></script>
|
||||
<script src="{{themeAsset('script.js')}}"></script>
|
||||
</div>
|
@ -1,197 +0,0 @@
|
||||
<div class="container-cat">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 783.55 354.91">
|
||||
<g id="bongo-cat">
|
||||
<g class="head">
|
||||
<path d="M280.4,221l383.8,62.6a171.4,171.4,0,0,0-9.2-40.5,174,174,0,0,0-28.7-50.5,163.3,163.3,0,0,0,3.2-73.8c-11.6-1.9-42,14.2-44.5,17.5-19.6-24-88.5-52.7-153.7-48.1A78.8,78.8,0,0,0,398,67.1c-9.8,2.9-19,29.7-19.4,33.7a320,320,0,0,0-31.7,23.6c-14,11.8-28.9,24.4-42.5,44.3A173,173,0,0,0,280.4,221Z"></path>
|
||||
<path d="M396.6,178.6c.4.9,2.7,6.5,8.5,8.4s13.4-1.2,17.2-7.9c-.9,7.5,3.8,14.3,10.4,16a14.4,14.4,0,0,0,15-5.7"></path>
|
||||
<path d="M474,179.2a6.6,6.6,0,0,0-4.9,3.6,6,6,0,0,0,1.5,7.3,6,6,0,0,0,7.9-1c2.3-2.6,2-7,.2-8s-5.9,1.6-5.7,3.5,1.9,2.8,3.2,2.3,1.1-2.2,1.1-2.3"></path>
|
||||
<path d="M365.4,168.9c0,.3-.8,3.6,1.5,6a5.9,5.9,0,0,0,7.2,1.4,6.1,6.1,0,0,0,2.2-7.7c-1.5-3.1-5.7-4.5-7.3-3.2s-.8,6,1,6.6,3.3-.7,3.3-2.1-1.5-1.8-1.6-1.9"></path>
|
||||
<g class="headphone headphone-right">
|
||||
<g class="speaker">
|
||||
<path d="M400.7,80.2c-14.1-20.8-40.2.3-50.7,15-8.7,12.2-9.7,30.3,2.8,37.3,5.4-9,11.8-15.6,21-26.2A214.1,214.1,0,0,1,400.7,80.2Z"></path>
|
||||
<path d="M381.5,79.4c-6.6-7.5-9.6-5.8-12.3-5.5-16.3,1.3-32,20.3-27.8,33.9a21.8,21.8,0,0,0,5.9,8.5c1.7-2.6,3.5-5.1,5.4-7.7A150.7,150.7,0,0,1,381.5,79.4Z"></path>
|
||||
<path d="M367.3,77.8a13.1,13.1,0,0,0-5.1-1.8c-8.5-.9-18.7,7.5-18.4,16.1a12.8,12.8,0,0,0,2.6,7c3.1-3.3,6.3-6.8,9.6-10.2S363.6,81.3,367.3,77.8Z"></path>
|
||||
</g>
|
||||
<path class="band" d="M515,40.6c-15.9-4.6-57-14.1-104,2.3a166.9,166.9,0,0,0-60.9,37.3"></path>
|
||||
</g>
|
||||
</g>
|
||||
<g class="music music-right">
|
||||
<g class="note">
|
||||
<g>
|
||||
<path d="M368.5,46.5c.5,2.1,1.2,3.5,3.8,6.3s5.1,4.3,6.5,7.2a11.1,11.1,0,0,1,.7,2,10.5,10.5,0,0,1-.7,6.5"></path>
|
||||
<path d="M368.5,46.5a20.8,20.8,0,0,0,2.4,11.7c2.3,4.4,5,5.4,6.8,9.5a17.5,17.5,0,0,1,.4,11"></path>
|
||||
<line x1="368.5" y1="47.7" x2="368.5" y2="92.8"></line>
|
||||
<path d="M368.5,92.8c.1-3.1-4.7-6.3-9-6.3s-8.7,2.7-8.7,5.8,4.8,5.7,8.7,5.8S368.3,95.8,368.5,92.8Z"></path>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M368.5,46.5c.5,2.1,1.2,3.5,3.8,6.3s5.1,4.3,6.5,7.2a11.1,11.1,0,0,1,.7,2,10.5,10.5,0,0,1-.7,6.5"></path>
|
||||
<path d="M368.5,46.5a20.8,20.8,0,0,0,2.4,11.7c2.3,4.4,5,5.4,6.8,9.5a17.5,17.5,0,0,1,.4,11"></path>
|
||||
<line x1="368.5" y1="47.7" x2="368.5" y2="92.8"></line>
|
||||
<path d="M368.5,92.8c.1-3.1-4.7-6.3-9-6.3s-8.7,2.7-8.7,5.8,4.8,5.7,8.7,5.8S368.3,95.8,368.5,92.8Z"></path>
|
||||
</g>
|
||||
</g>
|
||||
<g class="note">
|
||||
<g>
|
||||
<polyline points="350 81.7 350 43.5 382.7 50.7 382.7 89.5"></polyline>
|
||||
<path d="M350,82.3c0-3.1-4.5-5.7-8.2-5.9s-9.3,2.8-9.2,6,4.7,5.7,8.6,5.7S349.9,85.5,350,82.3Z"></path>
|
||||
<path d="M382.7,89.9c0-3.1-4.4-5.7-8.2-5.8s-9.3,2.7-9.2,5.9,4.7,5.7,8.7,5.7S382.7,93.1,382.7,89.9Z"></path>
|
||||
</g>
|
||||
<g>
|
||||
<polyline points="350 81.7 350 43.5 382.7 50.7 382.7 89.5"></polyline>
|
||||
<path d="M350,82.3c0-3.1-4.5-5.7-8.2-5.9s-9.3,2.8-9.2,6,4.7,5.7,8.6,5.7S349.9,85.5,350,82.3Z"></path>
|
||||
<path d="M382.7,89.9c0-3.1-4.4-5.7-8.2-5.8s-9.3,2.7-9.2,5.9,4.7,5.7,8.7,5.7S382.7,93.1,382.7,89.9Z"></path>
|
||||
</g>
|
||||
</g>
|
||||
<g class="note">
|
||||
<polyline points="388.2 73.6 388.2 34.6 354.9 42.6 354.9 82.4"></polyline>
|
||||
<path d="M388.2,74.1c0-3-4.4-5.6-8.1-5.8s-9.2,2.8-9.1,6,4.6,5.6,8.6,5.6S388.2,77.3,388.2,74.1Z"></path>
|
||||
<path d="M354.9,81.9c0-3.1-4.4-5.7-8.2-5.9s-9.3,2.8-9.2,6,4.7,5.7,8.7,5.7S354.9,85.1,354.9,81.9Z"></path>
|
||||
<line x1="354.9" y1="48.4" x2="388.2" y2="40.3"></line>
|
||||
<line x1="354.9" y1="54.6" x2="388.2" y2="47"></line>
|
||||
</g>
|
||||
<g class="note">
|
||||
<g>
|
||||
<path d="M371.8,79.5c0-3.1-4.5-5.8-8.3-5.9s-9.3,2.8-9.2,6,4.7,5.7,8.7,5.7S371.8,82.7,371.8,79.5Z"></path>
|
||||
<line x1="371.8" y1="79.5" x2="371.8" y2="33.3"></line>
|
||||
<path d="M371.8,33.4a26.6,26.6,0,0,0,3.6,7.8c3.7,5.7,7.6,7,8.8,11.6.5,1.7.7,4.4-.9,8.3"></path>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M371.8,79.5c0-3.1-4.5-5.8-8.3-5.9s-9.3,2.8-9.2,6,4.7,5.7,8.7,5.7S371.8,82.7,371.8,79.5Z"></path>
|
||||
<line x1="371.8" y1="79.5" x2="371.8" y2="33.3"></line>
|
||||
<path d="M371.8,33.4a26.6,26.6,0,0,0,3.6,7.8c3.7,5.7,7.6,7,8.8,11.6.5,1.7.7,4.4-.9,8.3"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g class="table">
|
||||
<polygon points="25.3 158.5 783.2 293 513 354.9 25.3 158.5"></polygon>
|
||||
<line x1="25.3" y1="158.5" x2="783.2" y2="293" fill="none" stroke="#8d00fc" stroke-miterlimit="10" stroke-width="4"></line>
|
||||
<line x1="783.2" y1="293" x2="25.3" y2="158.5" fill="none"></line>
|
||||
</g>
|
||||
<polygon class="laptop-base" points="103.2 263.6 258.9 219.3 636.5 294.4 452.1 339 103.2 263.6"></polygon>
|
||||
<g class="laptop-keyboard">
|
||||
<polygon points="369.6 265.6 255.3 244.3 255.5 243.5 264.7 241.9 380.9 262.3 380.8 263.1 369.6 265.6"></polygon>
|
||||
<polygon points="235.9 256.4 219.8 253.2 219.9 252.5 228.7 251 245.3 253.4 245.1 254.2 235.9 256.4"></polygon>
|
||||
<polygon points="473.1 303.7 248.4 258.9 248.6 258.1 257.7 256.6 486.2 300.4 486 301.3 473.1 303.7"></polygon>
|
||||
<polygon points="410.3 300.2 202.7 257.5 202.9 256.8 211.4 255.3 422.4 297.1 422.2 298 410.3 300.2"></polygon>
|
||||
<polygon points="448.5 308.1 427 303.7 427.3 302.8 439.2 301.4 461.2 304.9 461 305.8 448.5 308.1"></polygon>
|
||||
<polygon points="200.1 264.7 186 261.7 186.2 261 194.5 259.5 208.9 261.8 208.8 262.5 200.1 264.7"></polygon>
|
||||
<polygon points="221.1 269.1 206.6 266.1 206.8 265.3 215.4 263.9 230.3 266.2 230.1 267 221.1 269.1"></polygon>
|
||||
<polygon points="361.4 298.9 230 271 230.2 270.3 239.2 268.9 372.7 295.9 372.5 296.7 361.4 298.9"></polygon>
|
||||
<polygon points="442.8 279.2 383.7 268.2 383.9 267.3 395.1 265.7 455.4 275.9 455.2 276.7 442.8 279.2"></polygon>
|
||||
<polygon points="524.6 294.4 458.6 282.1 458.8 281.2 471.3 279.7 538.6 291 538.4 291.9 524.6 294.4"></polygon>
|
||||
<polygon points="424.7 312.4 374.6 301.7 374.8 300.9 385.9 299.5 437 309.3 436.8 310.2 424.7 312.4"></polygon>
|
||||
<polygon points="409.1 277.3 397.6 278.8 397.4 279.6 498.4 299.1 511.8 296.7 512 295.8 409.1 277.3"></polygon>
|
||||
<polygon points="394.2 274.5 394.4 273.6 246.7 246.5 237.7 248.1 237.5 248.8 382.8 276.8 394.2 274.5"></polygon>
|
||||
</g>
|
||||
<g class="paw paw-right">
|
||||
<path class="down" d="M289.1,181.7c-12.1,9.8-20.6,20.7-20.7,32.1-.2,9,3.8,20.4,13.3,25.2s20.1.6,29.6-3.4c13.4-5.7,23.9-14.6,29.4-21.5"></path>
|
||||
<g class="up">
|
||||
<path d="M327.3,170c-.4-1.4-6.3-18.8-23.5-23.5-.8-.2-18.6-4.7-28.9,6.3-8.4,9.1-6,22.5-4.6,30.2a54.3,54.3,0,0,0,8.1,19.9"></path>
|
||||
<g class="pads">
|
||||
<path d="M297.2,154.8c1-.5,2.7-.1,3,.6s-1.4,2.4-2.6,2.1a1.6,1.6,0,0,1-1.1-1.2A1.6,1.6,0,0,1,297.2,154.8Z"></path>
|
||||
<path d="M285.8,159.4c.3-.4,1-1.1,1.7-.8s.9,1.4.8,2.2-1.8,2.1-2.5,1.5S285.2,160.4,285.8,159.4Z"></path>
|
||||
<path d="M276.9,171c.5-.4,2.7-.3,3.2.6s-.6,1.8-1.4,1.8S276.2,171.6,276.9,171Z"></path>
|
||||
<path d="M296.4,168.6c2.3-.9,6.4,6.3,7.6,9s-5.2,4.5-7.4,6-5.1-6.1-5.9-8.3S293.7,169.8,296.4,168.6Z"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<polygon class="terminal-frame" points="93.8 63.3 284.1 73 335.9 230.5 146.2 197.6 93.8 63.3"></polygon>
|
||||
<g class="terminal-code">
|
||||
<line x1="260.2" y1="92.3" x2="212.2" y2="88.7"></line>
|
||||
<line x1="197.3" y1="87.5" x2="145.2" y2="83.5"></line>
|
||||
<line x1="251" y1="104.2" x2="223.4" y2="101.8"></line>
|
||||
<line x1="209.4" y1="100.5" x2="154.4" y2="95.6"></line>
|
||||
<line x1="256.4" y1="117.9" x2="227.5" y2="114.7"></line>
|
||||
<line x1="215.9" y1="113.4" x2="183.5" y2="109.8"></line>
|
||||
<line x1="169.1" y1="108.2" x2="142.9" y2="105.3"></line>
|
||||
<line x1="275.4" y1="132.8" x2="249.4" y2="129.6"></line>
|
||||
<line x1="234.4" y1="127.8" x2="197.3" y2="123.3"></line>
|
||||
<line x1="185.6" y1="121.9" x2="149.1" y2="117.5"></line>
|
||||
<line x1="261" y1="144.6" x2="244.5" y2="142.5"></line>
|
||||
<line x1="235.5" y1="141.3" x2="214.9" y2="138.7"></line>
|
||||
<line x1="203.4" y1="137.2" x2="180.4" y2="134.3"></line>
|
||||
<line x1="169.3" y1="132.9" x2="155.1" y2="131.1"></line>
|
||||
<line x1="264.7" y1="158.3" x2="221.9" y2="152.1"></line>
|
||||
<line x1="208.2" y1="150.1" x2="191.7" y2="147.7"></line>
|
||||
<line x1="291.3" y1="174.3" x2="268.8" y2="170.9"></line>
|
||||
<line x1="257.8" y1="169.2" x2="226.5" y2="164.4"></line>
|
||||
<line x1="217.3" y1="163" x2="185" y2="158.1"></line>
|
||||
<line x1="173.8" y1="156.4" x2="152.9" y2="153.2"></line>
|
||||
<line x1="278.5" y1="185.6" x2="257.3" y2="182.2"></line>
|
||||
<line x1="243.8" y1="179.9" x2="230.3" y2="177.7"></line>
|
||||
<line x1="216.5" y1="175.8" x2="196.7" y2="172.5"></line>
|
||||
<line x2="262.1" y2="196.1" x1="280.5" y1="199.2"></line>
|
||||
<line x2="213.8" y2="187.9" x1="251.1" y1="194.2"></line>
|
||||
<line x2="180.8" y2="182.3" x1="202.7" y1="186"></line>
|
||||
</g>
|
||||
<polygon class="laptop-cover" points="103.2 263.6 452.1 339 360.8 12.4 2 2 103.2 263.6"></polygon>
|
||||
<g class="paw paw-left">
|
||||
<g class="up">
|
||||
<path d="M586.6,208.8c-.6-2.3-4.2-15.6-17.2-22.2-2.7-1.3-12.8-6.4-23.6-1.8s-14.6,16.5-14.8,18.4c-1.2,9-.7,18.4,2.4,26.1,2.4,6,7.5,17.2,9.7,20.2"></path>
|
||||
<g class="pads">
|
||||
<path d="M561.4,194.9a2.7,2.7,0,0,1,3,.5c.4,1-1.4,2.4-2.6,2.2a1.5,1.5,0,0,1-1.1-1.3A1.2,1.2,0,0,1,561.4,194.9Z"></path>
|
||||
<path d="M550.7,200.4c.4-.5,1.1-1.1,1.7-.8a2,2,0,0,1,.8,2.2c-.3,1.2-1.8,2-2.5,1.5S550.1,201.3,550.7,200.4Z"></path>
|
||||
<path d="M541.1,211.1c.5-.4,2.7-.4,3.2.5s-.6,1.8-1.5,1.9S540.4,211.6,541.1,211.1Z"></path>
|
||||
<path d="M560.6,209.2c2.3-.9,6.4,6.3,7.6,9s-5.3,4.5-7.4,6-5.1-6-5.9-8.3S557.9,210.4,560.6,209.2Z"></path>
|
||||
</g>
|
||||
</g>
|
||||
<path class="down" d="M534.1,231.4c-19.7,6-32.9,18.4-34.2,29.1a30.1,30.1,0,0,0,1.7,14.1,24.8,24.8,0,0,0,6.1,8.8c6,5.1,16.8,4,38-3.9a288.7,288.7,0,0,0,46.5-22.1"></path>
|
||||
</g>
|
||||
<g class="headphone headphone-left">
|
||||
<g class="speaker">
|
||||
<path d="M609.5,137.3c-17.1,6.3-20.7,51.4-4.5,67.3,1.4,1.5,5.5,5.5,11.3,5.9,8.2.5,14.5-6.3,16.9-8.9,10.1-11,11.5-27.5,8.1-40.1-1.4-4.8-3.9-14-12.7-19.9C627.4,140.8,617.7,134.3,609.5,137.3Z"></path>
|
||||
<path d="M626.5,196.1c2.7-.4,5.9-2.6,9.3-6,6.6-6.6,6.8-16.6,5.8-24s-4.2-16.1-11.3-19.7a18.7,18.7,0,0,0-10.9-1.9C614,149.3,615.3,192.6,626.5,196.1Z"></path>
|
||||
<path d="M631.6,151c-4.5,3.3-.5,27.1,3.8,28.2s6.9-6.6,6.2-13.1S637.4,153.5,631.6,151Z"></path>
|
||||
</g>
|
||||
<path class="band" d="M638.9,157.7c-4-16.8-25.9-61.9-75.3-95.3A155.5,155.5,0,0,0,515,40.6"></path>
|
||||
</g>
|
||||
<g class="music music-left">
|
||||
<g class="note">
|
||||
<g>
|
||||
<path d="M633.3,119.9c.6,2,1.3,3.5,3.8,6.3s5.2,4.3,6.5,7.2a6.9,6.9,0,0,1,.7,1.9,10.2,10.2,0,0,1-.7,6.6"></path>
|
||||
<path d="M633.3,119.9a23,23,0,0,0,2.4,11.7c2.4,4.3,5.1,5.4,6.8,9.5a16.9,16.9,0,0,1,.5,11"></path>
|
||||
<line x1="633.3" y1="121.1" x2="633.3" y2="166.2"></line>
|
||||
<path d="M633.3,166.2c.2-3.2-4.6-6.3-8.9-6.3s-8.7,2.6-8.7,5.7,4.7,5.7,8.7,5.8S633.1,169.2,633.3,166.2Z"></path>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M633.3,119.9c.6,2,1.3,3.5,3.8,6.3s5.2,4.3,6.5,7.2a6.9,6.9,0,0,1,.7,1.9,10.2,10.2,0,0,1-.7,6.6"></path>
|
||||
<path d="M633.3,119.9a23,23,0,0,0,2.4,11.7c2.4,4.3,5.1,5.4,6.8,9.5a16.9,16.9,0,0,1,.5,11"></path>
|
||||
<line x1="633.3" y1="121.1" x2="633.3" y2="166.2"></line>
|
||||
<path d="M633.3,166.2c.2-3.2-4.6-6.3-8.9-6.3s-8.7,2.6-8.7,5.7,4.7,5.7,8.7,5.8S633.1,169.2,633.3,166.2Z"></path>
|
||||
</g>
|
||||
</g>
|
||||
<g class="note">
|
||||
<g>
|
||||
<polyline points="614.8 155 614.8 116.8 647.5 124 647.5 162.9"></polyline>
|
||||
<path d="M614.8,155.7c0-3.1-4.4-5.7-8.2-5.9s-9.2,2.8-9.2,6,4.7,5.6,8.7,5.6S614.8,158.8,614.8,155.7Z"></path>
|
||||
<path d="M647.5,163.3c.1-3.1-4.4-5.7-8.2-5.9s-9.2,2.8-9.1,6,4.7,5.7,8.6,5.7S647.5,166.5,647.5,163.3Z"></path>
|
||||
</g>
|
||||
<g>
|
||||
<polyline points="614.8 155 614.8 116.8 647.5 124 647.5 162.9"></polyline>
|
||||
<path d="M614.8,155.7c0-3.1-4.4-5.7-8.2-5.9s-9.2,2.8-9.2,6,4.7,5.6,8.7,5.6S614.8,158.8,614.8,155.7Z"></path>
|
||||
<path d="M647.5,163.3c.1-3.1-4.4-5.7-8.2-5.9s-9.2,2.8-9.1,6,4.7,5.7,8.6,5.7S647.5,166.5,647.5,163.3Z"></path>
|
||||
</g>
|
||||
</g>
|
||||
<g class="note">
|
||||
<polyline points="646.5 148.5 646.5 109.4 613.2 117.4 613.2 157.2"></polyline>
|
||||
<path d="M646.5,149c0-3.1-4.4-5.7-8.1-5.8s-9.2,2.7-9.1,5.9,4.7,5.6,8.6,5.6S646.5,152.1,646.5,149Z"></path>
|
||||
<path d="M613.2,156.7c.1-3.1-4.4-5.7-8.2-5.8s-9.3,2.7-9.2,6,4.7,5.6,8.7,5.6S613.2,159.9,613.2,156.7Z"></path>
|
||||
<line x1="613.2" y1="123.2" x2="646.5" y2="115.1"></line>
|
||||
<line x1="613.2" y1="129.4" x2="646.5" y2="121.8"></line>
|
||||
</g>
|
||||
<g class="note">
|
||||
<g>
|
||||
<path d="M636.6,152.9c0-3.2-4.4-5.8-8.2-5.9s-9.3,2.8-9.3,6,4.8,5.7,8.7,5.7S636.6,156.1,636.6,152.9Z"></path>
|
||||
<line x1="636.6" y1="152.9" x2="636.6" y2="106.6"></line>
|
||||
<path d="M636.6,106.8a33.2,33.2,0,0,0,3.6,7.8c3.8,5.7,7.6,6.9,8.9,11.5a13.3,13.3,0,0,1-.9,8.4"></path>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M636.6,152.9c0-3.2-4.4-5.8-8.2-5.9s-9.3,2.8-9.3,6,4.8,5.7,8.7,5.7S636.6,156.1,636.6,152.9Z"></path>
|
||||
<line x1="636.6" y1="152.9" x2="636.6" y2="106.6"></line>
|
||||
<path d="M636.6,106.8a33.2,33.2,0,0,0,3.6,7.8c3.8,5.7,7.6,6.9,8.9,11.5a13.3,13.3,0,0,1-.9,8.4"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
</div>
|
@ -1,79 +0,0 @@
|
||||
|
||||
<style>
|
||||
|
||||
@font-face { font-family: comic; src: url('{{themeAsset('comicboys.otf')}}'); }
|
||||
|
||||
:root {
|
||||
--bg: #1a1e2d;
|
||||
--green: #a5ea9b;
|
||||
--pink: #ff61d8;
|
||||
--blue: #569cfa;
|
||||
--orange: #ffcc81;
|
||||
--cyan: #7ed1e2;
|
||||
}
|
||||
|
||||
body {
|
||||
height: 100vh;
|
||||
width: 100vw;
|
||||
background: var(--bg);
|
||||
place-content: center;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.container-cat {
|
||||
width: 80vw;
|
||||
height: 80vh;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 98%;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
background-position: 50% 50%;
|
||||
}
|
||||
.container-cat svg {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
overflow: visible;
|
||||
filter: blur(8px);
|
||||
}
|
||||
|
||||
#bongo-cat {
|
||||
fill: var(--bg);
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
stroke-width: 4;
|
||||
}
|
||||
#bongo-cat .laptop-cover,
|
||||
#bongo-cat .headphone .band {
|
||||
fill: none;
|
||||
}
|
||||
#bongo-cat .paw, #bongo-cat .head {
|
||||
stroke: var(--orange);
|
||||
}
|
||||
#bongo-cat .laptop-keyboard {
|
||||
stroke-width: 2;
|
||||
}
|
||||
#bongo-cat .terminal-code {
|
||||
stroke-width: 5;
|
||||
}
|
||||
#bongo-cat .music .note,
|
||||
#bongo-cat .laptop-base,
|
||||
#bongo-cat .laptop-cover,
|
||||
#bongo-cat .paw .pads {
|
||||
stroke: var(--pink);
|
||||
}
|
||||
#bongo-cat .table line,
|
||||
#bongo-cat .headphone .band,
|
||||
#bongo-cat .headphone .speaker path:nth-child(3) {
|
||||
stroke: var(--green);
|
||||
}
|
||||
#bongo-cat .terminal-frame,
|
||||
#bongo-cat .laptop-keyboard,
|
||||
#bongo-cat .headphone .speaker path:nth-child(2) {
|
||||
stroke: var(--blue);
|
||||
}
|
||||
#bongo-cat .terminal-code,
|
||||
#bongo-cat .headphone .speaker path:first-child {
|
||||
stroke: var(--cyan);
|
||||
}
|
||||
</style>
|
Before Width: | Height: | Size: 146 KiB |
@ -1,25 +0,0 @@
|
||||
# LittleLink-Custom Bongo Cat Theme
|
||||
Find more themes: https://github.com/JulianPrieber/llc-themes
|
||||
|
||||
* Theme Name: Bongo Cat
|
||||
* Theme Version: 1.4
|
||||
* Theme Date: 2022-09-22
|
||||
* Theme Author: JulianPrieber & MagicLike
|
||||
* Theme Co-Author URI: https://github.com/JulianPrieber
|
||||
* Theme Co-Author URI: https://github.com/MagicLike
|
||||
* Theme License: GPLv3
|
||||
* Source code: https://github.com/LittleLink-Custom/Bongo-Cat
|
||||
|
||||
|
||||
### Used assets:
|
||||
* Built using:
|
||||
* https://github.com/dhg/Skeleton
|
||||
* License: MIT
|
||||
|
||||
*
|
||||
* https://github.com/johnggli/linktree
|
||||
* License: MIT -> https://github.com/johnggli/linktree/blob/master/LICENSE.md
|
||||
|
||||
*
|
||||
* Bongo Cat : Pure Html, Css & Js
|
||||
* License: MIT -> https://codepen.io/carolineartz/details/qBOEzQa
|
101
themes/BongoCat/share.button.css
vendored
@ -1,101 +0,0 @@
|
||||
.share-icon {
|
||||
padding: 0px 8px 3.5px 0px;
|
||||
vertical-align: middle;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
color: #569cfa !important;
|
||||
}
|
||||
|
||||
.sharediv {
|
||||
position:relative;
|
||||
top: 30px;
|
||||
right: 30px;
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
|
||||
.toastdiv {
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
-webkit-align-items: center;
|
||||
align-items: center;
|
||||
-webkit-justify-content: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.toastbox {
|
||||
width: 280px;
|
||||
padding: 10px;
|
||||
background-color: rgba(0, 0, 0, 0.7);
|
||||
color: white;
|
||||
border-radius: 4px;
|
||||
position: fixed;
|
||||
top: 105%;
|
||||
-webkit-transition: transform 0.3s linear;
|
||||
transition: transform 0.3s linear;
|
||||
z-index: 2;
|
||||
text-align: center;
|
||||
}
|
||||
.toastbox.toast-tox--active {
|
||||
-webkit-transform: translateY(-150px);
|
||||
transform: translateY(-150px);
|
||||
}
|
||||
|
||||
.sharebutton,
|
||||
sharebutton {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
height: 48px;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
font-size: 18px;
|
||||
width: 48px;
|
||||
font-weight: 700;
|
||||
line-height: 48px;
|
||||
letter-spacing: 0.1px;
|
||||
white-space: wrap;
|
||||
border: solid #ff61d8 3px;
|
||||
border-radius: 10px;
|
||||
cursor: pointer;
|
||||
color: #569cfa !important;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
/* @media screen and (min-width: 600px) {
|
||||
.sharebutton,
|
||||
sharebutton {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
height: 48px;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
font-size: 18px;
|
||||
width: 150px;
|
||||
font-weight: 700;
|
||||
line-height: 48px;
|
||||
letter-spacing: 0.1px;
|
||||
white-space: wrap;
|
||||
border: solid var(--accentColor) 2px;
|
||||
border-radius: 10px;
|
||||
cursor: pointer;
|
||||
color: #ffffff;
|
||||
background-color: transparent;
|
||||
}
|
||||
.sharebutton-img {
|
||||
position: relative;
|
||||
left: 3px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
} */
|
||||
|
||||
/* @media screen and (max-width: 600px) { */
|
||||
.sharebutton-mb {
|
||||
display: none;
|
||||
}
|
||||
.sharebutton-img {
|
||||
position: relative;
|
||||
left: 3px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
/* } */
|
263
themes/BongoCat/skeleton-auto.css
vendored
@ -1,263 +0,0 @@
|
||||
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
|
||||
- Grid
|
||||
- Base Styles
|
||||
- Background
|
||||
- Typography
|
||||
- Links
|
||||
- Code
|
||||
- Spacing
|
||||
- Utilities
|
||||
- Misc
|
||||
- Credit footer
|
||||
|
||||
*/
|
||||
|
||||
|
||||
/* Grid
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.container {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
text-align: center;
|
||||
margin: 0 auto;
|
||||
box-sizing: border-box; }
|
||||
.column {
|
||||
position: center;
|
||||
width: 100%;
|
||||
float: center;
|
||||
box-sizing: border-box; }
|
||||
|
||||
/* For devices larger than 400px */
|
||||
@media (min-width: 400px) {
|
||||
.container {
|
||||
width: 85%;
|
||||
padding: 0; }
|
||||
}
|
||||
|
||||
/* For devices larger than 550px */
|
||||
@media (min-width: 550px) {
|
||||
.container {
|
||||
width: 80%; }
|
||||
.column,
|
||||
.columns {
|
||||
margin-left: 0; }
|
||||
.column:first-child,
|
||||
.columns:first-child {
|
||||
margin-left: 0; }
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* Base Styles
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* NOTE
|
||||
html is set to 62.5% so that all the REM measurements throughout Skeleton
|
||||
are based on 10px sizing. So basically 1.5rem = 15px :) */
|
||||
|
||||
html {
|
||||
font-size: 200%; }
|
||||
|
||||
:root {
|
||||
--bgColor: #223344;
|
||||
--bgColor2: #090a0f;
|
||||
--accentColor: #FFF;
|
||||
--font: 'comic', sans-serif;
|
||||
--delay: .3s; }
|
||||
|
||||
/* Background
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
min-height: 100vh;
|
||||
font-family: var(--font);
|
||||
background: #1a1e2d;
|
||||
opacity: 0;
|
||||
animation: 1s ease-out var(--delay) 1 transitionAnimation; /* duration/timing-function/delay/iterations/name */
|
||||
animation-fill-mode: forwards;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
position: relative;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
|
||||
/* Animation */
|
||||
@keyframes transitionAnimation {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(-10px);
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes animate {
|
||||
0% {
|
||||
background-position: -500%;
|
||||
}
|
||||
100% {
|
||||
background-position: 500%;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes animStar {
|
||||
from {
|
||||
transform: translateY(0px);
|
||||
}
|
||||
to {
|
||||
transform: translateY(-2000px);
|
||||
}
|
||||
}
|
||||
|
||||
/* Typography
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
h1 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 16px;
|
||||
font-weight: 100;
|
||||
color: #a5ea9b;
|
||||
font-size: 400% !important;
|
||||
line-height: 64px;
|
||||
letter-spacing: 5px !important;}
|
||||
|
||||
|
||||
/* Larger than phablet */
|
||||
@media (min-width: 350px) {
|
||||
h1 { font-size: 48px; line-height: 96px;}
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 0;
|
||||
color: #ffcc81;
|
||||
font-size: 130% !important;
|
||||
width: 100% !important;
|
||||
letter-spacing: 3px !important; }
|
||||
|
||||
|
||||
/* Links
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
a {
|
||||
color: #7ed1e2;
|
||||
text-decoration: none;
|
||||
letter-spacing: 3px !important;
|
||||
}
|
||||
a:hover {
|
||||
color: #7ed1e2; }
|
||||
|
||||
.spacing {
|
||||
padding: 0 10px;
|
||||
padding-top: 50px;
|
||||
}
|
||||
|
||||
/* Code
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
code {
|
||||
padding: .2rem .5rem;
|
||||
margin: 0 .2rem;
|
||||
font-size: 90%;
|
||||
white-space: nowrap;
|
||||
background: #F1F1F1;
|
||||
border: 1px solid #E1E1E1;
|
||||
border-radius: 4px; }
|
||||
pre > code {
|
||||
display: block;
|
||||
padding: 1rem 1.5rem;
|
||||
white-space: pre; }
|
||||
|
||||
/* Spacing
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
button,
|
||||
.button {
|
||||
margin-bottom: 1rem;
|
||||
display: block !important; }
|
||||
input,
|
||||
textarea,
|
||||
select,
|
||||
fieldset {
|
||||
margin-bottom: 1.5rem; }
|
||||
pre,
|
||||
blockquote,
|
||||
dl,
|
||||
figure,
|
||||
p,
|
||||
ol {
|
||||
margin-bottom: 2.5rem; }
|
||||
|
||||
|
||||
/* Utilities
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.u-full-width {
|
||||
width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.u-max-full-width {
|
||||
max-width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.u-pull-right {
|
||||
float: right; }
|
||||
.u-pull-left {
|
||||
float: left; }
|
||||
|
||||
|
||||
/* Misc
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
hr {
|
||||
margin-top: 3rem;
|
||||
margin-bottom: 3.5rem;
|
||||
border-width: 0;
|
||||
border-top: 1px solid #E1E1E1; }
|
||||
|
||||
|
||||
/* ===== Scrollbar CSS ===== */
|
||||
/* Firefox */
|
||||
* {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #171a1d #31363b;
|
||||
}
|
||||
|
||||
/* Chrome, Edge, and Safari */
|
||||
*::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-track {
|
||||
background: #31363b;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-thumb {
|
||||
background-color: #171a1d;
|
||||
border-radius: 30px;
|
||||
border: 3px none #ffffff;
|
||||
}
|
||||
|
||||
|
||||
/* Credit footer
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* Styling for credit footer text */
|
||||
.credit-txt {
|
||||
font-weight: 700;
|
||||
font-size: 80%;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.credit-icon {
|
||||
display: none;
|
||||
right: 5px;
|
||||
}
|
||||
.credit-footer {
|
||||
position: relative;
|
||||
right: 15px;
|
||||
}
|
||||
|
||||
/* Switches text color for credit footer for dark/light mode */
|
||||
|
||||
.credit-txt-clr{
|
||||
color: #FFF !important;
|
||||
}
|
@ -1,21 +0,0 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2022 Julian Prieber
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
106
themes/Dark/animations.css
vendored
@ -1,106 +0,0 @@
|
||||
/* ************************************************************* */
|
||||
/*
|
||||
/* Use this file to add custom CSS animations.
|
||||
/* Delete this file if you wish to use the default animations.
|
||||
/* If you do not want to have animations in your theme,
|
||||
/* remove or comment them and include this file in your theme.
|
||||
/*
|
||||
/* ************************************************************* */
|
||||
|
||||
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
- Entrance animations
|
||||
- Button hover animations
|
||||
- Icon hover animations
|
||||
- Footer hover animations
|
||||
|
||||
*/
|
||||
|
||||
|
||||
|
||||
/* Entrance animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
/* .button-entrance {
|
||||
animation-name: popUp;
|
||||
animation-duration: 1s;
|
||||
animation-fill-mode: both;
|
||||
animation-delay: calc(var(--delay)/10);
|
||||
}
|
||||
|
||||
@keyframes popUp {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: scale3d(0.3, 0.3, 0.3);
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
}
|
||||
} */
|
||||
|
||||
/* .fadein {
|
||||
animation-name: fadein;
|
||||
animation-duration: 3s;
|
||||
animation-fill-mode: both;
|
||||
}
|
||||
|
||||
@keyframes fadein {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
} */
|
||||
|
||||
|
||||
/* Button hover animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* (Also apply to icon) */
|
||||
|
||||
.button-hover, .credit-hover{
|
||||
display:inline-block;
|
||||
-webkit-transform:perspective(1px) translateZ(0);
|
||||
transform:perspective(1px) translateZ(0);
|
||||
box-shadow:0 0 1px rgba(0,0,0,0);
|
||||
-webkit-transition-duration:.1s;
|
||||
transition-duration:.1s;
|
||||
-webkit-transition-property:transform;
|
||||
transition-property:transform
|
||||
}
|
||||
.button-hover:active,
|
||||
.button-hover:focus,
|
||||
.button-hover:hover{
|
||||
-webkit-transform:scale(1.02);
|
||||
transform:scale(1.02)
|
||||
}
|
||||
.credit-hover:active,
|
||||
.credit-hover:focus,
|
||||
.credit-hover:hover{
|
||||
-webkit-transform:scale(1.04);
|
||||
transform:scale(1.04)
|
||||
}
|
||||
|
||||
|
||||
/* Footer hover animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.footer-hover{
|
||||
display:inline-block;
|
||||
-webkit-transform:perspective(1px) translateZ(0);
|
||||
transform:perspective(1px) translateZ(0);
|
||||
box-shadow:0 0 1px rgba(0,0,0,0);
|
||||
-webkit-transition-duration:.3s;
|
||||
transition-duration:.3s;
|
||||
-webkit-transition-property:transform;
|
||||
transition-property:transform;
|
||||
-webkit-transition-timing-function:ease-out;
|
||||
transition-timing-function:ease-out
|
||||
}
|
||||
.footer-hover:active,.footer-hover:focus,.footer-hover:hover{
|
||||
-webkit-transform:translateY(-8px);
|
||||
transform:translateY(-8px)
|
||||
}
|
74
themes/Dark/brands.css
vendored
@ -1,74 +0,0 @@
|
||||
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
|
||||
- Rounded user avatars
|
||||
- Buttons
|
||||
- Brand Styles
|
||||
|
||||
*/
|
||||
|
||||
|
||||
/* Rounded avatars
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
/* Disable this if you don't want rounded avatars for users */
|
||||
.rounded-avatar {
|
||||
border-radius: 50%;
|
||||
-webkit-box-shadow: 0px 0px 0px 3px var(--button-background-color);
|
||||
box-shadow: 0px 0px 0px 3px var(--button-background-color);
|
||||
background-color: var(--button-background-color) !important;
|
||||
width: var(--image-width);
|
||||
height: var(--image-height);
|
||||
}
|
||||
|
||||
.social-icon {
|
||||
font-size: 32px;
|
||||
padding: 10px;
|
||||
}
|
||||
.social-icon-div {
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
.social-icon{color:#fff;}
|
||||
|
||||
/* Buttons
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.button {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-decoration: none;
|
||||
font-size: 1em;
|
||||
color: var(--button-text-color);
|
||||
min-height: 58px;
|
||||
line-height: 58px;
|
||||
cursor: pointer;
|
||||
|
||||
color: var(--button-text-color);
|
||||
background-color: var(--button-background-color);
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
border-radius: 14px;
|
||||
margin-bottom: 13px;
|
||||
}
|
||||
|
||||
|
||||
/* Brand Icons
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.icon {
|
||||
right: 10px;
|
||||
bottom: 2px;
|
||||
position: relative;
|
||||
vertical-align: middle;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
-webkit-filter: grayscale(100%);
|
||||
-moz-filter: grayscale(100%);
|
||||
filter: grayscale(100%);
|
||||
}
|
||||
|
||||
svg {
|
||||
color: white !important;
|
||||
}
|
@ -1,66 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Theme Config
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The theme config allows you to configure how LittleLink Custom should treat your theme.
|
||||
| All settings can either be set to "true" or "false", unless stated otherwise.
|
||||
|
|
||||
| The settings below change how your buttons behave.
|
||||
|
|
||||
*/
|
||||
|
||||
// Some themes may not be compatible with custom buttons created by the Button Editor.
|
||||
// If 'false' the default button CSS is used.
|
||||
'allow_custom_buttons' => 'false',
|
||||
|
||||
'open_links_in_same_tab' => 'false',
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Code
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Custom code allows you to inject customized Blade, PHP, HTML, JavaScript and CSS code.
|
||||
|
|
||||
| In your "extra" folder, you will find 3 separate files for injecting your code to
|
||||
| different places on the final page (head, body, at the end of the body).
|
||||
|
|
||||
| You may also attach custom assets like CSS, JS, or images.
|
||||
| You can find instructions for this in the files in your extra folder.
|
||||
|
|
||||
*/
|
||||
|
||||
'enable_custom_code' => 'false',
|
||||
|
||||
// Disable individual files (only applies if above is 'true').
|
||||
'enable_custom_head' => 'true',
|
||||
'enable_custom_body' => 'true',
|
||||
'enable_custom_body_end' => 'true',
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Icons
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| You may add custom icons to your theme.
|
||||
| These icons are stored under: .../extra/custom-icons.
|
||||
|
|
||||
| You can adjust the file extension types to use other files than just SVGs.
|
||||
|
|
||||
*/
|
||||
|
||||
'use_custom_icons' => 'false',
|
||||
|
||||
// Is not set correct this will cause errors.
|
||||
'custom_icon_extension' => '.svg', // (.png, .jpg ...)
|
||||
|
||||
|
||||
|
||||
];
|
Before Width: | Height: | Size: 563 KiB |
@ -1,20 +0,0 @@
|
||||
# A LittleLink Custom Theme
|
||||
Find more themes: https://github.com/JulianPrieber/llc-themes
|
||||
|
||||
* Theme Name: Dark
|
||||
* Theme Version: 1.1
|
||||
* Theme Date: 2022-11-21
|
||||
* Theme Author: JulianPrieber
|
||||
* Theme Author URI: https://github.com/JulianPrieber
|
||||
* Theme License: MIT
|
||||
* Source code: https://github.com/JulianPrieber/Dark
|
||||
|
||||
|
||||
### Used assets:
|
||||
* Built using:
|
||||
* https://github.com/dhg/Skeleton
|
||||
* License: MIT
|
||||
|
||||
*
|
||||
* https://github.com/ardacarofficial/links-website
|
||||
* License: MIT -> https://github.com/ardacarofficial/links-website/blob/main/LICENSE
|
82
themes/Dark/share.button.css
vendored
@ -1,82 +0,0 @@
|
||||
.share-icon {
|
||||
padding: 0px 5px 3.5px 0px;
|
||||
vertical-align: middle;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.sharediv {
|
||||
position:relative;
|
||||
top: 30px;
|
||||
right: 30px;
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
|
||||
.toastdiv {
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
-webkit-align-items: center;
|
||||
align-items: center;
|
||||
-webkit-justify-content: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.toastbox {
|
||||
width: 280px;
|
||||
padding: 10px;
|
||||
background-color: rgba(0, 0, 0, 0.7);
|
||||
color: white;
|
||||
border-radius: 4px;
|
||||
position: fixed;
|
||||
top: 105%;
|
||||
-webkit-transition: transform 0.3s linear;
|
||||
transition: transform 0.3s linear;
|
||||
z-index: 2;
|
||||
text-align: center;
|
||||
}
|
||||
.toastbox.toast-tox--active {
|
||||
-webkit-transform: translateY(-150px);
|
||||
transform: translateY(-150px);
|
||||
}
|
||||
|
||||
.sharebutton,
|
||||
sharebutton {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
height: 48px;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
font-size: 18px;
|
||||
width: 48px;
|
||||
font-weight: 700;
|
||||
line-height: 48px;
|
||||
letter-spacing: 0.1px;
|
||||
white-space: wrap;
|
||||
border: solid var(--accentColor) 2px;
|
||||
border-radius: 10px;
|
||||
cursor: pointer;
|
||||
color: var(--button-text-color);
|
||||
background-color: var(--button-background-color);
|
||||
}
|
||||
|
||||
sharebutton:hover,
|
||||
.sharebutton:hover {
|
||||
color: #000000;
|
||||
background-color: #FFF;
|
||||
}
|
||||
.sharebutton:hover .share-icon {
|
||||
-webkit-filter: invert(100%);
|
||||
-moz-filter: invert(100%);
|
||||
filter: invert(100%);
|
||||
}
|
||||
|
||||
|
||||
.sharebutton-mb {
|
||||
display: none;
|
||||
}
|
||||
.sharebutton-img {
|
||||
position: relative;
|
||||
left: 3px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
283
themes/Dark/skeleton-auto.css
vendored
@ -1,283 +0,0 @@
|
||||
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
|
||||
- Grid
|
||||
- Base Styles
|
||||
- Background
|
||||
- Typography
|
||||
- Links
|
||||
- Code
|
||||
- Spacing
|
||||
- Utilities
|
||||
- Misc
|
||||
- Credit footer
|
||||
|
||||
*/
|
||||
|
||||
|
||||
@import url('https://fonts.bunny.net/css?family=Roboto:400,700&display=swap');
|
||||
|
||||
|
||||
/* Grid
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.container {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
text-align: center;
|
||||
margin: 0 auto;
|
||||
box-sizing: border-box; }
|
||||
.column {
|
||||
position: center;
|
||||
width: 100%;
|
||||
float: center;
|
||||
box-sizing: border-box; }
|
||||
|
||||
/* For devices larger than 400px */
|
||||
@media (min-width: 400px) {
|
||||
.container {
|
||||
width: 85%;
|
||||
padding: 0; }
|
||||
}
|
||||
|
||||
/* For devices larger than 550px */
|
||||
@media (min-width: 550px) {
|
||||
.container {
|
||||
width: 80%; }
|
||||
.column,
|
||||
.columns {
|
||||
margin-left: 0; }
|
||||
.column:first-child,
|
||||
.columns:first-child {
|
||||
margin-left: 0; }
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* Base Styles
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* NOTE
|
||||
html is set to 62.5% so that all the REM measurements throughout Skeleton
|
||||
are based on 10px sizing. So basically 1.5rem = 15px :) */
|
||||
|
||||
html {
|
||||
font-size: 100%; }
|
||||
|
||||
/* From the :root element you can easily change the colors of the design, its size and so on. */
|
||||
:root {
|
||||
|
||||
/* You can change the font family in the whole design here. (You need to add the font family to the codes.) */
|
||||
--font-family: 'Inter', sans-serif;
|
||||
|
||||
/* You can change the font size here, is proportional to all texts. */
|
||||
--font-size: 16px;
|
||||
|
||||
/* You can change the background color by typing the color code. (If you do not enter a background-image image, the background-color will be active.) */
|
||||
--background-color: #000;
|
||||
--background-image: url('https://raw.githubusercontent.com/JulianPrieber/Dark/main/wallpaper.png');
|
||||
|
||||
/* You can change the frame thickness and color of the picture by typing the number of pixels and the color code. */
|
||||
--image-border-color: #1f232e;
|
||||
--image-border-px: 3px;
|
||||
|
||||
/* You can change the width and size of the picture by typing the number of pixels. */
|
||||
--image-width: 140px;
|
||||
--image-height: 140px;
|
||||
|
||||
/* You can change the colors of the title and description section by typing the color codes. */
|
||||
--title-color: #fff;
|
||||
--description-color: #fff;
|
||||
|
||||
/* You can change the colors of social media icons by changing the color code. */
|
||||
--svg-color: #fff;
|
||||
|
||||
/* You can change the background, text color and active color of the menu by changing the color codes. */
|
||||
--menu-background-color: #1f232e;
|
||||
--menu-text-color: #fff;
|
||||
--menu-active-text-color: #8ecae6;
|
||||
|
||||
/* You can change the button's background, text color and active color by changing the color codes. */
|
||||
--button-background-color: #1f232e;
|
||||
--button-text-color: #fff;
|
||||
--button-text-hover-color: #8ecae6;
|
||||
|
||||
/* You can change the background, text color and active color of the text field by changing the color codes. */
|
||||
--textarea-background-color: #1f232e;
|
||||
--textarea-text-color: #fff;
|
||||
--textarea-link-text-color: #8ecae6;
|
||||
|
||||
/* You can change the background, text color and active color of the footer area by changing the color codes. */
|
||||
--footer-background-color: #1f232e;
|
||||
--footer-text-color: #fff;
|
||||
--footer-link-text-color: #8ecae6;
|
||||
}
|
||||
|
||||
/* Background
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
body {
|
||||
min-height: 100vh;
|
||||
font-family: var(--font-family) !important;
|
||||
background-color: var(--background-color);
|
||||
background-image: var(--background-image);
|
||||
color: var(--title-color);
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
font-size: var(--font-size);
|
||||
line-height: 1.5;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
|
||||
/* Animation */
|
||||
@keyframes transitionAnimation {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(-10px);
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes animate {
|
||||
0% {
|
||||
background-position: -500%;
|
||||
}
|
||||
100% {
|
||||
background-position: 500%;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes animStar {
|
||||
from {
|
||||
transform: translateY(0px);
|
||||
}
|
||||
to {
|
||||
transform: translateY(-2000px);
|
||||
}
|
||||
}
|
||||
|
||||
/* Typography
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
h1 {
|
||||
color: var(--title-color);
|
||||
font-size: 1.9em;
|
||||
font-weight: var(--font-weight);
|
||||
}
|
||||
|
||||
p {
|
||||
color: var(--description-color);
|
||||
font-size: 1.2em;
|
||||
font-weight: var(--font-weight);
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
|
||||
/* Links
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
a {
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
color: var(--button-text-hover-color); }
|
||||
|
||||
.spacing {
|
||||
padding: 0 10px;
|
||||
padding-top: 50px;
|
||||
}
|
||||
|
||||
/* Code
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
code {
|
||||
padding: .2rem .5rem;
|
||||
margin: 0 .2rem;
|
||||
font-size: 90%;
|
||||
white-space: nowrap;
|
||||
background: #F1F1F1;
|
||||
border: 1px solid #E1E1E1;
|
||||
border-radius: 4px; }
|
||||
pre > code {
|
||||
display: block;
|
||||
padding: 1rem 1.5rem;
|
||||
white-space: pre; }
|
||||
|
||||
/* Spacing
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
button,
|
||||
.button {
|
||||
margin-bottom: 1rem;
|
||||
display: block !important; }
|
||||
input,
|
||||
textarea,
|
||||
select,
|
||||
fieldset {
|
||||
margin-bottom: 1.5rem; }
|
||||
pre,
|
||||
blockquote,
|
||||
dl,
|
||||
figure,
|
||||
p,
|
||||
ol {
|
||||
margin-bottom: 2.5rem; }
|
||||
|
||||
|
||||
/* Utilities
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.u-full-width {
|
||||
width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.u-max-full-width {
|
||||
max-width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.u-pull-right {
|
||||
float: right; }
|
||||
.u-pull-left {
|
||||
float: left; }
|
||||
|
||||
|
||||
/* Misc
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
hr {
|
||||
margin-top: 3rem;
|
||||
margin-bottom: 3.5rem;
|
||||
border-width: 0;
|
||||
border-top: 1px solid #E1E1E1; }
|
||||
|
||||
|
||||
/* ===== Hidden Scrollbar ===== */
|
||||
* {
|
||||
-ms-overflow-style: none; /* Internet Explorer 10+ */
|
||||
scrollbar-width: none; /* Firefox */ }
|
||||
*::-webkit-scrollbar {
|
||||
display: none; /* Safari and Chrome */ }
|
||||
|
||||
|
||||
/* Credit footer
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* Styling for credit footer text */
|
||||
.credit-txt {
|
||||
font-weight: 700;
|
||||
font-size: 15px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.credit-icon {
|
||||
display: none;
|
||||
right: 5px;
|
||||
}
|
||||
.credit-footer {
|
||||
position: relative;
|
||||
right: 15px;
|
||||
}
|
||||
|
||||
/* Switches text color for credit footer for dark/light mode */
|
||||
|
||||
.credit-txt-clr{
|
||||
color: #FFF !important;
|
||||
}
|
||||
|
||||
|
Before Width: | Height: | Size: 138 KiB |
@ -1,21 +0,0 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2022 Julian Prieber
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
101
themes/Dawn/animations.css
vendored
@ -1,101 +0,0 @@
|
||||
/* ************************************************************* */
|
||||
/*
|
||||
/* Use this file to add custom CSS animations.
|
||||
/* Delete this file if you wish to use the default animations.
|
||||
/* If you do not want to have animations in your theme,
|
||||
/* remove or comment them and include this file in your theme.
|
||||
/*
|
||||
/* ************************************************************* */
|
||||
|
||||
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
- Entrance animations
|
||||
- Button hover animations
|
||||
- Icon hover animations
|
||||
- Footer hover animations
|
||||
|
||||
*/
|
||||
|
||||
|
||||
|
||||
/* Entrance animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.button-entrance {
|
||||
animation-name: popUp;
|
||||
animation-duration: 1s;
|
||||
animation-fill-mode: both;
|
||||
/* Used to start button entrance animation one after another */
|
||||
animation-delay: calc(var(--delay)/10);
|
||||
}
|
||||
|
||||
@keyframes popUp {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: scale3d(0.3, 0.3, 0.3);
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.fadein {
|
||||
animation-name: fadein;
|
||||
animation-duration: 3s;
|
||||
animation-fill-mode: both;
|
||||
}
|
||||
|
||||
@keyframes fadein {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Button hover animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* (Also apply to icon) */
|
||||
|
||||
.button-hover, .credit-hover{
|
||||
display:inline-block;
|
||||
-webkit-transform:perspective(1px) translateZ(0);
|
||||
transform:perspective(1px) translateZ(0);
|
||||
box-shadow:0 0 1px rgba(0,0,0,0);
|
||||
-webkit-transition-duration:.1s;
|
||||
transition-duration:.1s;
|
||||
-webkit-transition-property:transform;
|
||||
transition-property:transform
|
||||
}
|
||||
.button-hover:active,.credit-hover:active,
|
||||
.button-hover:focus,.credit-hover:focus,
|
||||
.button-hover:hover,.credit-hover:hover{
|
||||
-webkit-transform:scale(1.02);
|
||||
transform:scale(1.02)
|
||||
}
|
||||
|
||||
|
||||
/* Footer hover animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.footer-hover{
|
||||
display:inline-block;
|
||||
-webkit-transform:perspective(1px) translateZ(0);
|
||||
transform:perspective(1px) translateZ(0);
|
||||
box-shadow:0 0 1px rgba(0,0,0,0);
|
||||
-webkit-transition-duration:.3s;
|
||||
transition-duration:.3s;
|
||||
-webkit-transition-property:transform;
|
||||
transition-property:transform;
|
||||
-webkit-transition-timing-function:ease-out;
|
||||
transition-timing-function:ease-out
|
||||
}
|
||||
.footer-hover:active,.footer-hover:focus,.footer-hover:hover{
|
||||
-webkit-transform:translateY(-8px);
|
||||
transform:translateY(-8px)
|
||||
}
|
Before Width: | Height: | Size: 194 KiB |
87
themes/Dawn/brands.css
vendored
@ -1,87 +0,0 @@
|
||||
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
|
||||
- Rounded user avatars
|
||||
- Buttons
|
||||
- Brand Styles
|
||||
|
||||
*/
|
||||
|
||||
|
||||
/* Rounded avatars
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
/* Disable this if you don't want rounded avatars for users */
|
||||
.rounded-avatar {
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.social-icon {
|
||||
font-size: 32px;
|
||||
padding: 10px;
|
||||
}
|
||||
.social-icon-div {
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
.social-icon{color:#fff;}
|
||||
|
||||
/* Buttons
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
:root {
|
||||
--bgColor: #223344;
|
||||
--bgColor2: #090a0f;
|
||||
--accentColor: #FFF;
|
||||
--font: 'Karla', sans-serif;
|
||||
--delay: .3s; }
|
||||
|
||||
.button {
|
||||
position: relative;
|
||||
background-color: transparent;
|
||||
color: var(--accentColor);
|
||||
border: solid var(--accentColor) 2px;
|
||||
border-radius: 10px;
|
||||
font-size: 1rem;
|
||||
text-align: center;
|
||||
display: block;
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
margin-bottom: 10px;
|
||||
padding: 10px; /* 17px */
|
||||
text-decoration: none;
|
||||
/* transition: all .25s cubic-bezier(.08, .59, .29, .99); */
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
|
||||
@media (hover: hover) {
|
||||
.button:hover {
|
||||
background-color: var(--accentColor);
|
||||
color: var(--bgColor);
|
||||
}
|
||||
}
|
||||
|
||||
.button:active {
|
||||
background-color: var(--accentColor);
|
||||
color: var(--bgColor);
|
||||
}
|
||||
|
||||
|
||||
/* Brand Icons
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.icon {
|
||||
padding: 0px 8px 3.5px 0px;
|
||||
vertical-align: middle;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
-webkit-filter: grayscale(100%);
|
||||
-moz-filter: grayscale(100%);
|
||||
filter: grayscale(100%);
|
||||
}
|
||||
|
||||
.button:hover .icon {
|
||||
-webkit-filter: invert(100%) grayscale(100%);
|
||||
-moz-filter: invert(100%) grayscale(100%);
|
||||
filter: invert(100%) grayscale(100%);
|
||||
}
|
@ -1,66 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Theme Config
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The theme config allows you to configure how LittleLink Custom should treat your theme.
|
||||
| All settings can either be set to "true" or "false", unless stated otherwise.
|
||||
|
|
||||
| The settings below change how your buttons behave.
|
||||
|
|
||||
*/
|
||||
|
||||
// Some themes may not be compatible with custom buttons created by the Button Editor.
|
||||
// If 'false' the default button CSS is used.
|
||||
'allow_custom_buttons' => 'false',
|
||||
|
||||
'open_links_in_same_tab' => 'false',
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Code
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Custom code allows you to inject customized Blade, PHP, HTML, JavaScript and CSS code.
|
||||
|
|
||||
| In your "extra" folder, you will find 3 separate files for injecting your code to
|
||||
| different places on the final page (head, body, at the end of the body).
|
||||
|
|
||||
| You may also attach custom assets like CSS, JS, or images.
|
||||
| You can find instructions for this in the files in your extra folder.
|
||||
|
|
||||
*/
|
||||
|
||||
'enable_custom_code' => 'false',
|
||||
|
||||
// Disable individual files (only applies if above is 'true').
|
||||
'enable_custom_head' => 'true',
|
||||
'enable_custom_body' => 'true',
|
||||
'enable_custom_body_end' => 'true',
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Icons
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| You may add custom icons to your theme.
|
||||
| These icons are stored under: .../extra/custom-icons.
|
||||
|
|
||||
| You can adjust the file extension types to use other files than just SVGs.
|
||||
|
|
||||
*/
|
||||
|
||||
'use_custom_icons' => 'false',
|
||||
|
||||
// Is not set correct this will cause errors.
|
||||
'custom_icon_extension' => '.svg', // (.png, .jpg ...)
|
||||
|
||||
|
||||
|
||||
];
|
Before Width: | Height: | Size: 479 KiB |
@ -1,20 +0,0 @@
|
||||
# A LittleLink Custom Theme
|
||||
Find more themes: https://github.com/JulianPrieber/llc-themes
|
||||
|
||||
* Theme Name: Dawn
|
||||
* Theme Version: 1.1
|
||||
* Theme Date: 2022-12-01
|
||||
* Theme Author: JulianPrieber
|
||||
* Theme Author URI: https://github.com/JulianPrieber
|
||||
* Theme License: MIT
|
||||
* Source code: https://github.com/JulianPrieber/Dawn
|
||||
|
||||
|
||||
### Used assets:
|
||||
* Built using:
|
||||
* https://github.com/dhg/Skeleton
|
||||
* License: MIT
|
||||
|
||||
*
|
||||
* https://github.com/johnggli/linktree
|
||||
* License: MIT -> https://github.com/johnggli/linktree/blob/master/LICENSE.md
|
111
themes/Dawn/share.button.css
vendored
@ -1,111 +0,0 @@
|
||||
.share-icon {
|
||||
padding: 0px 8px 3.5px 0px;
|
||||
vertical-align: middle;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
-webkit-filter: invert(100%);
|
||||
-moz-filter: invert(100%);
|
||||
filter: invert(100%);
|
||||
}
|
||||
|
||||
.sharediv {
|
||||
position:relative;
|
||||
top: 30px;
|
||||
right: 30px;
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
|
||||
.toastdiv {
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
-webkit-align-items: center;
|
||||
align-items: center;
|
||||
-webkit-justify-content: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.toastbox {
|
||||
width: 280px;
|
||||
padding: 10px;
|
||||
background-color: rgba(0, 0, 0, 0.7);
|
||||
color: white;
|
||||
border-radius: 4px;
|
||||
position: fixed;
|
||||
top: 105%;
|
||||
-webkit-transition: transform 0.3s linear;
|
||||
transition: transform 0.3s linear;
|
||||
z-index: 2;
|
||||
text-align: center;
|
||||
}
|
||||
.toastbox.toast-tox--active {
|
||||
-webkit-transform: translateY(-150px);
|
||||
transform: translateY(-150px);
|
||||
}
|
||||
|
||||
.sharebutton,
|
||||
sharebutton {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
height: 48px;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
font-size: 18px;
|
||||
width: 48px;
|
||||
font-weight: 700;
|
||||
line-height: 48px;
|
||||
letter-spacing: 0.1px;
|
||||
white-space: wrap;
|
||||
border: solid var(--accentColor) 2px;
|
||||
border-radius: 10px;
|
||||
cursor: pointer;
|
||||
color: #ffffff;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 600px) {
|
||||
.sharebutton,
|
||||
sharebutton {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
height: 48px;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
font-size: 18px;
|
||||
width: 150px;
|
||||
font-weight: 700;
|
||||
line-height: 48px;
|
||||
letter-spacing: 0.1px;
|
||||
white-space: wrap;
|
||||
border: solid var(--accentColor) 2px;
|
||||
border-radius: 10px;
|
||||
cursor: pointer;
|
||||
color: #ffffff;
|
||||
background-color: transparent;
|
||||
}
|
||||
.sharebutton-img {
|
||||
position: relative;
|
||||
left: 3px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
}
|
||||
sharebutton:hover,
|
||||
.sharebutton:hover {
|
||||
color: #000000;
|
||||
background-color: #FFF;
|
||||
}
|
||||
.sharebutton:hover .share-icon {
|
||||
filter: none !important;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 600px) {
|
||||
.sharebutton-mb {
|
||||
display: none;
|
||||
}
|
||||
.sharebutton-img {
|
||||
position: relative;
|
||||
left: 3px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
}
|
824
themes/Dawn/skeleton-auto.css
vendored
@ -1,824 +0,0 @@
|
||||
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
|
||||
- Grid
|
||||
- Base Styles
|
||||
- Background
|
||||
- Typography
|
||||
- Links
|
||||
- Code
|
||||
- Spacing
|
||||
- Utilities
|
||||
- Misc
|
||||
- Credit footer
|
||||
|
||||
*/
|
||||
|
||||
|
||||
@import url('https://fonts.bunny.net/css?family=Karla:400,700&display=swap');
|
||||
|
||||
|
||||
/* Grid
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.container {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
text-align: center;
|
||||
margin: 0 auto;
|
||||
box-sizing: border-box; }
|
||||
.column {
|
||||
position: center;
|
||||
width: 100%;
|
||||
float: center;
|
||||
box-sizing: border-box; }
|
||||
|
||||
/* For devices larger than 400px */
|
||||
@media (min-width: 400px) {
|
||||
.container {
|
||||
width: 85%;
|
||||
padding: 0; }
|
||||
}
|
||||
|
||||
/* For devices larger than 550px */
|
||||
@media (min-width: 550px) {
|
||||
.container {
|
||||
width: 80%; }
|
||||
.column,
|
||||
.columns {
|
||||
margin-left: 0; }
|
||||
.column:first-child,
|
||||
.columns:first-child {
|
||||
margin-left: 0; }
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* Base Styles
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* NOTE
|
||||
html is set to 62.5% so that all the REM measurements throughout Skeleton
|
||||
are based on 10px sizing. So basically 1.5rem = 15px :) */
|
||||
|
||||
html {
|
||||
font-size: 100%; }
|
||||
|
||||
:root {
|
||||
--bgColor: #223344;
|
||||
--bgColor2: #090a0f;
|
||||
--accentColor: #FFF;
|
||||
--font: 'Karla', sans-serif;
|
||||
--delay: .3s; }
|
||||
|
||||
/* Background
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
min-height: 100vh;
|
||||
font-family: var(--font);
|
||||
background: radial-gradient(ellipse at bottom, var(--bgColor) 0%, var(--bgColor2) 100%);
|
||||
background-image: url('https://raw.githubusercontent.com/JulianPrieber/Dawn/main/background.jpg');
|
||||
opacity: 0;
|
||||
animation: 1s ease-out var(--delay) 1 transitionAnimation; /* duration/timing-function/delay/iterations/name */
|
||||
animation-fill-mode: forwards;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
position: relative;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
|
||||
/* Animation */
|
||||
@keyframes transitionAnimation {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(-10px);
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes animate {
|
||||
0% {
|
||||
background-position: -500%;
|
||||
}
|
||||
100% {
|
||||
background-position: 500%;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes animStar {
|
||||
from {
|
||||
transform: translateY(0px);
|
||||
}
|
||||
to {
|
||||
transform: translateY(-2000px);
|
||||
}
|
||||
}
|
||||
|
||||
/* Typography
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
h1 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 16px;
|
||||
font-weight: 400; }
|
||||
h1 { font-size:24px; line-height: 64px; letter-spacing: 0;}
|
||||
|
||||
|
||||
/* Larger than phablet */
|
||||
@media (min-width: 350px) {
|
||||
h1 { font-size: 48px; line-height: 96px;}
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 0; }
|
||||
|
||||
|
||||
/* Links
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
a {
|
||||
color: #0085FF;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
color: #0085FF; }
|
||||
|
||||
.spacing {
|
||||
padding: 0 10px;
|
||||
padding-top: 50px;
|
||||
}
|
||||
|
||||
/* Code
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
code {
|
||||
padding: .2rem .5rem;
|
||||
margin: 0 .2rem;
|
||||
font-size: 90%;
|
||||
white-space: nowrap;
|
||||
background: #F1F1F1;
|
||||
border: 1px solid #E1E1E1;
|
||||
border-radius: 4px; }
|
||||
pre > code {
|
||||
display: block;
|
||||
padding: 1rem 1.5rem;
|
||||
white-space: pre; }
|
||||
|
||||
/* Spacing
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
button,
|
||||
.button {
|
||||
margin-bottom: 1rem;
|
||||
display: block !important; }
|
||||
input,
|
||||
textarea,
|
||||
select,
|
||||
fieldset {
|
||||
margin-bottom: 1.5rem; }
|
||||
pre,
|
||||
blockquote,
|
||||
dl,
|
||||
figure,
|
||||
p,
|
||||
ol {
|
||||
margin-bottom: 2.5rem; }
|
||||
|
||||
|
||||
/* Utilities
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.u-full-width {
|
||||
width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.u-max-full-width {
|
||||
max-width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.u-pull-right {
|
||||
float: right; }
|
||||
.u-pull-left {
|
||||
float: left; }
|
||||
|
||||
|
||||
/* Misc
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
hr {
|
||||
margin-top: 3rem;
|
||||
margin-bottom: 3.5rem;
|
||||
border-width: 0;
|
||||
border-top: 1px solid #E1E1E1; }
|
||||
|
||||
|
||||
/* ===== Scrollbar CSS ===== */
|
||||
/* Firefox */
|
||||
* {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #171a1d #31363b;
|
||||
}
|
||||
|
||||
/* Chrome, Edge, and Safari */
|
||||
*::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-track {
|
||||
background: #31363b;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-thumb {
|
||||
background-color: #171a1d;
|
||||
border-radius: 30px;
|
||||
border: 3px none #ffffff;
|
||||
}
|
||||
|
||||
|
||||
/* Credit footer
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* Styling for credit footer text */
|
||||
.credit-txt {
|
||||
font-weight: 700;
|
||||
font-size: 15px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.credit-icon {
|
||||
display: none;
|
||||
right: 5px;
|
||||
}
|
||||
.credit-footer {
|
||||
position: relative;
|
||||
right: 15px;
|
||||
}
|
||||
|
||||
/* Switches text color for credit footer for dark/light mode */
|
||||
|
||||
.credit-txt-clr{
|
||||
color: #FFF !important;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*-----------------------parallax-----------------------*/
|
||||
#object1 {
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
background: transparent;
|
||||
animation: animStar 120s linear infinite;
|
||||
|
||||
box-shadow: 779px 1331px #fff, 324px 42px #fff, 303px 586px #fff,
|
||||
1312px 276px #fff, 451px 625px #fff, 521px 1931px #fff, 1087px 1871px #fff,
|
||||
36px 1546px #fff, 132px 934px #fff, 1698px 901px #fff, 1418px 664px #fff,
|
||||
1448px 1157px #fff, 1084px 232px #fff, 347px 1776px #fff, 1722px 243px #fff,
|
||||
1629px 835px #fff, 479px 969px #fff, 1231px 960px #fff, 586px 384px #fff,
|
||||
164px 527px #fff, 8px 646px #fff, 1150px 1126px #fff, 665px 1357px #fff,
|
||||
1556px 1982px #fff, 1260px 1961px #fff, 1675px 1741px #fff,
|
||||
1843px 1514px #fff, 718px 1628px #fff, 242px 1343px #fff, 1497px 1880px #fff,
|
||||
1364px 230px #fff, 1739px 1302px #fff, 636px 959px #fff, 304px 686px #fff,
|
||||
614px 751px #fff, 1935px 816px #fff, 1428px 60px #fff, 355px 335px #fff,
|
||||
1594px 158px #fff, 90px 60px #fff, 1553px 162px #fff, 1239px 1825px #fff,
|
||||
1945px 587px #fff, 749px 1785px #fff, 1987px 1172px #fff, 1301px 1237px #fff,
|
||||
1039px 342px #fff, 1585px 1481px #fff, 995px 1048px #fff, 524px 932px #fff,
|
||||
214px 413px #fff, 1701px 1300px #fff, 1037px 1613px #fff, 1871px 996px #fff,
|
||||
1360px 1635px #fff, 1110px 1313px #fff, 412px 1783px #fff, 1949px 177px #fff,
|
||||
903px 1854px #fff, 700px 1936px #fff, 378px 125px #fff, 308px 834px #fff,
|
||||
1118px 962px #fff, 1350px 1929px #fff, 781px 1811px #fff, 561px 137px #fff,
|
||||
757px 1148px #fff, 1670px 1979px #fff, 343px 739px #fff, 945px 795px #fff,
|
||||
576px 1903px #fff, 1078px 1436px #fff, 1583px 450px #fff, 1366px 474px #fff,
|
||||
297px 1873px #fff, 192px 162px #fff, 1624px 1633px #fff, 59px 453px #fff,
|
||||
82px 1872px #fff, 1933px 498px #fff, 1966px 1974px #fff, 1975px 1688px #fff,
|
||||
779px 314px #fff, 1858px 1543px #fff, 73px 1507px #fff, 1693px 975px #fff,
|
||||
1683px 108px #fff, 1768px 1654px #fff, 654px 14px #fff, 494px 171px #fff,
|
||||
1689px 1895px #fff, 1660px 263px #fff, 1031px 903px #fff, 1203px 1393px #fff,
|
||||
1333px 1421px #fff, 1113px 41px #fff, 1206px 1645px #fff, 1325px 1635px #fff,
|
||||
142px 388px #fff, 572px 215px #fff, 1535px 296px #fff, 1419px 407px #fff,
|
||||
1379px 1003px #fff, 329px 469px #fff, 1791px 1652px #fff, 935px 1802px #fff,
|
||||
1330px 1820px #fff, 421px 1933px #fff, 828px 365px #fff, 275px 316px #fff,
|
||||
707px 960px #fff, 1605px 1554px #fff, 625px 58px #fff, 717px 1697px #fff,
|
||||
1669px 246px #fff, 1925px 322px #fff, 1154px 1803px #fff, 1929px 295px #fff,
|
||||
1248px 240px #fff, 1045px 1755px #fff, 166px 942px #fff, 1888px 1773px #fff,
|
||||
678px 1963px #fff, 1370px 569px #fff, 1974px 1400px #fff, 1786px 460px #fff,
|
||||
51px 307px #fff, 784px 1400px #fff, 730px 1258px #fff, 1712px 393px #fff,
|
||||
416px 170px #fff, 1797px 1932px #fff, 572px 219px #fff, 1557px 1856px #fff,
|
||||
218px 8px #fff, 348px 1334px #fff, 469px 413px #fff, 385px 1738px #fff,
|
||||
1357px 1818px #fff, 240px 942px #fff, 248px 1847px #fff, 1535px 806px #fff,
|
||||
236px 1514px #fff, 1429px 1556px #fff, 73px 1633px #fff, 1398px 1121px #fff,
|
||||
671px 1301px #fff, 1404px 1663px #fff, 740px 1018px #fff, 1600px 377px #fff,
|
||||
785px 514px #fff, 112px 1084px #fff, 1915px 1887px #fff, 1463px 1848px #fff,
|
||||
687px 1115px #fff, 1268px 1768px #fff, 1729px 1425px #fff,
|
||||
1284px 1022px #fff, 801px 974px #fff, 1975px 1317px #fff, 1354px 834px #fff,
|
||||
1446px 1484px #fff, 1283px 1786px #fff, 11px 523px #fff, 1842px 236px #fff,
|
||||
1355px 654px #fff, 429px 7px #fff, 1033px 1128px #fff, 157px 297px #fff,
|
||||
545px 635px #fff, 52px 1080px #fff, 827px 1520px #fff, 1121px 490px #fff,
|
||||
9px 309px #fff, 1744px 1586px #fff, 1014px 417px #fff, 1534px 524px #fff,
|
||||
958px 552px #fff, 1403px 1496px #fff, 387px 703px #fff, 1522px 548px #fff,
|
||||
1355px 282px #fff, 1532px 601px #fff, 1838px 790px #fff, 290px 259px #fff,
|
||||
295px 598px #fff, 1601px 539px #fff, 1561px 1272px #fff, 34px 1922px #fff,
|
||||
1024px 543px #fff, 467px 369px #fff, 722px 333px #fff, 1976px 1255px #fff,
|
||||
766px 983px #fff, 1582px 1285px #fff, 12px 512px #fff, 617px 1410px #fff,
|
||||
682px 577px #fff, 1334px 1438px #fff, 439px 327px #fff, 1617px 1661px #fff,
|
||||
673px 129px #fff, 794px 941px #fff, 1386px 1902px #fff, 37px 1353px #fff,
|
||||
1467px 1353px #fff, 416px 18px #fff, 187px 344px #fff, 200px 1898px #fff,
|
||||
1491px 1619px #fff, 811px 347px #fff, 924px 1827px #fff, 945px 217px #fff,
|
||||
1735px 1228px #fff, 379px 1890px #fff, 79px 761px #fff, 825px 1837px #fff,
|
||||
1980px 1558px #fff, 1308px 1573px #fff, 1488px 1726px #fff,
|
||||
382px 1208px #fff, 522px 595px #fff, 1277px 1898px #fff, 354px 552px #fff,
|
||||
161px 1784px #fff, 614px 251px #fff, 526px 1576px #fff, 17px 212px #fff,
|
||||
179px 996px #fff, 467px 1208px #fff, 1944px 1838px #fff, 1140px 1093px #fff,
|
||||
858px 1007px #fff, 200px 1064px #fff, 423px 1964px #fff, 1945px 439px #fff,
|
||||
1377px 689px #fff, 1120px 1437px #fff, 1876px 668px #fff, 907px 1324px #fff,
|
||||
343px 1976px #fff, 1816px 1501px #fff, 1849px 177px #fff, 647px 91px #fff,
|
||||
1984px 1012px #fff, 1336px 1300px #fff, 128px 648px #fff, 305px 1060px #fff,
|
||||
1324px 826px #fff, 1263px 1314px #fff, 1801px 629px #fff, 1614px 1555px #fff,
|
||||
1634px 90px #fff, 1603px 452px #fff, 891px 1984px #fff, 1556px 1906px #fff,
|
||||
121px 68px #fff, 1676px 1714px #fff, 516px 936px #fff, 1947px 1492px #fff,
|
||||
1455px 1519px #fff, 45px 602px #fff, 205px 1039px #fff, 793px 172px #fff,
|
||||
1562px 1739px #fff, 1056px 110px #fff, 1512px 379px #fff, 1795px 1621px #fff,
|
||||
1848px 607px #fff, 262px 1719px #fff, 477px 991px #fff, 483px 883px #fff,
|
||||
1239px 1197px #fff, 1496px 647px #fff, 1649px 25px #fff, 1491px 1946px #fff,
|
||||
119px 996px #fff, 179px 1472px #fff, 1341px 808px #fff, 1565px 1700px #fff,
|
||||
407px 1544px #fff, 1754px 357px #fff, 1288px 981px #fff, 902px 1997px #fff,
|
||||
1755px 1668px #fff, 186px 877px #fff, 1202px 1882px #fff, 461px 1213px #fff,
|
||||
1400px 748px #fff, 1969px 1899px #fff, 809px 522px #fff, 514px 1219px #fff,
|
||||
374px 275px #fff, 938px 1973px #fff, 357px 552px #fff, 144px 1722px #fff,
|
||||
1572px 912px #fff, 402px 1858px #fff, 1544px 1195px #fff, 667px 1257px #fff,
|
||||
727px 1496px #fff, 993px 232px #fff, 1772px 313px #fff, 1040px 1590px #fff,
|
||||
1204px 1973px #fff, 1268px 79px #fff, 1555px 1048px #fff, 986px 1707px #fff,
|
||||
978px 1710px #fff, 713px 360px #fff, 407px 863px #fff, 461px 736px #fff,
|
||||
284px 1608px #fff, 103px 430px #fff, 1283px 1319px #fff, 977px 1186px #fff,
|
||||
1966px 1516px #fff, 1287px 1129px #fff, 70px 1098px #fff, 1189px 889px #fff,
|
||||
1126px 1734px #fff, 309px 1292px #fff, 879px 764px #fff, 65px 473px #fff,
|
||||
1003px 1959px #fff, 658px 791px #fff, 402px 1576px #fff, 35px 622px #fff,
|
||||
529px 1589px #fff, 164px 666px #fff, 1876px 1290px #fff, 1541px 526px #fff,
|
||||
270px 1297px #fff, 440px 865px #fff, 1500px 802px #fff, 182px 1754px #fff,
|
||||
1264px 892px #fff, 272px 1249px #fff, 1289px 1535px #fff, 190px 1646px #fff,
|
||||
955px 242px #fff, 1456px 1597px #fff, 1727px 1983px #fff, 635px 801px #fff,
|
||||
226px 455px #fff, 1396px 1710px #fff, 849px 1863px #fff, 237px 1264px #fff,
|
||||
839px 140px #fff, 1122px 735px #fff, 1280px 15px #fff, 1318px 242px #fff,
|
||||
1819px 1148px #fff, 333px 1392px #fff, 1949px 553px #fff, 1878px 1332px #fff,
|
||||
467px 548px #fff, 1812px 1082px #fff, 1067px 193px #fff, 243px 156px #fff,
|
||||
483px 1616px #fff, 1714px 933px #fff, 759px 1800px #fff, 1822px 995px #fff,
|
||||
1877px 572px #fff, 581px 1084px #fff, 107px 732px #fff, 642px 1837px #fff,
|
||||
166px 1493px #fff, 1555px 198px #fff, 819px 307px #fff, 947px 345px #fff,
|
||||
827px 224px #fff, 927px 1394px #fff, 540px 467px #fff, 1093px 405px #fff,
|
||||
1140px 927px #fff, 130px 529px #fff, 33px 1980px #fff, 1147px 1663px #fff,
|
||||
1616px 1436px #fff, 528px 710px #fff, 798px 1100px #fff, 505px 1480px #fff,
|
||||
899px 641px #fff, 1909px 1949px #fff, 1311px 964px #fff, 979px 1301px #fff,
|
||||
1393px 969px #fff, 1793px 1886px #fff, 292px 357px #fff, 1196px 1718px #fff,
|
||||
1290px 1994px #fff, 537px 1973px #fff, 1181px 1674px #fff,
|
||||
1740px 1566px #fff, 1307px 265px #fff, 922px 522px #fff, 1892px 472px #fff,
|
||||
384px 1746px #fff, 392px 1098px #fff, 647px 548px #fff, 390px 1498px #fff,
|
||||
1246px 138px #fff, 730px 876px #fff, 192px 1472px #fff, 1790px 1789px #fff,
|
||||
928px 311px #fff, 1253px 1647px #fff, 747px 1921px #fff, 1561px 1025px #fff,
|
||||
1533px 1292px #fff, 1985px 195px #fff, 728px 729px #fff, 1712px 1936px #fff,
|
||||
512px 1717px #fff, 1528px 483px #fff, 313px 1642px #fff, 281px 1849px #fff,
|
||||
1212px 799px #fff, 435px 1191px #fff, 1422px 611px #fff, 1718px 1964px #fff,
|
||||
411px 944px #fff, 210px 636px #fff, 1502px 1295px #fff, 1434px 349px #fff,
|
||||
769px 60px #fff, 747px 1053px #fff, 789px 504px #fff, 1436px 1264px #fff,
|
||||
1893px 1225px #fff, 1394px 1788px #fff, 1108px 1317px #fff,
|
||||
1673px 1395px #fff, 854px 1010px #fff, 1705px 80px #fff, 1858px 148px #fff,
|
||||
1729px 344px #fff, 1388px 664px #fff, 895px 406px #fff, 1479px 157px #fff,
|
||||
1441px 1157px #fff, 552px 1900px #fff, 516px 364px #fff, 1647px 189px #fff,
|
||||
1427px 1071px #fff, 785px 729px #fff, 1080px 1710px #fff, 504px 204px #fff,
|
||||
1177px 1622px #fff, 657px 34px #fff, 1296px 1099px #fff, 248px 180px #fff,
|
||||
1212px 1568px #fff, 667px 1562px #fff, 695px 841px #fff, 1608px 1247px #fff,
|
||||
751px 882px #fff, 87px 167px #fff, 607px 1368px #fff, 1363px 1203px #fff,
|
||||
1836px 317px #fff, 1668px 1703px #fff, 830px 1154px #fff, 1721px 1398px #fff,
|
||||
1601px 1280px #fff, 976px 874px #fff, 1743px 254px #fff, 1020px 1815px #fff,
|
||||
1670px 1766px #fff, 1890px 735px #fff, 1379px 136px #fff, 1864px 695px #fff,
|
||||
206px 965px #fff, 1404px 1932px #fff, 1923px 1360px #fff, 247px 682px #fff,
|
||||
519px 1708px #fff, 645px 750px #fff, 1164px 1204px #fff, 834px 323px #fff,
|
||||
172px 1350px #fff, 213px 972px #fff, 1837px 190px #fff, 285px 1806px #fff,
|
||||
1047px 1299px #fff, 1548px 825px #fff, 1730px 324px #fff, 1346px 1909px #fff,
|
||||
772px 270px #fff, 345px 1190px #fff, 478px 1433px #fff, 1479px 25px #fff,
|
||||
1994px 1830px #fff, 1744px 732px #fff, 20px 1635px #fff, 690px 1795px #fff,
|
||||
1594px 569px #fff, 579px 245px #fff, 1398px 733px #fff, 408px 1352px #fff,
|
||||
1774px 120px #fff, 1152px 1370px #fff, 1698px 1810px #fff, 710px 1450px #fff,
|
||||
665px 286px #fff, 493px 1720px #fff, 786px 5px #fff, 637px 1140px #fff,
|
||||
764px 324px #fff, 927px 310px #fff, 938px 1424px #fff, 1884px 744px #fff,
|
||||
913px 462px #fff, 1831px 1936px #fff, 1527px 249px #fff, 36px 1381px #fff,
|
||||
1597px 581px #fff, 1530px 355px #fff, 949px 459px #fff, 799px 828px #fff,
|
||||
242px 1471px #fff, 654px 797px #fff, 796px 594px #fff, 1365px 678px #fff,
|
||||
752px 23px #fff, 1630px 541px #fff, 982px 72px #fff, 1733px 1831px #fff,
|
||||
21px 412px #fff, 775px 998px #fff, 335px 1945px #fff, 264px 583px #fff,
|
||||
158px 1311px #fff, 528px 164px #fff, 1978px 574px #fff, 717px 1203px #fff,
|
||||
734px 1591px #fff, 1555px 820px #fff, 16px 1943px #fff, 1625px 1177px #fff,
|
||||
1236px 690px #fff, 1585px 1590px #fff, 1737px 1728px #fff, 721px 698px #fff,
|
||||
1804px 1186px #fff, 166px 980px #fff, 1850px 230px #fff, 330px 1712px #fff,
|
||||
95px 797px #fff, 1948px 1078px #fff, 469px 939px #fff, 1269px 1899px #fff,
|
||||
955px 1220px #fff, 1137px 1075px #fff, 312px 1293px #fff, 986px 1762px #fff,
|
||||
1103px 1238px #fff, 428px 1993px #fff, 355px 570px #fff, 977px 1836px #fff,
|
||||
1395px 1092px #fff, 276px 913px #fff, 1743px 656px #fff, 773px 502px #fff,
|
||||
1686px 1322px #fff, 1516px 1945px #fff, 1334px 501px #fff, 266px 156px #fff,
|
||||
455px 655px #fff, 798px 72px #fff, 1059px 1259px #fff, 1402px 1687px #fff,
|
||||
236px 1329px #fff, 1455px 786px #fff, 146px 1228px #fff, 1851px 823px #fff,
|
||||
1062px 100px #fff, 1220px 953px #fff, 20px 1826px #fff, 36px 1063px #fff,
|
||||
1525px 338px #fff, 790px 1521px #fff, 741px 1099px #fff, 288px 1489px #fff,
|
||||
700px 1060px #fff, 390px 1071px #fff, 411px 1036px #fff, 1853px 1072px #fff,
|
||||
1446px 1085px #fff, 1164px 874px #fff, 924px 925px #fff, 291px 271px #fff,
|
||||
1257px 1964px #fff, 1580px 1352px #fff, 1507px 1216px #fff, 211px 956px #fff,
|
||||
985px 1195px #fff, 975px 1640px #fff, 518px 101px #fff, 663px 1395px #fff,
|
||||
914px 532px #fff, 145px 1320px #fff, 69px 1397px #fff, 982px 523px #fff,
|
||||
257px 725px #fff, 1599px 831px #fff, 1636px 1513px #fff, 1250px 1158px #fff,
|
||||
1132px 604px #fff, 183px 102px #fff, 1057px 318px #fff, 1247px 1835px #fff,
|
||||
1983px 1110px #fff, 1077px 1455px #fff, 921px 1770px #fff, 806px 1350px #fff,
|
||||
1938px 1992px #fff, 855px 1260px #fff, 902px 1345px #fff, 658px 1908px #fff,
|
||||
1845px 679px #fff, 712px 1482px #fff, 595px 950px #fff, 1784px 1992px #fff,
|
||||
1847px 1785px #fff, 691px 1004px #fff, 175px 1179px #fff, 1666px 1911px #fff,
|
||||
41px 61px #fff, 971px 1080px #fff, 1830px 1450px #fff, 1351px 1518px #fff,
|
||||
1257px 99px #fff, 1395px 1498px #fff, 1117px 252px #fff, 1779px 597px #fff,
|
||||
1346px 729px #fff, 1108px 1144px #fff, 402px 691px #fff, 72px 496px #fff,
|
||||
1673px 1604px #fff, 1497px 974px #fff, 1865px 1664px #fff, 88px 806px #fff,
|
||||
918px 77px #fff, 244px 1118px #fff, 256px 1820px #fff, 1851px 1840px #fff,
|
||||
605px 1851px #fff, 634px 383px #fff, 865px 37px #fff, 943px 1024px #fff,
|
||||
1951px 177px #fff, 1097px 523px #fff, 985px 1700px #fff, 1243px 122px #fff,
|
||||
768px 1070px #fff, 468px 194px #fff, 320px 1867px #fff, 1850px 185px #fff,
|
||||
380px 1616px #fff, 468px 1294px #fff, 1122px 1743px #fff, 884px 299px #fff,
|
||||
1300px 1917px #fff, 1860px 396px #fff, 1270px 990px #fff, 529px 733px #fff,
|
||||
1975px 1347px #fff, 1885px 685px #fff, 226px 506px #fff, 651px 878px #fff,
|
||||
1323px 680px #fff, 1284px 680px #fff, 238px 1967px #fff, 911px 174px #fff,
|
||||
1111px 521px #fff, 1150px 85px #fff, 794px 502px #fff, 484px 1856px #fff,
|
||||
1809px 368px #fff, 112px 953px #fff, 590px 1009px #fff, 1655px 311px #fff,
|
||||
100px 1026px #fff, 1803px 352px #fff, 865px 306px #fff, 1077px 1019px #fff,
|
||||
1335px 872px #fff, 1647px 1298px #fff, 1233px 1387px #fff, 698px 1036px #fff,
|
||||
659px 1860px #fff, 388px 1412px #fff, 1212px 458px #fff, 755px 1468px #fff,
|
||||
696px 1654px #fff, 1144px 60px #fff;
|
||||
}
|
||||
|
||||
#object1:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: auto;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
background: transparent;
|
||||
|
||||
box-shadow: 779px 1331px #fff, 324px 42px #fff, 303px 586px #fff,
|
||||
1312px 276px #fff, 451px 625px #fff, 521px 1931px #fff, 1087px 1871px #fff,
|
||||
36px 1546px #fff, 132px 934px #fff, 1698px 901px #fff, 1418px 664px #fff,
|
||||
1448px 1157px #fff, 1084px 232px #fff, 347px 1776px #fff, 1722px 243px #fff,
|
||||
1629px 835px #fff, 479px 969px #fff, 1231px 960px #fff, 586px 384px #fff,
|
||||
164px 527px #fff, 8px 646px #fff, 1150px 1126px #fff, 665px 1357px #fff,
|
||||
1556px 1982px #fff, 1260px 1961px #fff, 1675px 1741px #fff,
|
||||
1843px 1514px #fff, 718px 1628px #fff, 242px 1343px #fff, 1497px 1880px #fff,
|
||||
1364px 230px #fff, 1739px 1302px #fff, 636px 959px #fff, 304px 686px #fff,
|
||||
614px 751px #fff, 1935px 816px #fff, 1428px 60px #fff, 355px 335px #fff,
|
||||
1594px 158px #fff, 90px 60px #fff, 1553px 162px #fff, 1239px 1825px #fff,
|
||||
1945px 587px #fff, 749px 1785px #fff, 1987px 1172px #fff, 1301px 1237px #fff,
|
||||
1039px 342px #fff, 1585px 1481px #fff, 995px 1048px #fff, 524px 932px #fff,
|
||||
214px 413px #fff, 1701px 1300px #fff, 1037px 1613px #fff, 1871px 996px #fff,
|
||||
1360px 1635px #fff, 1110px 1313px #fff, 412px 1783px #fff, 1949px 177px #fff,
|
||||
903px 1854px #fff, 700px 1936px #fff, 378px 125px #fff, 308px 834px #fff,
|
||||
1118px 962px #fff, 1350px 1929px #fff, 781px 1811px #fff, 561px 137px #fff,
|
||||
757px 1148px #fff, 1670px 1979px #fff, 343px 739px #fff, 945px 795px #fff,
|
||||
576px 1903px #fff, 1078px 1436px #fff, 1583px 450px #fff, 1366px 474px #fff,
|
||||
297px 1873px #fff, 192px 162px #fff, 1624px 1633px #fff, 59px 453px #fff,
|
||||
82px 1872px #fff, 1933px 498px #fff, 1966px 1974px #fff, 1975px 1688px #fff,
|
||||
779px 314px #fff, 1858px 1543px #fff, 73px 1507px #fff, 1693px 975px #fff,
|
||||
1683px 108px #fff, 1768px 1654px #fff, 654px 14px #fff, 494px 171px #fff,
|
||||
1689px 1895px #fff, 1660px 263px #fff, 1031px 903px #fff, 1203px 1393px #fff,
|
||||
1333px 1421px #fff, 1113px 41px #fff, 1206px 1645px #fff, 1325px 1635px #fff,
|
||||
142px 388px #fff, 572px 215px #fff, 1535px 296px #fff, 1419px 407px #fff,
|
||||
1379px 1003px #fff, 329px 469px #fff, 1791px 1652px #fff, 935px 1802px #fff,
|
||||
1330px 1820px #fff, 421px 1933px #fff, 828px 365px #fff, 275px 316px #fff,
|
||||
707px 960px #fff, 1605px 1554px #fff, 625px 58px #fff, 717px 1697px #fff,
|
||||
1669px 246px #fff, 1925px 322px #fff, 1154px 1803px #fff, 1929px 295px #fff,
|
||||
1248px 240px #fff, 1045px 1755px #fff, 166px 942px #fff, 1888px 1773px #fff,
|
||||
678px 1963px #fff, 1370px 569px #fff, 1974px 1400px #fff, 1786px 460px #fff,
|
||||
51px 307px #fff, 784px 1400px #fff, 730px 1258px #fff, 1712px 393px #fff,
|
||||
416px 170px #fff, 1797px 1932px #fff, 572px 219px #fff, 1557px 1856px #fff,
|
||||
218px 8px #fff, 348px 1334px #fff, 469px 413px #fff, 385px 1738px #fff,
|
||||
1357px 1818px #fff, 240px 942px #fff, 248px 1847px #fff, 1535px 806px #fff,
|
||||
236px 1514px #fff, 1429px 1556px #fff, 73px 1633px #fff, 1398px 1121px #fff,
|
||||
671px 1301px #fff, 1404px 1663px #fff, 740px 1018px #fff, 1600px 377px #fff,
|
||||
785px 514px #fff, 112px 1084px #fff, 1915px 1887px #fff, 1463px 1848px #fff,
|
||||
687px 1115px #fff, 1268px 1768px #fff, 1729px 1425px #fff,
|
||||
1284px 1022px #fff, 801px 974px #fff, 1975px 1317px #fff, 1354px 834px #fff,
|
||||
1446px 1484px #fff, 1283px 1786px #fff, 11px 523px #fff, 1842px 236px #fff,
|
||||
1355px 654px #fff, 429px 7px #fff, 1033px 1128px #fff, 157px 297px #fff,
|
||||
545px 635px #fff, 52px 1080px #fff, 827px 1520px #fff, 1121px 490px #fff,
|
||||
9px 309px #fff, 1744px 1586px #fff, 1014px 417px #fff, 1534px 524px #fff,
|
||||
958px 552px #fff, 1403px 1496px #fff, 387px 703px #fff, 1522px 548px #fff,
|
||||
1355px 282px #fff, 1532px 601px #fff, 1838px 790px #fff, 290px 259px #fff,
|
||||
295px 598px #fff, 1601px 539px #fff, 1561px 1272px #fff, 34px 1922px #fff,
|
||||
1024px 543px #fff, 467px 369px #fff, 722px 333px #fff, 1976px 1255px #fff,
|
||||
766px 983px #fff, 1582px 1285px #fff, 12px 512px #fff, 617px 1410px #fff,
|
||||
682px 577px #fff, 1334px 1438px #fff, 439px 327px #fff, 1617px 1661px #fff,
|
||||
673px 129px #fff, 794px 941px #fff, 1386px 1902px #fff, 37px 1353px #fff,
|
||||
1467px 1353px #fff, 416px 18px #fff, 187px 344px #fff, 200px 1898px #fff,
|
||||
1491px 1619px #fff, 811px 347px #fff, 924px 1827px #fff, 945px 217px #fff,
|
||||
1735px 1228px #fff, 379px 1890px #fff, 79px 761px #fff, 825px 1837px #fff,
|
||||
1980px 1558px #fff, 1308px 1573px #fff, 1488px 1726px #fff,
|
||||
382px 1208px #fff, 522px 595px #fff, 1277px 1898px #fff, 354px 552px #fff,
|
||||
161px 1784px #fff, 614px 251px #fff, 526px 1576px #fff, 17px 212px #fff,
|
||||
179px 996px #fff, 467px 1208px #fff, 1944px 1838px #fff, 1140px 1093px #fff,
|
||||
858px 1007px #fff, 200px 1064px #fff, 423px 1964px #fff, 1945px 439px #fff,
|
||||
1377px 689px #fff, 1120px 1437px #fff, 1876px 668px #fff, 907px 1324px #fff,
|
||||
343px 1976px #fff, 1816px 1501px #fff, 1849px 177px #fff, 647px 91px #fff,
|
||||
1984px 1012px #fff, 1336px 1300px #fff, 128px 648px #fff, 305px 1060px #fff,
|
||||
1324px 826px #fff, 1263px 1314px #fff, 1801px 629px #fff, 1614px 1555px #fff,
|
||||
1634px 90px #fff, 1603px 452px #fff, 891px 1984px #fff, 1556px 1906px #fff,
|
||||
121px 68px #fff, 1676px 1714px #fff, 516px 936px #fff, 1947px 1492px #fff,
|
||||
1455px 1519px #fff, 45px 602px #fff, 205px 1039px #fff, 793px 172px #fff,
|
||||
1562px 1739px #fff, 1056px 110px #fff, 1512px 379px #fff, 1795px 1621px #fff,
|
||||
1848px 607px #fff, 262px 1719px #fff, 477px 991px #fff, 483px 883px #fff,
|
||||
1239px 1197px #fff, 1496px 647px #fff, 1649px 25px #fff, 1491px 1946px #fff,
|
||||
119px 996px #fff, 179px 1472px #fff, 1341px 808px #fff, 1565px 1700px #fff,
|
||||
407px 1544px #fff, 1754px 357px #fff, 1288px 981px #fff, 902px 1997px #fff,
|
||||
1755px 1668px #fff, 186px 877px #fff, 1202px 1882px #fff, 461px 1213px #fff,
|
||||
1400px 748px #fff, 1969px 1899px #fff, 809px 522px #fff, 514px 1219px #fff,
|
||||
374px 275px #fff, 938px 1973px #fff, 357px 552px #fff, 144px 1722px #fff,
|
||||
1572px 912px #fff, 402px 1858px #fff, 1544px 1195px #fff, 667px 1257px #fff,
|
||||
727px 1496px #fff, 993px 232px #fff, 1772px 313px #fff, 1040px 1590px #fff,
|
||||
1204px 1973px #fff, 1268px 79px #fff, 1555px 1048px #fff, 986px 1707px #fff,
|
||||
978px 1710px #fff, 713px 360px #fff, 407px 863px #fff, 461px 736px #fff,
|
||||
284px 1608px #fff, 103px 430px #fff, 1283px 1319px #fff, 977px 1186px #fff,
|
||||
1966px 1516px #fff, 1287px 1129px #fff, 70px 1098px #fff, 1189px 889px #fff,
|
||||
1126px 1734px #fff, 309px 1292px #fff, 879px 764px #fff, 65px 473px #fff,
|
||||
1003px 1959px #fff, 658px 791px #fff, 402px 1576px #fff, 35px 622px #fff,
|
||||
529px 1589px #fff, 164px 666px #fff, 1876px 1290px #fff, 1541px 526px #fff,
|
||||
270px 1297px #fff, 440px 865px #fff, 1500px 802px #fff, 182px 1754px #fff,
|
||||
1264px 892px #fff, 272px 1249px #fff, 1289px 1535px #fff, 190px 1646px #fff,
|
||||
955px 242px #fff, 1456px 1597px #fff, 1727px 1983px #fff, 635px 801px #fff,
|
||||
226px 455px #fff, 1396px 1710px #fff, 849px 1863px #fff, 237px 1264px #fff,
|
||||
839px 140px #fff, 1122px 735px #fff, 1280px 15px #fff, 1318px 242px #fff,
|
||||
1819px 1148px #fff, 333px 1392px #fff, 1949px 553px #fff, 1878px 1332px #fff,
|
||||
467px 548px #fff, 1812px 1082px #fff, 1067px 193px #fff, 243px 156px #fff,
|
||||
483px 1616px #fff, 1714px 933px #fff, 759px 1800px #fff, 1822px 995px #fff,
|
||||
1877px 572px #fff, 581px 1084px #fff, 107px 732px #fff, 642px 1837px #fff,
|
||||
166px 1493px #fff, 1555px 198px #fff, 819px 307px #fff, 947px 345px #fff,
|
||||
827px 224px #fff, 927px 1394px #fff, 540px 467px #fff, 1093px 405px #fff,
|
||||
1140px 927px #fff, 130px 529px #fff, 33px 1980px #fff, 1147px 1663px #fff,
|
||||
1616px 1436px #fff, 528px 710px #fff, 798px 1100px #fff, 505px 1480px #fff,
|
||||
899px 641px #fff, 1909px 1949px #fff, 1311px 964px #fff, 979px 1301px #fff,
|
||||
1393px 969px #fff, 1793px 1886px #fff, 292px 357px #fff, 1196px 1718px #fff,
|
||||
1290px 1994px #fff, 537px 1973px #fff, 1181px 1674px #fff,
|
||||
1740px 1566px #fff, 1307px 265px #fff, 922px 522px #fff, 1892px 472px #fff,
|
||||
384px 1746px #fff, 392px 1098px #fff, 647px 548px #fff, 390px 1498px #fff,
|
||||
1246px 138px #fff, 730px 876px #fff, 192px 1472px #fff, 1790px 1789px #fff,
|
||||
928px 311px #fff, 1253px 1647px #fff, 747px 1921px #fff, 1561px 1025px #fff,
|
||||
1533px 1292px #fff, 1985px 195px #fff, 728px 729px #fff, 1712px 1936px #fff,
|
||||
512px 1717px #fff, 1528px 483px #fff, 313px 1642px #fff, 281px 1849px #fff,
|
||||
1212px 799px #fff, 435px 1191px #fff, 1422px 611px #fff, 1718px 1964px #fff,
|
||||
411px 944px #fff, 210px 636px #fff, 1502px 1295px #fff, 1434px 349px #fff,
|
||||
769px 60px #fff, 747px 1053px #fff, 789px 504px #fff, 1436px 1264px #fff,
|
||||
1893px 1225px #fff, 1394px 1788px #fff, 1108px 1317px #fff,
|
||||
1673px 1395px #fff, 854px 1010px #fff, 1705px 80px #fff, 1858px 148px #fff,
|
||||
1729px 344px #fff, 1388px 664px #fff, 895px 406px #fff, 1479px 157px #fff,
|
||||
1441px 1157px #fff, 552px 1900px #fff, 516px 364px #fff, 1647px 189px #fff,
|
||||
1427px 1071px #fff, 785px 729px #fff, 1080px 1710px #fff, 504px 204px #fff,
|
||||
1177px 1622px #fff, 657px 34px #fff, 1296px 1099px #fff, 248px 180px #fff,
|
||||
1212px 1568px #fff, 667px 1562px #fff, 695px 841px #fff, 1608px 1247px #fff,
|
||||
751px 882px #fff, 87px 167px #fff, 607px 1368px #fff, 1363px 1203px #fff,
|
||||
1836px 317px #fff, 1668px 1703px #fff, 830px 1154px #fff, 1721px 1398px #fff,
|
||||
1601px 1280px #fff, 976px 874px #fff, 1743px 254px #fff, 1020px 1815px #fff,
|
||||
1670px 1766px #fff, 1890px 735px #fff, 1379px 136px #fff, 1864px 695px #fff,
|
||||
206px 965px #fff, 1404px 1932px #fff, 1923px 1360px #fff, 247px 682px #fff,
|
||||
519px 1708px #fff, 645px 750px #fff, 1164px 1204px #fff, 834px 323px #fff,
|
||||
172px 1350px #fff, 213px 972px #fff, 1837px 190px #fff, 285px 1806px #fff,
|
||||
1047px 1299px #fff, 1548px 825px #fff, 1730px 324px #fff, 1346px 1909px #fff,
|
||||
772px 270px #fff, 345px 1190px #fff, 478px 1433px #fff, 1479px 25px #fff,
|
||||
1994px 1830px #fff, 1744px 732px #fff, 20px 1635px #fff, 690px 1795px #fff,
|
||||
1594px 569px #fff, 579px 245px #fff, 1398px 733px #fff, 408px 1352px #fff,
|
||||
1774px 120px #fff, 1152px 1370px #fff, 1698px 1810px #fff, 710px 1450px #fff,
|
||||
665px 286px #fff, 493px 1720px #fff, 786px 5px #fff, 637px 1140px #fff,
|
||||
764px 324px #fff, 927px 310px #fff, 938px 1424px #fff, 1884px 744px #fff,
|
||||
913px 462px #fff, 1831px 1936px #fff, 1527px 249px #fff, 36px 1381px #fff,
|
||||
1597px 581px #fff, 1530px 355px #fff, 949px 459px #fff, 799px 828px #fff,
|
||||
242px 1471px #fff, 654px 797px #fff, 796px 594px #fff, 1365px 678px #fff,
|
||||
752px 23px #fff, 1630px 541px #fff, 982px 72px #fff, 1733px 1831px #fff,
|
||||
21px 412px #fff, 775px 998px #fff, 335px 1945px #fff, 264px 583px #fff,
|
||||
158px 1311px #fff, 528px 164px #fff, 1978px 574px #fff, 717px 1203px #fff,
|
||||
734px 1591px #fff, 1555px 820px #fff, 16px 1943px #fff, 1625px 1177px #fff,
|
||||
1236px 690px #fff, 1585px 1590px #fff, 1737px 1728px #fff, 721px 698px #fff,
|
||||
1804px 1186px #fff, 166px 980px #fff, 1850px 230px #fff, 330px 1712px #fff,
|
||||
95px 797px #fff, 1948px 1078px #fff, 469px 939px #fff, 1269px 1899px #fff,
|
||||
955px 1220px #fff, 1137px 1075px #fff, 312px 1293px #fff, 986px 1762px #fff,
|
||||
1103px 1238px #fff, 428px 1993px #fff, 355px 570px #fff, 977px 1836px #fff,
|
||||
1395px 1092px #fff, 276px 913px #fff, 1743px 656px #fff, 773px 502px #fff,
|
||||
1686px 1322px #fff, 1516px 1945px #fff, 1334px 501px #fff, 266px 156px #fff,
|
||||
455px 655px #fff, 798px 72px #fff, 1059px 1259px #fff, 1402px 1687px #fff,
|
||||
236px 1329px #fff, 1455px 786px #fff, 146px 1228px #fff, 1851px 823px #fff,
|
||||
1062px 100px #fff, 1220px 953px #fff, 20px 1826px #fff, 36px 1063px #fff,
|
||||
1525px 338px #fff, 790px 1521px #fff, 741px 1099px #fff, 288px 1489px #fff,
|
||||
700px 1060px #fff, 390px 1071px #fff, 411px 1036px #fff, 1853px 1072px #fff,
|
||||
1446px 1085px #fff, 1164px 874px #fff, 924px 925px #fff, 291px 271px #fff,
|
||||
1257px 1964px #fff, 1580px 1352px #fff, 1507px 1216px #fff, 211px 956px #fff,
|
||||
985px 1195px #fff, 975px 1640px #fff, 518px 101px #fff, 663px 1395px #fff,
|
||||
914px 532px #fff, 145px 1320px #fff, 69px 1397px #fff, 982px 523px #fff,
|
||||
257px 725px #fff, 1599px 831px #fff, 1636px 1513px #fff, 1250px 1158px #fff,
|
||||
1132px 604px #fff, 183px 102px #fff, 1057px 318px #fff, 1247px 1835px #fff,
|
||||
1983px 1110px #fff, 1077px 1455px #fff, 921px 1770px #fff, 806px 1350px #fff,
|
||||
1938px 1992px #fff, 855px 1260px #fff, 902px 1345px #fff, 658px 1908px #fff,
|
||||
1845px 679px #fff, 712px 1482px #fff, 595px 950px #fff, 1784px 1992px #fff,
|
||||
1847px 1785px #fff, 691px 1004px #fff, 175px 1179px #fff, 1666px 1911px #fff,
|
||||
41px 61px #fff, 971px 1080px #fff, 1830px 1450px #fff, 1351px 1518px #fff,
|
||||
1257px 99px #fff, 1395px 1498px #fff, 1117px 252px #fff, 1779px 597px #fff,
|
||||
1346px 729px #fff, 1108px 1144px #fff, 402px 691px #fff, 72px 496px #fff,
|
||||
1673px 1604px #fff, 1497px 974px #fff, 1865px 1664px #fff, 88px 806px #fff,
|
||||
918px 77px #fff, 244px 1118px #fff, 256px 1820px #fff, 1851px 1840px #fff,
|
||||
605px 1851px #fff, 634px 383px #fff, 865px 37px #fff, 943px 1024px #fff,
|
||||
1951px 177px #fff, 1097px 523px #fff, 985px 1700px #fff, 1243px 122px #fff,
|
||||
768px 1070px #fff, 468px 194px #fff, 320px 1867px #fff, 1850px 185px #fff,
|
||||
380px 1616px #fff, 468px 1294px #fff, 1122px 1743px #fff, 884px 299px #fff,
|
||||
1300px 1917px #fff, 1860px 396px #fff, 1270px 990px #fff, 529px 733px #fff,
|
||||
1975px 1347px #fff, 1885px 685px #fff, 226px 506px #fff, 651px 878px #fff,
|
||||
1323px 680px #fff, 1284px 680px #fff, 238px 1967px #fff, 911px 174px #fff,
|
||||
1111px 521px #fff, 1150px 85px #fff, 794px 502px #fff, 484px 1856px #fff,
|
||||
1809px 368px #fff, 112px 953px #fff, 590px 1009px #fff, 1655px 311px #fff,
|
||||
100px 1026px #fff, 1803px 352px #fff, 865px 306px #fff, 1077px 1019px #fff,
|
||||
1335px 872px #fff, 1647px 1298px #fff, 1233px 1387px #fff, 698px 1036px #fff,
|
||||
659px 1860px #fff, 388px 1412px #fff, 1212px 458px #fff, 755px 1468px #fff,
|
||||
696px 1654px #fff, 1144px 60px #fff;
|
||||
}
|
||||
|
||||
#object2 {
|
||||
width: 2px;
|
||||
height: 2px;
|
||||
background: transparent;
|
||||
animation: animStar 180s linear infinite;
|
||||
|
||||
box-shadow: 1448px 320px #fff, 1775px 1663px #fff, 332px 1364px #fff,
|
||||
878px 340px #fff, 569px 1832px #fff, 1422px 1684px #fff, 1946px 1907px #fff,
|
||||
121px 979px #fff, 1044px 1069px #fff, 463px 381px #fff, 423px 112px #fff,
|
||||
523px 1179px #fff, 779px 654px #fff, 1398px 694px #fff, 1085px 1464px #fff,
|
||||
1599px 1869px #fff, 801px 1882px #fff, 779px 1231px #fff, 552px 932px #fff,
|
||||
1057px 1196px #fff, 282px 1280px #fff, 496px 1986px #fff, 1833px 1120px #fff,
|
||||
1802px 1293px #fff, 6px 1696px #fff, 412px 1902px #fff, 605px 438px #fff,
|
||||
24px 1212px #fff, 234px 1320px #fff, 544px 344px #fff, 1107px 170px #fff,
|
||||
1603px 196px #fff, 905px 648px #fff, 68px 1458px #fff, 649px 1969px #fff,
|
||||
744px 675px #fff, 1127px 478px #fff, 714px 1814px #fff, 1486px 526px #fff,
|
||||
270px 1636px #fff, 1931px 149px #fff, 1807px 378px #fff, 8px 390px #fff,
|
||||
1415px 699px #fff, 1473px 1211px #fff, 1590px 141px #fff, 270px 1705px #fff,
|
||||
69px 1423px #fff, 1108px 1053px #fff, 1946px 128px #fff, 371px 371px #fff,
|
||||
1490px 220px #fff, 357px 1885px #fff, 363px 363px #fff, 1896px 1256px #fff,
|
||||
1979px 1050px #fff, 947px 1342px #fff, 1754px 242px #fff, 514px 974px #fff,
|
||||
65px 1477px #fff, 1840px 547px #fff, 950px 695px #fff, 459px 1150px #fff,
|
||||
1124px 1502px #fff, 481px 940px #fff, 680px 839px #fff, 797px 1169px #fff,
|
||||
1977px 1491px #fff, 734px 1724px #fff, 210px 298px #fff, 816px 628px #fff,
|
||||
686px 770px #fff, 1721px 267px #fff, 1663px 511px #fff, 1481px 1141px #fff,
|
||||
582px 248px #fff, 1308px 953px #fff, 628px 657px #fff, 897px 1535px #fff,
|
||||
270px 931px #fff, 791px 467px #fff, 1336px 1732px #fff, 1013px 1653px #fff,
|
||||
1911px 956px #fff, 587px 816px #fff, 83px 456px #fff, 930px 1478px #fff,
|
||||
1587px 1694px #fff, 614px 1200px #fff, 302px 1782px #fff, 1711px 1432px #fff,
|
||||
443px 904px #fff, 1666px 714px #fff, 1588px 1167px #fff, 273px 1075px #fff,
|
||||
1679px 461px #fff, 721px 664px #fff, 1202px 10px #fff, 166px 1126px #fff,
|
||||
331px 1628px #fff, 430px 1565px #fff, 1585px 509px #fff, 640px 38px #fff,
|
||||
822px 837px #fff, 1760px 1664px #fff, 1122px 1458px #fff, 398px 131px #fff,
|
||||
689px 285px #fff, 460px 652px #fff, 1627px 365px #fff, 348px 1648px #fff,
|
||||
819px 1946px #fff, 981px 1917px #fff, 323px 76px #fff, 979px 684px #fff,
|
||||
887px 536px #fff, 1348px 1596px #fff, 1055px 666px #fff, 1402px 1797px #fff,
|
||||
1300px 1055px #fff, 937px 238px #fff, 1474px 1815px #fff, 1144px 1710px #fff,
|
||||
1629px 1087px #fff, 911px 919px #fff, 771px 819px #fff, 403px 720px #fff,
|
||||
163px 736px #fff, 1062px 238px #fff, 1774px 818px #fff, 1874px 1178px #fff,
|
||||
1177px 699px #fff, 1244px 1244px #fff, 1371px 58px #fff, 564px 1515px #fff,
|
||||
1824px 487px #fff, 929px 702px #fff, 394px 1348px #fff, 1161px 641px #fff,
|
||||
219px 1841px #fff, 358px 941px #fff, 140px 1759px #fff, 1019px 1345px #fff,
|
||||
274px 436px #fff, 1433px 1605px #fff, 1798px 1426px #fff, 294px 1848px #fff,
|
||||
1681px 1877px #fff, 1344px 1824px #fff, 1439px 1632px #fff,
|
||||
161px 1012px #fff, 1308px 588px #fff, 1789px 582px #fff, 721px 1910px #fff,
|
||||
318px 218px #fff, 607px 319px #fff, 495px 535px #fff, 1552px 1575px #fff,
|
||||
1562px 67px #fff, 403px 926px #fff, 1096px 1800px #fff, 1814px 1709px #fff,
|
||||
1882px 1831px #fff, 533px 46px #fff, 823px 969px #fff, 530px 165px #fff,
|
||||
1030px 352px #fff, 1681px 313px #fff, 338px 115px #fff, 1607px 211px #fff,
|
||||
1718px 1184px #fff, 1589px 659px #fff, 278px 355px #fff, 464px 1464px #fff,
|
||||
1165px 277px #fff, 950px 694px #fff, 1746px 293px #fff, 793px 911px #fff,
|
||||
528px 773px #fff, 1883px 1694px #fff, 748px 182px #fff, 1924px 1531px #fff,
|
||||
100px 636px #fff, 1473px 1445px #fff, 1264px 1244px #fff, 850px 1377px #fff,
|
||||
987px 1976px #fff, 933px 1761px #fff, 922px 1270px #fff, 500px 396px #fff,
|
||||
1324px 8px #fff, 1967px 1814px #fff, 1072px 1401px #fff, 961px 37px #fff,
|
||||
156px 81px #fff, 1915px 502px #fff, 1076px 1846px #fff, 152px 1669px #fff,
|
||||
986px 1529px #fff, 1667px 1137px #fff;
|
||||
}
|
||||
|
||||
#object2:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: auto;
|
||||
width: 2px;
|
||||
height: 2px;
|
||||
background: transparent;
|
||||
|
||||
box-shadow: 1448px 320px #fff, 1775px 1663px #fff, 332px 1364px #fff,
|
||||
878px 340px #fff, 569px 1832px #fff, 1422px 1684px #fff, 1946px 1907px #fff,
|
||||
121px 979px #fff, 1044px 1069px #fff, 463px 381px #fff, 423px 112px #fff,
|
||||
523px 1179px #fff, 779px 654px #fff, 1398px 694px #fff, 1085px 1464px #fff,
|
||||
1599px 1869px #fff, 801px 1882px #fff, 779px 1231px #fff, 552px 932px #fff,
|
||||
1057px 1196px #fff, 282px 1280px #fff, 496px 1986px #fff, 1833px 1120px #fff,
|
||||
1802px 1293px #fff, 6px 1696px #fff, 412px 1902px #fff, 605px 438px #fff,
|
||||
24px 1212px #fff, 234px 1320px #fff, 544px 344px #fff, 1107px 170px #fff,
|
||||
1603px 196px #fff, 905px 648px #fff, 68px 1458px #fff, 649px 1969px #fff,
|
||||
744px 675px #fff, 1127px 478px #fff, 714px 1814px #fff, 1486px 526px #fff,
|
||||
270px 1636px #fff, 1931px 149px #fff, 1807px 378px #fff, 8px 390px #fff,
|
||||
1415px 699px #fff, 1473px 1211px #fff, 1590px 141px #fff, 270px 1705px #fff,
|
||||
69px 1423px #fff, 1108px 1053px #fff, 1946px 128px #fff, 371px 371px #fff,
|
||||
1490px 220px #fff, 357px 1885px #fff, 363px 363px #fff, 1896px 1256px #fff,
|
||||
1979px 1050px #fff, 947px 1342px #fff, 1754px 242px #fff, 514px 974px #fff,
|
||||
65px 1477px #fff, 1840px 547px #fff, 950px 695px #fff, 459px 1150px #fff,
|
||||
1124px 1502px #fff, 481px 940px #fff, 680px 839px #fff, 797px 1169px #fff,
|
||||
1977px 1491px #fff, 734px 1724px #fff, 210px 298px #fff, 816px 628px #fff,
|
||||
686px 770px #fff, 1721px 267px #fff, 1663px 511px #fff, 1481px 1141px #fff,
|
||||
582px 248px #fff, 1308px 953px #fff, 628px 657px #fff, 897px 1535px #fff,
|
||||
270px 931px #fff, 791px 467px #fff, 1336px 1732px #fff, 1013px 1653px #fff,
|
||||
1911px 956px #fff, 587px 816px #fff, 83px 456px #fff, 930px 1478px #fff,
|
||||
1587px 1694px #fff, 614px 1200px #fff, 302px 1782px #fff, 1711px 1432px #fff,
|
||||
443px 904px #fff, 1666px 714px #fff, 1588px 1167px #fff, 273px 1075px #fff,
|
||||
1679px 461px #fff, 721px 664px #fff, 1202px 10px #fff, 166px 1126px #fff,
|
||||
331px 1628px #fff, 430px 1565px #fff, 1585px 509px #fff, 640px 38px #fff,
|
||||
822px 837px #fff, 1760px 1664px #fff, 1122px 1458px #fff, 398px 131px #fff,
|
||||
689px 285px #fff, 460px 652px #fff, 1627px 365px #fff, 348px 1648px #fff,
|
||||
819px 1946px #fff, 981px 1917px #fff, 323px 76px #fff, 979px 684px #fff,
|
||||
887px 536px #fff, 1348px 1596px #fff, 1055px 666px #fff, 1402px 1797px #fff,
|
||||
1300px 1055px #fff, 937px 238px #fff, 1474px 1815px #fff, 1144px 1710px #fff,
|
||||
1629px 1087px #fff, 911px 919px #fff, 771px 819px #fff, 403px 720px #fff,
|
||||
163px 736px #fff, 1062px 238px #fff, 1774px 818px #fff, 1874px 1178px #fff,
|
||||
1177px 699px #fff, 1244px 1244px #fff, 1371px 58px #fff, 564px 1515px #fff,
|
||||
1824px 487px #fff, 929px 702px #fff, 394px 1348px #fff, 1161px 641px #fff,
|
||||
219px 1841px #fff, 358px 941px #fff, 140px 1759px #fff, 1019px 1345px #fff,
|
||||
274px 436px #fff, 1433px 1605px #fff, 1798px 1426px #fff, 294px 1848px #fff,
|
||||
1681px 1877px #fff, 1344px 1824px #fff, 1439px 1632px #fff,
|
||||
161px 1012px #fff, 1308px 588px #fff, 1789px 582px #fff, 721px 1910px #fff,
|
||||
318px 218px #fff, 607px 319px #fff, 495px 535px #fff, 1552px 1575px #fff,
|
||||
1562px 67px #fff, 403px 926px #fff, 1096px 1800px #fff, 1814px 1709px #fff,
|
||||
1882px 1831px #fff, 533px 46px #fff, 823px 969px #fff, 530px 165px #fff,
|
||||
1030px 352px #fff, 1681px 313px #fff, 338px 115px #fff, 1607px 211px #fff,
|
||||
1718px 1184px #fff, 1589px 659px #fff, 278px 355px #fff, 464px 1464px #fff,
|
||||
1165px 277px #fff, 950px 694px #fff, 1746px 293px #fff, 793px 911px #fff,
|
||||
528px 773px #fff, 1883px 1694px #fff, 748px 182px #fff, 1924px 1531px #fff,
|
||||
100px 636px #fff, 1473px 1445px #fff, 1264px 1244px #fff, 850px 1377px #fff,
|
||||
987px 1976px #fff, 933px 1761px #fff, 922px 1270px #fff, 500px 396px #fff,
|
||||
1324px 8px #fff, 1967px 1814px #fff, 1072px 1401px #fff, 961px 37px #fff,
|
||||
156px 81px #fff, 1915px 502px #fff, 1076px 1846px #fff, 152px 1669px #fff,
|
||||
986px 1529px #fff, 1667px 1137px #fff;
|
||||
}
|
||||
|
||||
#object3 {
|
||||
width: 3px;
|
||||
height: 3px;
|
||||
background: transparent;
|
||||
animation: animStar 240s linear infinite;
|
||||
|
||||
box-shadow: 387px 1878px #fff, 760px 1564px #fff, 1487px 999px #fff,
|
||||
948px 1828px #fff, 1977px 1001px #fff, 1284px 1963px #fff, 656px 284px #fff,
|
||||
1268px 1635px #fff, 1820px 598px #fff, 642px 1900px #fff, 296px 57px #fff,
|
||||
921px 1620px #fff, 476px 1858px #fff, 658px 613px #fff, 1171px 1363px #fff,
|
||||
1419px 283px #fff, 1037px 731px #fff, 503px 663px #fff, 1562px 463px #fff,
|
||||
383px 1197px #fff, 1171px 1233px #fff, 876px 1768px #fff, 856px 1615px #fff,
|
||||
1375px 1924px #fff, 1725px 918px #fff, 952px 119px #fff, 768px 1212px #fff,
|
||||
992px 1462px #fff, 1929px 717px #fff, 1947px 755px #fff, 1818px 1123px #fff,
|
||||
1896px 1672px #fff, 460px 198px #fff, 256px 271px #fff, 752px 544px #fff,
|
||||
1222px 1859px #fff, 1851px 443px #fff, 313px 1858px #fff, 709px 446px #fff,
|
||||
1546px 697px #fff, 674px 1155px #fff, 1112px 130px #fff, 355px 1790px #fff,
|
||||
1496px 974px #fff, 1696px 480px #fff, 1316px 1265px #fff, 1645px 1063px #fff,
|
||||
1182px 237px #fff, 427px 1582px #fff, 859px 253px #fff, 458px 939px #fff,
|
||||
1517px 1644px #fff, 1943px 60px #fff, 212px 1650px #fff, 966px 1786px #fff,
|
||||
473px 712px #fff, 130px 76px #fff, 1417px 1186px #fff, 909px 1580px #fff,
|
||||
1913px 762px #fff, 204px 1143px #fff, 1998px 1057px #fff, 1468px 1301px #fff,
|
||||
144px 1676px #fff, 21px 1601px #fff, 382px 1362px #fff, 912px 753px #fff,
|
||||
1488px 1405px #fff, 802px 156px #fff, 174px 550px #fff, 338px 1366px #fff,
|
||||
1197px 774px #fff, 602px 486px #fff, 682px 1877px #fff, 348px 1503px #fff,
|
||||
407px 1139px #fff, 950px 1400px #fff, 922px 1139px #fff, 1697px 293px #fff,
|
||||
1238px 1281px #fff, 1038px 1197px #fff, 376px 1889px #fff,
|
||||
1255px 1680px #fff, 1008px 1316px #fff, 1538px 1447px #fff,
|
||||
1186px 874px #fff, 1967px 640px #fff, 1341px 19px #fff, 29px 1732px #fff,
|
||||
16px 1650px #fff, 1021px 1075px #fff, 723px 424px #fff, 1175px 41px #fff,
|
||||
494px 1957px #fff, 1296px 431px #fff, 175px 1507px #fff, 831px 121px #fff,
|
||||
498px 1947px #fff, 617px 880px #fff, 240px 403px #fff;
|
||||
}
|
||||
|
||||
#object3:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: auto;
|
||||
width: 3px;
|
||||
height: 3px;
|
||||
background: transparent;
|
||||
|
||||
box-shadow: 387px 1878px #fff, 760px 1564px #fff, 1487px 999px #fff,
|
||||
948px 1828px #fff, 1977px 1001px #fff, 1284px 1963px #fff, 656px 284px #fff,
|
||||
1268px 1635px #fff, 1820px 598px #fff, 642px 1900px #fff, 296px 57px #fff,
|
||||
921px 1620px #fff, 476px 1858px #fff, 658px 613px #fff, 1171px 1363px #fff,
|
||||
1419px 283px #fff, 1037px 731px #fff, 503px 663px #fff, 1562px 463px #fff,
|
||||
383px 1197px #fff, 1171px 1233px #fff, 876px 1768px #fff, 856px 1615px #fff,
|
||||
1375px 1924px #fff, 1725px 918px #fff, 952px 119px #fff, 768px 1212px #fff,
|
||||
992px 1462px #fff, 1929px 717px #fff, 1947px 755px #fff, 1818px 1123px #fff,
|
||||
1896px 1672px #fff, 460px 198px #fff, 256px 271px #fff, 752px 544px #fff,
|
||||
1222px 1859px #fff, 1851px 443px #fff, 313px 1858px #fff, 709px 446px #fff,
|
||||
1546px 697px #fff, 674px 1155px #fff, 1112px 130px #fff, 355px 1790px #fff,
|
||||
1496px 974px #fff, 1696px 480px #fff, 1316px 1265px #fff, 1645px 1063px #fff,
|
||||
1182px 237px #fff, 427px 1582px #fff, 859px 253px #fff, 458px 939px #fff,
|
||||
1517px 1644px #fff, 1943px 60px #fff, 212px 1650px #fff, 966px 1786px #fff,
|
||||
473px 712px #fff, 130px 76px #fff, 1417px 1186px #fff, 909px 1580px #fff,
|
||||
1913px 762px #fff, 204px 1143px #fff, 1998px 1057px #fff, 1468px 1301px #fff,
|
||||
144px 1676px #fff, 21px 1601px #fff, 382px 1362px #fff, 912px 753px #fff,
|
||||
1488px 1405px #fff, 802px 156px #fff, 174px 550px #fff, 338px 1366px #fff,
|
||||
1197px 774px #fff, 602px 486px #fff, 682px 1877px #fff, 348px 1503px #fff,
|
||||
407px 1139px #fff, 950px 1400px #fff, 922px 1139px #fff, 1697px 293px #fff,
|
||||
1238px 1281px #fff, 1038px 1197px #fff, 376px 1889px #fff,
|
||||
1255px 1680px #fff, 1008px 1316px #fff, 1538px 1447px #fff,
|
||||
1186px 874px #fff, 1967px 640px #fff, 1341px 19px #fff, 29px 1732px #fff,
|
||||
16px 1650px #fff, 1021px 1075px #fff, 723px 424px #fff, 1175px 41px #fff,
|
||||
494px 1957px #fff, 1296px 431px #fff, 175px 1507px #fff, 831px 121px #fff,
|
||||
498px 1947px #fff, 617px 880px #fff, 240px 403px #fff;
|
||||
}
|
@ -1,21 +0,0 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2022 Julian Prieber
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
101
themes/MagicKingdom/animations.css
vendored
@ -1,101 +0,0 @@
|
||||
/* ************************************************************* */
|
||||
/*
|
||||
/* Use this file to add custom CSS animations.
|
||||
/* Delete this file if you wish to use the default animations.
|
||||
/* If you do not want to have animations in your theme,
|
||||
/* remove or comment them and include this file in your theme.
|
||||
/*
|
||||
/* ************************************************************* */
|
||||
|
||||
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
- Entrance animations
|
||||
- Button hover animations
|
||||
- Icon hover animations
|
||||
- Footer hover animations
|
||||
|
||||
*/
|
||||
|
||||
|
||||
|
||||
/* Entrance animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.button-entrance {
|
||||
animation-name: popUp;
|
||||
animation-duration: 1s;
|
||||
animation-fill-mode: both;
|
||||
/* Used to start button entrance animation one after another */
|
||||
animation-delay: calc(var(--delay)/10);
|
||||
}
|
||||
|
||||
@keyframes popUp {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: scale3d(0.3, 0.3, 0.3);
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.fadein {
|
||||
animation-name: fadein;
|
||||
animation-duration: 3s;
|
||||
animation-fill-mode: both;
|
||||
}
|
||||
|
||||
@keyframes fadein {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Button hover animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* (Also apply to icon) */
|
||||
|
||||
.button-hover, .credit-hover{
|
||||
display:inline-block;
|
||||
-webkit-transform:perspective(1px) translateZ(0);
|
||||
transform:perspective(1px) translateZ(0);
|
||||
box-shadow:0 0 1px rgba(0,0,0,0);
|
||||
-webkit-transition-duration:.1s;
|
||||
transition-duration:.1s;
|
||||
-webkit-transition-property:transform;
|
||||
transition-property:transform
|
||||
}
|
||||
.button-hover:active,.credit-hover:active,
|
||||
.button-hover:focus,.credit-hover:focus,
|
||||
.button-hover:hover,.credit-hover:hover{
|
||||
-webkit-transform:scale(1.02);
|
||||
transform:scale(1.02)
|
||||
}
|
||||
|
||||
|
||||
/* Footer hover animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.footer-hover{
|
||||
display:inline-block;
|
||||
-webkit-transform:perspective(1px) translateZ(0);
|
||||
transform:perspective(1px) translateZ(0);
|
||||
box-shadow:0 0 1px rgba(0,0,0,0);
|
||||
-webkit-transition-duration:.3s;
|
||||
transition-duration:.3s;
|
||||
-webkit-transition-property:transform;
|
||||
transition-property:transform;
|
||||
-webkit-transition-timing-function:ease-out;
|
||||
transition-timing-function:ease-out
|
||||
}
|
||||
.footer-hover:active,.footer-hover:focus,.footer-hover:hover{
|
||||
-webkit-transform:translateY(-8px);
|
||||
transform:translateY(-8px)
|
||||
}
|
99
themes/MagicKingdom/brands.css
vendored
@ -1,99 +0,0 @@
|
||||
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
|
||||
- Rounded user avatars
|
||||
- Buttons
|
||||
- Brand Styles
|
||||
|
||||
*/
|
||||
|
||||
|
||||
/* Rounded avatars
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
/* Disable this if you don't want rounded avatars for users */
|
||||
.rounded-avatar {
|
||||
border-radius: 50%;
|
||||
position: relative;
|
||||
width: auto !important;
|
||||
height: 96px !important;
|
||||
display: block;
|
||||
margin: 40px auto 20px;
|
||||
border-radius: 50%;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
|
||||
.social-icon {
|
||||
font-size: 20px;
|
||||
padding: 5px;
|
||||
}
|
||||
.social-icon-div {
|
||||
padding-bottom: 25px;
|
||||
}
|
||||
.social-icon{color:#fff;}
|
||||
|
||||
/* Buttons
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
:root {
|
||||
--bgColor: #0F2034;
|
||||
--bgColor2: #0C1B2E;
|
||||
--accentColor: #131931;
|
||||
--textColor: #ffffff;
|
||||
--font: 'Karla', sans-serif;
|
||||
--font2: 'Noto Sans Mono', monospace;
|
||||
|
||||
--delay: .3s;
|
||||
--heading: #C0C0C0;
|
||||
}
|
||||
|
||||
.button {
|
||||
position: relative;
|
||||
height: 23px;
|
||||
background-color:var(--accentColor);
|
||||
color: var(--textColor);
|
||||
border: solid var(--accentColor) 2px;
|
||||
border-radius: 10px;
|
||||
font-size: 1rem;
|
||||
text-align: center;
|
||||
display: block;
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
margin-bottom: 10px;
|
||||
padding: 10px; /* 17px */
|
||||
text-decoration: none;
|
||||
/* transition: all .25s cubic-bezier(.08, .59, .29, .99); */
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
|
||||
@media (hover: hover) {
|
||||
.buttonhover {
|
||||
background-color: var(--accentColor);
|
||||
color: #1BD0D9;
|
||||
}
|
||||
}
|
||||
|
||||
.button:active {
|
||||
border: solid #fff 2px;
|
||||
}
|
||||
|
||||
|
||||
/* Brand Icons
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.icon {
|
||||
padding: 0px 8px 3.5px 0px;
|
||||
vertical-align: middle;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
-webkit-filter: grayscale(100%);
|
||||
-moz-filter: grayscale(100%);
|
||||
filter: grayscale(100%);
|
||||
}
|
||||
|
||||
/* .button:hover .icon {
|
||||
-webkit-filter: invert(100%) grayscale(100%);
|
||||
-moz-filter: invert(100%) grayscale(100%);
|
||||
filter: invert(100%) grayscale(100%);
|
||||
} */
|
@ -1,66 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Theme Config
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The theme config allows you to configure how LittleLink Custom should treat your theme.
|
||||
| All settings can either be set to "true" or "false", unless stated otherwise.
|
||||
|
|
||||
| The settings below change how your buttons behave.
|
||||
|
|
||||
*/
|
||||
|
||||
// Some themes may not be compatible with custom buttons created by the Button Editor.
|
||||
// If 'false' the default button CSS is used.
|
||||
'allow_custom_buttons' => 'false',
|
||||
|
||||
'open_links_in_same_tab' => 'false',
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Code
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Custom code allows you to inject customized Blade, PHP, HTML, JavaScript and CSS code.
|
||||
|
|
||||
| In your "extra" folder, you will find 3 separate files for injecting your code to
|
||||
| different places on the final page (head, body, at the end of the body).
|
||||
|
|
||||
| You may also attach custom assets like CSS, JS, or images.
|
||||
| You can find instructions for this in the files in your extra folder.
|
||||
|
|
||||
*/
|
||||
|
||||
'enable_custom_code' => 'false',
|
||||
|
||||
// Disable individual files (only applies if above is 'true').
|
||||
'enable_custom_head' => 'true',
|
||||
'enable_custom_body' => 'true',
|
||||
'enable_custom_body_end' => 'true',
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Icons
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| You may add custom icons to your theme.
|
||||
| These icons are stored under: .../extra/custom-icons.
|
||||
|
|
||||
| You can adjust the file extension types to use other files than just SVGs.
|
||||
|
|
||||
*/
|
||||
|
||||
'use_custom_icons' => 'false',
|
||||
|
||||
// Is not set correct this will cause errors.
|
||||
'custom_icon_extension' => '.svg', // (.png, .jpg ...)
|
||||
|
||||
|
||||
|
||||
];
|
Before Width: | Height: | Size: 231 KiB |
@ -1,29 +0,0 @@
|
||||
# A LittleLink Custom Theme
|
||||
Find more themes: https://github.com/JulianPrieber/llc-themes
|
||||
|
||||
* Theme Name: Magic Kingdom
|
||||
* Theme Version: 1.1
|
||||
* Theme Date: 2022-11-21
|
||||
* Theme Author: JulianPrieber
|
||||
* Theme Author URI: https://github.com/JulianPrieber
|
||||
* Theme Original Author URI: https://github.com/D3FaltX
|
||||
* Theme License: MIT
|
||||
* Source code: https://github.com/JulianPrieber/Magic-Kingdom
|
||||
|
||||
|
||||
### Used assets:
|
||||
* Built using:
|
||||
* https://github.com/dhg/Skeleton
|
||||
* License: MIT
|
||||
|
||||
* Forked from:
|
||||
* https://github.com/johnggli/linktree
|
||||
* License: MIT -> https://github.com/johnggli/linktree/blob/master/LICENSE.md
|
||||
|
||||
* Original author:
|
||||
* https://github.com/D3FaltXD/tree
|
||||
* License: MIT -> https://github.com/D3FaltXD/tree/blob/main/LICENSE.md
|
||||
|
||||
* Background image:
|
||||
* https://www.andreasrocha.com/projects/dOwxKe
|
||||
* License: © Andreas Rocha
|
79
themes/MagicKingdom/share.button.css
vendored
@ -1,79 +0,0 @@
|
||||
.share-icon {
|
||||
padding: 0px 8px 3.5px 0px;
|
||||
vertical-align: middle;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
.sharediv {
|
||||
position:relative;
|
||||
top: 30px;
|
||||
right: 30px;
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
|
||||
.toastdiv {
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
-webkit-align-items: center;
|
||||
align-items: center;
|
||||
-webkit-justify-content: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.toastbox {
|
||||
width: 280px;
|
||||
padding: 10px;
|
||||
background-color: rgba(0, 0, 0, 0.7);
|
||||
color: white;
|
||||
border-radius: 4px;
|
||||
position: fixed;
|
||||
top: 105%;
|
||||
-webkit-transition: transform 0.3s linear;
|
||||
transition: transform 0.3s linear;
|
||||
z-index: 2;
|
||||
text-align: center;
|
||||
}
|
||||
.toastbox.toast-tox--active {
|
||||
-webkit-transform: translateY(-150px);
|
||||
transform: translateY(-150px);
|
||||
}
|
||||
|
||||
.sharebutton,
|
||||
sharebutton {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
height: 48px;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
font-size: 18px;
|
||||
width: 48px;
|
||||
font-weight: 700;
|
||||
line-height: 48px;
|
||||
letter-spacing: 0.1px;
|
||||
white-space: wrap;
|
||||
box-shadow: 0px 0px 16px 1px #1bd0d946 !important;
|
||||
background-color:var(--accentColor);
|
||||
color: var(--textColor);
|
||||
border-radius: 10px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.sharebutton:hover .share-icon {
|
||||
color: #1BD0D9 !important;
|
||||
}
|
||||
.sharebutton:hover {
|
||||
box-shadow: 0px 0px 16px 1px #1bd0d9 !important;
|
||||
}
|
||||
|
||||
|
||||
.sharebutton-mb {
|
||||
display: none;
|
||||
}
|
||||
.sharebutton-img {
|
||||
position: relative;
|
||||
left: 3px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
831
themes/MagicKingdom/skeleton-auto.css
vendored
@ -1,831 +0,0 @@
|
||||
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
|
||||
- Grid
|
||||
- Base Styles
|
||||
- Background
|
||||
- Typography
|
||||
- Links
|
||||
- Code
|
||||
- Spacing
|
||||
- Utilities
|
||||
- Misc
|
||||
- Credit footer
|
||||
|
||||
*/
|
||||
|
||||
|
||||
@import url('https://fonts.bunny.net/css?family=Karla:400,700&display=swap');
|
||||
@import url('https://fonts.bunny.net/css2?family=Noto+Sans+Mono:400,700&display=swap');
|
||||
|
||||
|
||||
/* Grid
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.container {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
text-align: center;
|
||||
margin: 0 auto;
|
||||
box-sizing: border-box; }
|
||||
.column {
|
||||
position: center;
|
||||
width: 100%;
|
||||
float: center;
|
||||
box-sizing: border-box; }
|
||||
|
||||
/* For devices larger than 400px */
|
||||
@media (min-width: 400px) {
|
||||
.container {
|
||||
width: 85%;
|
||||
padding: 0; }
|
||||
}
|
||||
|
||||
/* For devices larger than 550px */
|
||||
@media (min-width: 550px) {
|
||||
.container {
|
||||
width: 80%; }
|
||||
.column,
|
||||
.columns {
|
||||
margin-left: 0; }
|
||||
.column:first-child,
|
||||
.columns:first-child {
|
||||
margin-left: 0; }
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* Base Styles
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* NOTE
|
||||
html is set to 62.5% so that all the REM measurements throughout Skeleton
|
||||
are based on 10px sizing. So basically 1.5rem = 15px :) */
|
||||
|
||||
html {
|
||||
font-size: 100%; }
|
||||
|
||||
/* Background
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
min-height: 100vh;
|
||||
font-family: var(--font);
|
||||
background: radial-gradient(ellipse at bottom, var(--bgColor) 0%, var(--bgColor2) 100%);
|
||||
background-image: url('https://r4.wallpaperflare.com/wallpaper/346/517/218/digital-art-artwork-illustration-environment-purple-background-hd-wallpaper-e09015a99f46aee3385f97f66bf67428.jpg');
|
||||
opacity: 0;
|
||||
animation: 1s ease-out var(--delay) 1 transitionAnimation; /* duration/timing-function/delay/iterations/name */
|
||||
animation-fill-mode: forwards;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
position: relative;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
|
||||
/* Animation */
|
||||
@keyframes transitionAnimation {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(-10px);
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes animate {
|
||||
0% {
|
||||
background-position: -500%;
|
||||
}
|
||||
100% {
|
||||
background-position: 500%;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes animStar {
|
||||
from {
|
||||
transform: translateY(0px);
|
||||
}
|
||||
to {
|
||||
transform: translateY(-2000px);
|
||||
}
|
||||
}
|
||||
|
||||
/* Typography
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
h1 {
|
||||
color: var(--textColor);
|
||||
font-size: 1rem;
|
||||
font-weight: bold;
|
||||
line-height: 1.25;
|
||||
display: block;
|
||||
font-family: var(--font);
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
p {
|
||||
color: var(--heading);
|
||||
font-size: 1rem;
|
||||
font-weight: bold;
|
||||
line-height: 1.25;
|
||||
display: block;
|
||||
font-family: var(--font);
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
|
||||
/* Links
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
a {
|
||||
color: #FFFFFF;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
color: #1BD0D9; }
|
||||
|
||||
.spacing {
|
||||
padding: 0 10px;
|
||||
padding-top: 50px;
|
||||
}
|
||||
|
||||
.footer-hover {
|
||||
font-family: var(--font2);
|
||||
}
|
||||
|
||||
/* Code
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
code {
|
||||
padding: .2rem .5rem;
|
||||
margin: 0 .2rem;
|
||||
font-size: 90%;
|
||||
white-space: nowrap;
|
||||
background: #F1F1F1;
|
||||
border: 1px solid #E1E1E1;
|
||||
border-radius: 4px; }
|
||||
pre > code {
|
||||
display: block;
|
||||
padding: 1rem 1.5rem;
|
||||
white-space: pre; }
|
||||
|
||||
/* Spacing
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
button,
|
||||
.button {
|
||||
margin-bottom: 1rem;
|
||||
display: block !important; }
|
||||
input,
|
||||
textarea,
|
||||
select,
|
||||
fieldset {
|
||||
margin-bottom: 1.5rem; }
|
||||
pre,
|
||||
blockquote,
|
||||
dl,
|
||||
figure,
|
||||
p,
|
||||
ol {
|
||||
margin-bottom: 2.5rem; }
|
||||
|
||||
|
||||
/* Utilities
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.u-full-width {
|
||||
width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.u-max-full-width {
|
||||
max-width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.u-pull-right {
|
||||
float: right; }
|
||||
.u-pull-left {
|
||||
float: left; }
|
||||
|
||||
|
||||
/* Misc
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
hr {
|
||||
margin-top: 3rem;
|
||||
margin-bottom: 3.5rem;
|
||||
border-width: 0;
|
||||
border-top: 1px solid #E1E1E1; }
|
||||
|
||||
|
||||
/* ===== Scrollbar CSS ===== */
|
||||
/* Firefox */
|
||||
* {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #171a1d #31363b;
|
||||
}
|
||||
|
||||
/* Chrome, Edge, and Safari */
|
||||
*::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-track {
|
||||
background: #31363b;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-thumb {
|
||||
background-color: #171a1d;
|
||||
border-radius: 30px;
|
||||
border: 3px none #ffffff;
|
||||
}
|
||||
|
||||
|
||||
/* Credit footer
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* Styling for credit footer text */
|
||||
.credit-txt {
|
||||
font-weight: 700;
|
||||
font-size: 15px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.credit-icon {
|
||||
display: none;
|
||||
right: 5px;
|
||||
}
|
||||
.credit-footer {
|
||||
position: relative;
|
||||
right: 15px;
|
||||
}
|
||||
|
||||
/* Switches text color for credit footer for dark/light mode */
|
||||
|
||||
.credit-txt-clr{
|
||||
color: #FFF !important;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*-----------------------parallax-----------------------*/
|
||||
#object1 {
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
background: transparent;
|
||||
animation: animStar 120s linear infinite;
|
||||
|
||||
box-shadow: 779px 1331px #fff, 324px 42px #fff, 303px 586px #fff,
|
||||
1312px 276px #fff, 451px 625px #fff, 521px 1931px #fff, 1087px 1871px #fff,
|
||||
36px 1546px #fff, 132px 934px #fff, 1698px 901px #fff, 1418px 664px #fff,
|
||||
1448px 1157px #fff, 1084px 232px #fff, 347px 1776px #fff, 1722px 243px #fff,
|
||||
1629px 835px #fff, 479px 969px #fff, 1231px 960px #fff, 586px 384px #fff,
|
||||
164px 527px #fff, 8px 646px #fff, 1150px 1126px #fff, 665px 1357px #fff,
|
||||
1556px 1982px #fff, 1260px 1961px #fff, 1675px 1741px #fff,
|
||||
1843px 1514px #fff, 718px 1628px #fff, 242px 1343px #fff, 1497px 1880px #fff,
|
||||
1364px 230px #fff, 1739px 1302px #fff, 636px 959px #fff, 304px 686px #fff,
|
||||
614px 751px #fff, 1935px 816px #fff, 1428px 60px #fff, 355px 335px #fff,
|
||||
1594px 158px #fff, 90px 60px #fff, 1553px 162px #fff, 1239px 1825px #fff,
|
||||
1945px 587px #fff, 749px 1785px #fff, 1987px 1172px #fff, 1301px 1237px #fff,
|
||||
1039px 342px #fff, 1585px 1481px #fff, 995px 1048px #fff, 524px 932px #fff,
|
||||
214px 413px #fff, 1701px 1300px #fff, 1037px 1613px #fff, 1871px 996px #fff,
|
||||
1360px 1635px #fff, 1110px 1313px #fff, 412px 1783px #fff, 1949px 177px #fff,
|
||||
903px 1854px #fff, 700px 1936px #fff, 378px 125px #fff, 308px 834px #fff,
|
||||
1118px 962px #fff, 1350px 1929px #fff, 781px 1811px #fff, 561px 137px #fff,
|
||||
757px 1148px #fff, 1670px 1979px #fff, 343px 739px #fff, 945px 795px #fff,
|
||||
576px 1903px #fff, 1078px 1436px #fff, 1583px 450px #fff, 1366px 474px #fff,
|
||||
297px 1873px #fff, 192px 162px #fff, 1624px 1633px #fff, 59px 453px #fff,
|
||||
82px 1872px #fff, 1933px 498px #fff, 1966px 1974px #fff, 1975px 1688px #fff,
|
||||
779px 314px #fff, 1858px 1543px #fff, 73px 1507px #fff, 1693px 975px #fff,
|
||||
1683px 108px #fff, 1768px 1654px #fff, 654px 14px #fff, 494px 171px #fff,
|
||||
1689px 1895px #fff, 1660px 263px #fff, 1031px 903px #fff, 1203px 1393px #fff,
|
||||
1333px 1421px #fff, 1113px 41px #fff, 1206px 1645px #fff, 1325px 1635px #fff,
|
||||
142px 388px #fff, 572px 215px #fff, 1535px 296px #fff, 1419px 407px #fff,
|
||||
1379px 1003px #fff, 329px 469px #fff, 1791px 1652px #fff, 935px 1802px #fff,
|
||||
1330px 1820px #fff, 421px 1933px #fff, 828px 365px #fff, 275px 316px #fff,
|
||||
707px 960px #fff, 1605px 1554px #fff, 625px 58px #fff, 717px 1697px #fff,
|
||||
1669px 246px #fff, 1925px 322px #fff, 1154px 1803px #fff, 1929px 295px #fff,
|
||||
1248px 240px #fff, 1045px 1755px #fff, 166px 942px #fff, 1888px 1773px #fff,
|
||||
678px 1963px #fff, 1370px 569px #fff, 1974px 1400px #fff, 1786px 460px #fff,
|
||||
51px 307px #fff, 784px 1400px #fff, 730px 1258px #fff, 1712px 393px #fff,
|
||||
416px 170px #fff, 1797px 1932px #fff, 572px 219px #fff, 1557px 1856px #fff,
|
||||
218px 8px #fff, 348px 1334px #fff, 469px 413px #fff, 385px 1738px #fff,
|
||||
1357px 1818px #fff, 240px 942px #fff, 248px 1847px #fff, 1535px 806px #fff,
|
||||
236px 1514px #fff, 1429px 1556px #fff, 73px 1633px #fff, 1398px 1121px #fff,
|
||||
671px 1301px #fff, 1404px 1663px #fff, 740px 1018px #fff, 1600px 377px #fff,
|
||||
785px 514px #fff, 112px 1084px #fff, 1915px 1887px #fff, 1463px 1848px #fff,
|
||||
687px 1115px #fff, 1268px 1768px #fff, 1729px 1425px #fff,
|
||||
1284px 1022px #fff, 801px 974px #fff, 1975px 1317px #fff, 1354px 834px #fff,
|
||||
1446px 1484px #fff, 1283px 1786px #fff, 11px 523px #fff, 1842px 236px #fff,
|
||||
1355px 654px #fff, 429px 7px #fff, 1033px 1128px #fff, 157px 297px #fff,
|
||||
545px 635px #fff, 52px 1080px #fff, 827px 1520px #fff, 1121px 490px #fff,
|
||||
9px 309px #fff, 1744px 1586px #fff, 1014px 417px #fff, 1534px 524px #fff,
|
||||
958px 552px #fff, 1403px 1496px #fff, 387px 703px #fff, 1522px 548px #fff,
|
||||
1355px 282px #fff, 1532px 601px #fff, 1838px 790px #fff, 290px 259px #fff,
|
||||
295px 598px #fff, 1601px 539px #fff, 1561px 1272px #fff, 34px 1922px #fff,
|
||||
1024px 543px #fff, 467px 369px #fff, 722px 333px #fff, 1976px 1255px #fff,
|
||||
766px 983px #fff, 1582px 1285px #fff, 12px 512px #fff, 617px 1410px #fff,
|
||||
682px 577px #fff, 1334px 1438px #fff, 439px 327px #fff, 1617px 1661px #fff,
|
||||
673px 129px #fff, 794px 941px #fff, 1386px 1902px #fff, 37px 1353px #fff,
|
||||
1467px 1353px #fff, 416px 18px #fff, 187px 344px #fff, 200px 1898px #fff,
|
||||
1491px 1619px #fff, 811px 347px #fff, 924px 1827px #fff, 945px 217px #fff,
|
||||
1735px 1228px #fff, 379px 1890px #fff, 79px 761px #fff, 825px 1837px #fff,
|
||||
1980px 1558px #fff, 1308px 1573px #fff, 1488px 1726px #fff,
|
||||
382px 1208px #fff, 522px 595px #fff, 1277px 1898px #fff, 354px 552px #fff,
|
||||
161px 1784px #fff, 614px 251px #fff, 526px 1576px #fff, 17px 212px #fff,
|
||||
179px 996px #fff, 467px 1208px #fff, 1944px 1838px #fff, 1140px 1093px #fff,
|
||||
858px 1007px #fff, 200px 1064px #fff, 423px 1964px #fff, 1945px 439px #fff,
|
||||
1377px 689px #fff, 1120px 1437px #fff, 1876px 668px #fff, 907px 1324px #fff,
|
||||
343px 1976px #fff, 1816px 1501px #fff, 1849px 177px #fff, 647px 91px #fff,
|
||||
1984px 1012px #fff, 1336px 1300px #fff, 128px 648px #fff, 305px 1060px #fff,
|
||||
1324px 826px #fff, 1263px 1314px #fff, 1801px 629px #fff, 1614px 1555px #fff,
|
||||
1634px 90px #fff, 1603px 452px #fff, 891px 1984px #fff, 1556px 1906px #fff,
|
||||
121px 68px #fff, 1676px 1714px #fff, 516px 936px #fff, 1947px 1492px #fff,
|
||||
1455px 1519px #fff, 45px 602px #fff, 205px 1039px #fff, 793px 172px #fff,
|
||||
1562px 1739px #fff, 1056px 110px #fff, 1512px 379px #fff, 1795px 1621px #fff,
|
||||
1848px 607px #fff, 262px 1719px #fff, 477px 991px #fff, 483px 883px #fff,
|
||||
1239px 1197px #fff, 1496px 647px #fff, 1649px 25px #fff, 1491px 1946px #fff,
|
||||
119px 996px #fff, 179px 1472px #fff, 1341px 808px #fff, 1565px 1700px #fff,
|
||||
407px 1544px #fff, 1754px 357px #fff, 1288px 981px #fff, 902px 1997px #fff,
|
||||
1755px 1668px #fff, 186px 877px #fff, 1202px 1882px #fff, 461px 1213px #fff,
|
||||
1400px 748px #fff, 1969px 1899px #fff, 809px 522px #fff, 514px 1219px #fff,
|
||||
374px 275px #fff, 938px 1973px #fff, 357px 552px #fff, 144px 1722px #fff,
|
||||
1572px 912px #fff, 402px 1858px #fff, 1544px 1195px #fff, 667px 1257px #fff,
|
||||
727px 1496px #fff, 993px 232px #fff, 1772px 313px #fff, 1040px 1590px #fff,
|
||||
1204px 1973px #fff, 1268px 79px #fff, 1555px 1048px #fff, 986px 1707px #fff,
|
||||
978px 1710px #fff, 713px 360px #fff, 407px 863px #fff, 461px 736px #fff,
|
||||
284px 1608px #fff, 103px 430px #fff, 1283px 1319px #fff, 977px 1186px #fff,
|
||||
1966px 1516px #fff, 1287px 1129px #fff, 70px 1098px #fff, 1189px 889px #fff,
|
||||
1126px 1734px #fff, 309px 1292px #fff, 879px 764px #fff, 65px 473px #fff,
|
||||
1003px 1959px #fff, 658px 791px #fff, 402px 1576px #fff, 35px 622px #fff,
|
||||
529px 1589px #fff, 164px 666px #fff, 1876px 1290px #fff, 1541px 526px #fff,
|
||||
270px 1297px #fff, 440px 865px #fff, 1500px 802px #fff, 182px 1754px #fff,
|
||||
1264px 892px #fff, 272px 1249px #fff, 1289px 1535px #fff, 190px 1646px #fff,
|
||||
955px 242px #fff, 1456px 1597px #fff, 1727px 1983px #fff, 635px 801px #fff,
|
||||
226px 455px #fff, 1396px 1710px #fff, 849px 1863px #fff, 237px 1264px #fff,
|
||||
839px 140px #fff, 1122px 735px #fff, 1280px 15px #fff, 1318px 242px #fff,
|
||||
1819px 1148px #fff, 333px 1392px #fff, 1949px 553px #fff, 1878px 1332px #fff,
|
||||
467px 548px #fff, 1812px 1082px #fff, 1067px 193px #fff, 243px 156px #fff,
|
||||
483px 1616px #fff, 1714px 933px #fff, 759px 1800px #fff, 1822px 995px #fff,
|
||||
1877px 572px #fff, 581px 1084px #fff, 107px 732px #fff, 642px 1837px #fff,
|
||||
166px 1493px #fff, 1555px 198px #fff, 819px 307px #fff, 947px 345px #fff,
|
||||
827px 224px #fff, 927px 1394px #fff, 540px 467px #fff, 1093px 405px #fff,
|
||||
1140px 927px #fff, 130px 529px #fff, 33px 1980px #fff, 1147px 1663px #fff,
|
||||
1616px 1436px #fff, 528px 710px #fff, 798px 1100px #fff, 505px 1480px #fff,
|
||||
899px 641px #fff, 1909px 1949px #fff, 1311px 964px #fff, 979px 1301px #fff,
|
||||
1393px 969px #fff, 1793px 1886px #fff, 292px 357px #fff, 1196px 1718px #fff,
|
||||
1290px 1994px #fff, 537px 1973px #fff, 1181px 1674px #fff,
|
||||
1740px 1566px #fff, 1307px 265px #fff, 922px 522px #fff, 1892px 472px #fff,
|
||||
384px 1746px #fff, 392px 1098px #fff, 647px 548px #fff, 390px 1498px #fff,
|
||||
1246px 138px #fff, 730px 876px #fff, 192px 1472px #fff, 1790px 1789px #fff,
|
||||
928px 311px #fff, 1253px 1647px #fff, 747px 1921px #fff, 1561px 1025px #fff,
|
||||
1533px 1292px #fff, 1985px 195px #fff, 728px 729px #fff, 1712px 1936px #fff,
|
||||
512px 1717px #fff, 1528px 483px #fff, 313px 1642px #fff, 281px 1849px #fff,
|
||||
1212px 799px #fff, 435px 1191px #fff, 1422px 611px #fff, 1718px 1964px #fff,
|
||||
411px 944px #fff, 210px 636px #fff, 1502px 1295px #fff, 1434px 349px #fff,
|
||||
769px 60px #fff, 747px 1053px #fff, 789px 504px #fff, 1436px 1264px #fff,
|
||||
1893px 1225px #fff, 1394px 1788px #fff, 1108px 1317px #fff,
|
||||
1673px 1395px #fff, 854px 1010px #fff, 1705px 80px #fff, 1858px 148px #fff,
|
||||
1729px 344px #fff, 1388px 664px #fff, 895px 406px #fff, 1479px 157px #fff,
|
||||
1441px 1157px #fff, 552px 1900px #fff, 516px 364px #fff, 1647px 189px #fff,
|
||||
1427px 1071px #fff, 785px 729px #fff, 1080px 1710px #fff, 504px 204px #fff,
|
||||
1177px 1622px #fff, 657px 34px #fff, 1296px 1099px #fff, 248px 180px #fff,
|
||||
1212px 1568px #fff, 667px 1562px #fff, 695px 841px #fff, 1608px 1247px #fff,
|
||||
751px 882px #fff, 87px 167px #fff, 607px 1368px #fff, 1363px 1203px #fff,
|
||||
1836px 317px #fff, 1668px 1703px #fff, 830px 1154px #fff, 1721px 1398px #fff,
|
||||
1601px 1280px #fff, 976px 874px #fff, 1743px 254px #fff, 1020px 1815px #fff,
|
||||
1670px 1766px #fff, 1890px 735px #fff, 1379px 136px #fff, 1864px 695px #fff,
|
||||
206px 965px #fff, 1404px 1932px #fff, 1923px 1360px #fff, 247px 682px #fff,
|
||||
519px 1708px #fff, 645px 750px #fff, 1164px 1204px #fff, 834px 323px #fff,
|
||||
172px 1350px #fff, 213px 972px #fff, 1837px 190px #fff, 285px 1806px #fff,
|
||||
1047px 1299px #fff, 1548px 825px #fff, 1730px 324px #fff, 1346px 1909px #fff,
|
||||
772px 270px #fff, 345px 1190px #fff, 478px 1433px #fff, 1479px 25px #fff,
|
||||
1994px 1830px #fff, 1744px 732px #fff, 20px 1635px #fff, 690px 1795px #fff,
|
||||
1594px 569px #fff, 579px 245px #fff, 1398px 733px #fff, 408px 1352px #fff,
|
||||
1774px 120px #fff, 1152px 1370px #fff, 1698px 1810px #fff, 710px 1450px #fff,
|
||||
665px 286px #fff, 493px 1720px #fff, 786px 5px #fff, 637px 1140px #fff,
|
||||
764px 324px #fff, 927px 310px #fff, 938px 1424px #fff, 1884px 744px #fff,
|
||||
913px 462px #fff, 1831px 1936px #fff, 1527px 249px #fff, 36px 1381px #fff,
|
||||
1597px 581px #fff, 1530px 355px #fff, 949px 459px #fff, 799px 828px #fff,
|
||||
242px 1471px #fff, 654px 797px #fff, 796px 594px #fff, 1365px 678px #fff,
|
||||
752px 23px #fff, 1630px 541px #fff, 982px 72px #fff, 1733px 1831px #fff,
|
||||
21px 412px #fff, 775px 998px #fff, 335px 1945px #fff, 264px 583px #fff,
|
||||
158px 1311px #fff, 528px 164px #fff, 1978px 574px #fff, 717px 1203px #fff,
|
||||
734px 1591px #fff, 1555px 820px #fff, 16px 1943px #fff, 1625px 1177px #fff,
|
||||
1236px 690px #fff, 1585px 1590px #fff, 1737px 1728px #fff, 721px 698px #fff,
|
||||
1804px 1186px #fff, 166px 980px #fff, 1850px 230px #fff, 330px 1712px #fff,
|
||||
95px 797px #fff, 1948px 1078px #fff, 469px 939px #fff, 1269px 1899px #fff,
|
||||
955px 1220px #fff, 1137px 1075px #fff, 312px 1293px #fff, 986px 1762px #fff,
|
||||
1103px 1238px #fff, 428px 1993px #fff, 355px 570px #fff, 977px 1836px #fff,
|
||||
1395px 1092px #fff, 276px 913px #fff, 1743px 656px #fff, 773px 502px #fff,
|
||||
1686px 1322px #fff, 1516px 1945px #fff, 1334px 501px #fff, 266px 156px #fff,
|
||||
455px 655px #fff, 798px 72px #fff, 1059px 1259px #fff, 1402px 1687px #fff,
|
||||
236px 1329px #fff, 1455px 786px #fff, 146px 1228px #fff, 1851px 823px #fff,
|
||||
1062px 100px #fff, 1220px 953px #fff, 20px 1826px #fff, 36px 1063px #fff,
|
||||
1525px 338px #fff, 790px 1521px #fff, 741px 1099px #fff, 288px 1489px #fff,
|
||||
700px 1060px #fff, 390px 1071px #fff, 411px 1036px #fff, 1853px 1072px #fff,
|
||||
1446px 1085px #fff, 1164px 874px #fff, 924px 925px #fff, 291px 271px #fff,
|
||||
1257px 1964px #fff, 1580px 1352px #fff, 1507px 1216px #fff, 211px 956px #fff,
|
||||
985px 1195px #fff, 975px 1640px #fff, 518px 101px #fff, 663px 1395px #fff,
|
||||
914px 532px #fff, 145px 1320px #fff, 69px 1397px #fff, 982px 523px #fff,
|
||||
257px 725px #fff, 1599px 831px #fff, 1636px 1513px #fff, 1250px 1158px #fff,
|
||||
1132px 604px #fff, 183px 102px #fff, 1057px 318px #fff, 1247px 1835px #fff,
|
||||
1983px 1110px #fff, 1077px 1455px #fff, 921px 1770px #fff, 806px 1350px #fff,
|
||||
1938px 1992px #fff, 855px 1260px #fff, 902px 1345px #fff, 658px 1908px #fff,
|
||||
1845px 679px #fff, 712px 1482px #fff, 595px 950px #fff, 1784px 1992px #fff,
|
||||
1847px 1785px #fff, 691px 1004px #fff, 175px 1179px #fff, 1666px 1911px #fff,
|
||||
41px 61px #fff, 971px 1080px #fff, 1830px 1450px #fff, 1351px 1518px #fff,
|
||||
1257px 99px #fff, 1395px 1498px #fff, 1117px 252px #fff, 1779px 597px #fff,
|
||||
1346px 729px #fff, 1108px 1144px #fff, 402px 691px #fff, 72px 496px #fff,
|
||||
1673px 1604px #fff, 1497px 974px #fff, 1865px 1664px #fff, 88px 806px #fff,
|
||||
918px 77px #fff, 244px 1118px #fff, 256px 1820px #fff, 1851px 1840px #fff,
|
||||
605px 1851px #fff, 634px 383px #fff, 865px 37px #fff, 943px 1024px #fff,
|
||||
1951px 177px #fff, 1097px 523px #fff, 985px 1700px #fff, 1243px 122px #fff,
|
||||
768px 1070px #fff, 468px 194px #fff, 320px 1867px #fff, 1850px 185px #fff,
|
||||
380px 1616px #fff, 468px 1294px #fff, 1122px 1743px #fff, 884px 299px #fff,
|
||||
1300px 1917px #fff, 1860px 396px #fff, 1270px 990px #fff, 529px 733px #fff,
|
||||
1975px 1347px #fff, 1885px 685px #fff, 226px 506px #fff, 651px 878px #fff,
|
||||
1323px 680px #fff, 1284px 680px #fff, 238px 1967px #fff, 911px 174px #fff,
|
||||
1111px 521px #fff, 1150px 85px #fff, 794px 502px #fff, 484px 1856px #fff,
|
||||
1809px 368px #fff, 112px 953px #fff, 590px 1009px #fff, 1655px 311px #fff,
|
||||
100px 1026px #fff, 1803px 352px #fff, 865px 306px #fff, 1077px 1019px #fff,
|
||||
1335px 872px #fff, 1647px 1298px #fff, 1233px 1387px #fff, 698px 1036px #fff,
|
||||
659px 1860px #fff, 388px 1412px #fff, 1212px 458px #fff, 755px 1468px #fff,
|
||||
696px 1654px #fff, 1144px 60px #fff;
|
||||
}
|
||||
|
||||
#object1:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: auto;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
background: transparent;
|
||||
|
||||
box-shadow: 779px 1331px #fff, 324px 42px #fff, 303px 586px #fff,
|
||||
1312px 276px #fff, 451px 625px #fff, 521px 1931px #fff, 1087px 1871px #fff,
|
||||
36px 1546px #fff, 132px 934px #fff, 1698px 901px #fff, 1418px 664px #fff,
|
||||
1448px 1157px #fff, 1084px 232px #fff, 347px 1776px #fff, 1722px 243px #fff,
|
||||
1629px 835px #fff, 479px 969px #fff, 1231px 960px #fff, 586px 384px #fff,
|
||||
164px 527px #fff, 8px 646px #fff, 1150px 1126px #fff, 665px 1357px #fff,
|
||||
1556px 1982px #fff, 1260px 1961px #fff, 1675px 1741px #fff,
|
||||
1843px 1514px #fff, 718px 1628px #fff, 242px 1343px #fff, 1497px 1880px #fff,
|
||||
1364px 230px #fff, 1739px 1302px #fff, 636px 959px #fff, 304px 686px #fff,
|
||||
614px 751px #fff, 1935px 816px #fff, 1428px 60px #fff, 355px 335px #fff,
|
||||
1594px 158px #fff, 90px 60px #fff, 1553px 162px #fff, 1239px 1825px #fff,
|
||||
1945px 587px #fff, 749px 1785px #fff, 1987px 1172px #fff, 1301px 1237px #fff,
|
||||
1039px 342px #fff, 1585px 1481px #fff, 995px 1048px #fff, 524px 932px #fff,
|
||||
214px 413px #fff, 1701px 1300px #fff, 1037px 1613px #fff, 1871px 996px #fff,
|
||||
1360px 1635px #fff, 1110px 1313px #fff, 412px 1783px #fff, 1949px 177px #fff,
|
||||
903px 1854px #fff, 700px 1936px #fff, 378px 125px #fff, 308px 834px #fff,
|
||||
1118px 962px #fff, 1350px 1929px #fff, 781px 1811px #fff, 561px 137px #fff,
|
||||
757px 1148px #fff, 1670px 1979px #fff, 343px 739px #fff, 945px 795px #fff,
|
||||
576px 1903px #fff, 1078px 1436px #fff, 1583px 450px #fff, 1366px 474px #fff,
|
||||
297px 1873px #fff, 192px 162px #fff, 1624px 1633px #fff, 59px 453px #fff,
|
||||
82px 1872px #fff, 1933px 498px #fff, 1966px 1974px #fff, 1975px 1688px #fff,
|
||||
779px 314px #fff, 1858px 1543px #fff, 73px 1507px #fff, 1693px 975px #fff,
|
||||
1683px 108px #fff, 1768px 1654px #fff, 654px 14px #fff, 494px 171px #fff,
|
||||
1689px 1895px #fff, 1660px 263px #fff, 1031px 903px #fff, 1203px 1393px #fff,
|
||||
1333px 1421px #fff, 1113px 41px #fff, 1206px 1645px #fff, 1325px 1635px #fff,
|
||||
142px 388px #fff, 572px 215px #fff, 1535px 296px #fff, 1419px 407px #fff,
|
||||
1379px 1003px #fff, 329px 469px #fff, 1791px 1652px #fff, 935px 1802px #fff,
|
||||
1330px 1820px #fff, 421px 1933px #fff, 828px 365px #fff, 275px 316px #fff,
|
||||
707px 960px #fff, 1605px 1554px #fff, 625px 58px #fff, 717px 1697px #fff,
|
||||
1669px 246px #fff, 1925px 322px #fff, 1154px 1803px #fff, 1929px 295px #fff,
|
||||
1248px 240px #fff, 1045px 1755px #fff, 166px 942px #fff, 1888px 1773px #fff,
|
||||
678px 1963px #fff, 1370px 569px #fff, 1974px 1400px #fff, 1786px 460px #fff,
|
||||
51px 307px #fff, 784px 1400px #fff, 730px 1258px #fff, 1712px 393px #fff,
|
||||
416px 170px #fff, 1797px 1932px #fff, 572px 219px #fff, 1557px 1856px #fff,
|
||||
218px 8px #fff, 348px 1334px #fff, 469px 413px #fff, 385px 1738px #fff,
|
||||
1357px 1818px #fff, 240px 942px #fff, 248px 1847px #fff, 1535px 806px #fff,
|
||||
236px 1514px #fff, 1429px 1556px #fff, 73px 1633px #fff, 1398px 1121px #fff,
|
||||
671px 1301px #fff, 1404px 1663px #fff, 740px 1018px #fff, 1600px 377px #fff,
|
||||
785px 514px #fff, 112px 1084px #fff, 1915px 1887px #fff, 1463px 1848px #fff,
|
||||
687px 1115px #fff, 1268px 1768px #fff, 1729px 1425px #fff,
|
||||
1284px 1022px #fff, 801px 974px #fff, 1975px 1317px #fff, 1354px 834px #fff,
|
||||
1446px 1484px #fff, 1283px 1786px #fff, 11px 523px #fff, 1842px 236px #fff,
|
||||
1355px 654px #fff, 429px 7px #fff, 1033px 1128px #fff, 157px 297px #fff,
|
||||
545px 635px #fff, 52px 1080px #fff, 827px 1520px #fff, 1121px 490px #fff,
|
||||
9px 309px #fff, 1744px 1586px #fff, 1014px 417px #fff, 1534px 524px #fff,
|
||||
958px 552px #fff, 1403px 1496px #fff, 387px 703px #fff, 1522px 548px #fff,
|
||||
1355px 282px #fff, 1532px 601px #fff, 1838px 790px #fff, 290px 259px #fff,
|
||||
295px 598px #fff, 1601px 539px #fff, 1561px 1272px #fff, 34px 1922px #fff,
|
||||
1024px 543px #fff, 467px 369px #fff, 722px 333px #fff, 1976px 1255px #fff,
|
||||
766px 983px #fff, 1582px 1285px #fff, 12px 512px #fff, 617px 1410px #fff,
|
||||
682px 577px #fff, 1334px 1438px #fff, 439px 327px #fff, 1617px 1661px #fff,
|
||||
673px 129px #fff, 794px 941px #fff, 1386px 1902px #fff, 37px 1353px #fff,
|
||||
1467px 1353px #fff, 416px 18px #fff, 187px 344px #fff, 200px 1898px #fff,
|
||||
1491px 1619px #fff, 811px 347px #fff, 924px 1827px #fff, 945px 217px #fff,
|
||||
1735px 1228px #fff, 379px 1890px #fff, 79px 761px #fff, 825px 1837px #fff,
|
||||
1980px 1558px #fff, 1308px 1573px #fff, 1488px 1726px #fff,
|
||||
382px 1208px #fff, 522px 595px #fff, 1277px 1898px #fff, 354px 552px #fff,
|
||||
161px 1784px #fff, 614px 251px #fff, 526px 1576px #fff, 17px 212px #fff,
|
||||
179px 996px #fff, 467px 1208px #fff, 1944px 1838px #fff, 1140px 1093px #fff,
|
||||
858px 1007px #fff, 200px 1064px #fff, 423px 1964px #fff, 1945px 439px #fff,
|
||||
1377px 689px #fff, 1120px 1437px #fff, 1876px 668px #fff, 907px 1324px #fff,
|
||||
343px 1976px #fff, 1816px 1501px #fff, 1849px 177px #fff, 647px 91px #fff,
|
||||
1984px 1012px #fff, 1336px 1300px #fff, 128px 648px #fff, 305px 1060px #fff,
|
||||
1324px 826px #fff, 1263px 1314px #fff, 1801px 629px #fff, 1614px 1555px #fff,
|
||||
1634px 90px #fff, 1603px 452px #fff, 891px 1984px #fff, 1556px 1906px #fff,
|
||||
121px 68px #fff, 1676px 1714px #fff, 516px 936px #fff, 1947px 1492px #fff,
|
||||
1455px 1519px #fff, 45px 602px #fff, 205px 1039px #fff, 793px 172px #fff,
|
||||
1562px 1739px #fff, 1056px 110px #fff, 1512px 379px #fff, 1795px 1621px #fff,
|
||||
1848px 607px #fff, 262px 1719px #fff, 477px 991px #fff, 483px 883px #fff,
|
||||
1239px 1197px #fff, 1496px 647px #fff, 1649px 25px #fff, 1491px 1946px #fff,
|
||||
119px 996px #fff, 179px 1472px #fff, 1341px 808px #fff, 1565px 1700px #fff,
|
||||
407px 1544px #fff, 1754px 357px #fff, 1288px 981px #fff, 902px 1997px #fff,
|
||||
1755px 1668px #fff, 186px 877px #fff, 1202px 1882px #fff, 461px 1213px #fff,
|
||||
1400px 748px #fff, 1969px 1899px #fff, 809px 522px #fff, 514px 1219px #fff,
|
||||
374px 275px #fff, 938px 1973px #fff, 357px 552px #fff, 144px 1722px #fff,
|
||||
1572px 912px #fff, 402px 1858px #fff, 1544px 1195px #fff, 667px 1257px #fff,
|
||||
727px 1496px #fff, 993px 232px #fff, 1772px 313px #fff, 1040px 1590px #fff,
|
||||
1204px 1973px #fff, 1268px 79px #fff, 1555px 1048px #fff, 986px 1707px #fff,
|
||||
978px 1710px #fff, 713px 360px #fff, 407px 863px #fff, 461px 736px #fff,
|
||||
284px 1608px #fff, 103px 430px #fff, 1283px 1319px #fff, 977px 1186px #fff,
|
||||
1966px 1516px #fff, 1287px 1129px #fff, 70px 1098px #fff, 1189px 889px #fff,
|
||||
1126px 1734px #fff, 309px 1292px #fff, 879px 764px #fff, 65px 473px #fff,
|
||||
1003px 1959px #fff, 658px 791px #fff, 402px 1576px #fff, 35px 622px #fff,
|
||||
529px 1589px #fff, 164px 666px #fff, 1876px 1290px #fff, 1541px 526px #fff,
|
||||
270px 1297px #fff, 440px 865px #fff, 1500px 802px #fff, 182px 1754px #fff,
|
||||
1264px 892px #fff, 272px 1249px #fff, 1289px 1535px #fff, 190px 1646px #fff,
|
||||
955px 242px #fff, 1456px 1597px #fff, 1727px 1983px #fff, 635px 801px #fff,
|
||||
226px 455px #fff, 1396px 1710px #fff, 849px 1863px #fff, 237px 1264px #fff,
|
||||
839px 140px #fff, 1122px 735px #fff, 1280px 15px #fff, 1318px 242px #fff,
|
||||
1819px 1148px #fff, 333px 1392px #fff, 1949px 553px #fff, 1878px 1332px #fff,
|
||||
467px 548px #fff, 1812px 1082px #fff, 1067px 193px #fff, 243px 156px #fff,
|
||||
483px 1616px #fff, 1714px 933px #fff, 759px 1800px #fff, 1822px 995px #fff,
|
||||
1877px 572px #fff, 581px 1084px #fff, 107px 732px #fff, 642px 1837px #fff,
|
||||
166px 1493px #fff, 1555px 198px #fff, 819px 307px #fff, 947px 345px #fff,
|
||||
827px 224px #fff, 927px 1394px #fff, 540px 467px #fff, 1093px 405px #fff,
|
||||
1140px 927px #fff, 130px 529px #fff, 33px 1980px #fff, 1147px 1663px #fff,
|
||||
1616px 1436px #fff, 528px 710px #fff, 798px 1100px #fff, 505px 1480px #fff,
|
||||
899px 641px #fff, 1909px 1949px #fff, 1311px 964px #fff, 979px 1301px #fff,
|
||||
1393px 969px #fff, 1793px 1886px #fff, 292px 357px #fff, 1196px 1718px #fff,
|
||||
1290px 1994px #fff, 537px 1973px #fff, 1181px 1674px #fff,
|
||||
1740px 1566px #fff, 1307px 265px #fff, 922px 522px #fff, 1892px 472px #fff,
|
||||
384px 1746px #fff, 392px 1098px #fff, 647px 548px #fff, 390px 1498px #fff,
|
||||
1246px 138px #fff, 730px 876px #fff, 192px 1472px #fff, 1790px 1789px #fff,
|
||||
928px 311px #fff, 1253px 1647px #fff, 747px 1921px #fff, 1561px 1025px #fff,
|
||||
1533px 1292px #fff, 1985px 195px #fff, 728px 729px #fff, 1712px 1936px #fff,
|
||||
512px 1717px #fff, 1528px 483px #fff, 313px 1642px #fff, 281px 1849px #fff,
|
||||
1212px 799px #fff, 435px 1191px #fff, 1422px 611px #fff, 1718px 1964px #fff,
|
||||
411px 944px #fff, 210px 636px #fff, 1502px 1295px #fff, 1434px 349px #fff,
|
||||
769px 60px #fff, 747px 1053px #fff, 789px 504px #fff, 1436px 1264px #fff,
|
||||
1893px 1225px #fff, 1394px 1788px #fff, 1108px 1317px #fff,
|
||||
1673px 1395px #fff, 854px 1010px #fff, 1705px 80px #fff, 1858px 148px #fff,
|
||||
1729px 344px #fff, 1388px 664px #fff, 895px 406px #fff, 1479px 157px #fff,
|
||||
1441px 1157px #fff, 552px 1900px #fff, 516px 364px #fff, 1647px 189px #fff,
|
||||
1427px 1071px #fff, 785px 729px #fff, 1080px 1710px #fff, 504px 204px #fff,
|
||||
1177px 1622px #fff, 657px 34px #fff, 1296px 1099px #fff, 248px 180px #fff,
|
||||
1212px 1568px #fff, 667px 1562px #fff, 695px 841px #fff, 1608px 1247px #fff,
|
||||
751px 882px #fff, 87px 167px #fff, 607px 1368px #fff, 1363px 1203px #fff,
|
||||
1836px 317px #fff, 1668px 1703px #fff, 830px 1154px #fff, 1721px 1398px #fff,
|
||||
1601px 1280px #fff, 976px 874px #fff, 1743px 254px #fff, 1020px 1815px #fff,
|
||||
1670px 1766px #fff, 1890px 735px #fff, 1379px 136px #fff, 1864px 695px #fff,
|
||||
206px 965px #fff, 1404px 1932px #fff, 1923px 1360px #fff, 247px 682px #fff,
|
||||
519px 1708px #fff, 645px 750px #fff, 1164px 1204px #fff, 834px 323px #fff,
|
||||
172px 1350px #fff, 213px 972px #fff, 1837px 190px #fff, 285px 1806px #fff,
|
||||
1047px 1299px #fff, 1548px 825px #fff, 1730px 324px #fff, 1346px 1909px #fff,
|
||||
772px 270px #fff, 345px 1190px #fff, 478px 1433px #fff, 1479px 25px #fff,
|
||||
1994px 1830px #fff, 1744px 732px #fff, 20px 1635px #fff, 690px 1795px #fff,
|
||||
1594px 569px #fff, 579px 245px #fff, 1398px 733px #fff, 408px 1352px #fff,
|
||||
1774px 120px #fff, 1152px 1370px #fff, 1698px 1810px #fff, 710px 1450px #fff,
|
||||
665px 286px #fff, 493px 1720px #fff, 786px 5px #fff, 637px 1140px #fff,
|
||||
764px 324px #fff, 927px 310px #fff, 938px 1424px #fff, 1884px 744px #fff,
|
||||
913px 462px #fff, 1831px 1936px #fff, 1527px 249px #fff, 36px 1381px #fff,
|
||||
1597px 581px #fff, 1530px 355px #fff, 949px 459px #fff, 799px 828px #fff,
|
||||
242px 1471px #fff, 654px 797px #fff, 796px 594px #fff, 1365px 678px #fff,
|
||||
752px 23px #fff, 1630px 541px #fff, 982px 72px #fff, 1733px 1831px #fff,
|
||||
21px 412px #fff, 775px 998px #fff, 335px 1945px #fff, 264px 583px #fff,
|
||||
158px 1311px #fff, 528px 164px #fff, 1978px 574px #fff, 717px 1203px #fff,
|
||||
734px 1591px #fff, 1555px 820px #fff, 16px 1943px #fff, 1625px 1177px #fff,
|
||||
1236px 690px #fff, 1585px 1590px #fff, 1737px 1728px #fff, 721px 698px #fff,
|
||||
1804px 1186px #fff, 166px 980px #fff, 1850px 230px #fff, 330px 1712px #fff,
|
||||
95px 797px #fff, 1948px 1078px #fff, 469px 939px #fff, 1269px 1899px #fff,
|
||||
955px 1220px #fff, 1137px 1075px #fff, 312px 1293px #fff, 986px 1762px #fff,
|
||||
1103px 1238px #fff, 428px 1993px #fff, 355px 570px #fff, 977px 1836px #fff,
|
||||
1395px 1092px #fff, 276px 913px #fff, 1743px 656px #fff, 773px 502px #fff,
|
||||
1686px 1322px #fff, 1516px 1945px #fff, 1334px 501px #fff, 266px 156px #fff,
|
||||
455px 655px #fff, 798px 72px #fff, 1059px 1259px #fff, 1402px 1687px #fff,
|
||||
236px 1329px #fff, 1455px 786px #fff, 146px 1228px #fff, 1851px 823px #fff,
|
||||
1062px 100px #fff, 1220px 953px #fff, 20px 1826px #fff, 36px 1063px #fff,
|
||||
1525px 338px #fff, 790px 1521px #fff, 741px 1099px #fff, 288px 1489px #fff,
|
||||
700px 1060px #fff, 390px 1071px #fff, 411px 1036px #fff, 1853px 1072px #fff,
|
||||
1446px 1085px #fff, 1164px 874px #fff, 924px 925px #fff, 291px 271px #fff,
|
||||
1257px 1964px #fff, 1580px 1352px #fff, 1507px 1216px #fff, 211px 956px #fff,
|
||||
985px 1195px #fff, 975px 1640px #fff, 518px 101px #fff, 663px 1395px #fff,
|
||||
914px 532px #fff, 145px 1320px #fff, 69px 1397px #fff, 982px 523px #fff,
|
||||
257px 725px #fff, 1599px 831px #fff, 1636px 1513px #fff, 1250px 1158px #fff,
|
||||
1132px 604px #fff, 183px 102px #fff, 1057px 318px #fff, 1247px 1835px #fff,
|
||||
1983px 1110px #fff, 1077px 1455px #fff, 921px 1770px #fff, 806px 1350px #fff,
|
||||
1938px 1992px #fff, 855px 1260px #fff, 902px 1345px #fff, 658px 1908px #fff,
|
||||
1845px 679px #fff, 712px 1482px #fff, 595px 950px #fff, 1784px 1992px #fff,
|
||||
1847px 1785px #fff, 691px 1004px #fff, 175px 1179px #fff, 1666px 1911px #fff,
|
||||
41px 61px #fff, 971px 1080px #fff, 1830px 1450px #fff, 1351px 1518px #fff,
|
||||
1257px 99px #fff, 1395px 1498px #fff, 1117px 252px #fff, 1779px 597px #fff,
|
||||
1346px 729px #fff, 1108px 1144px #fff, 402px 691px #fff, 72px 496px #fff,
|
||||
1673px 1604px #fff, 1497px 974px #fff, 1865px 1664px #fff, 88px 806px #fff,
|
||||
918px 77px #fff, 244px 1118px #fff, 256px 1820px #fff, 1851px 1840px #fff,
|
||||
605px 1851px #fff, 634px 383px #fff, 865px 37px #fff, 943px 1024px #fff,
|
||||
1951px 177px #fff, 1097px 523px #fff, 985px 1700px #fff, 1243px 122px #fff,
|
||||
768px 1070px #fff, 468px 194px #fff, 320px 1867px #fff, 1850px 185px #fff,
|
||||
380px 1616px #fff, 468px 1294px #fff, 1122px 1743px #fff, 884px 299px #fff,
|
||||
1300px 1917px #fff, 1860px 396px #fff, 1270px 990px #fff, 529px 733px #fff,
|
||||
1975px 1347px #fff, 1885px 685px #fff, 226px 506px #fff, 651px 878px #fff,
|
||||
1323px 680px #fff, 1284px 680px #fff, 238px 1967px #fff, 911px 174px #fff,
|
||||
1111px 521px #fff, 1150px 85px #fff, 794px 502px #fff, 484px 1856px #fff,
|
||||
1809px 368px #fff, 112px 953px #fff, 590px 1009px #fff, 1655px 311px #fff,
|
||||
100px 1026px #fff, 1803px 352px #fff, 865px 306px #fff, 1077px 1019px #fff,
|
||||
1335px 872px #fff, 1647px 1298px #fff, 1233px 1387px #fff, 698px 1036px #fff,
|
||||
659px 1860px #fff, 388px 1412px #fff, 1212px 458px #fff, 755px 1468px #fff,
|
||||
696px 1654px #fff, 1144px 60px #fff;
|
||||
}
|
||||
|
||||
#object2 {
|
||||
width: 2px;
|
||||
height: 2px;
|
||||
background: transparent;
|
||||
animation: animStar 180s linear infinite;
|
||||
|
||||
box-shadow: 1448px 320px #fff, 1775px 1663px #fff, 332px 1364px #fff,
|
||||
878px 340px #fff, 569px 1832px #fff, 1422px 1684px #fff, 1946px 1907px #fff,
|
||||
121px 979px #fff, 1044px 1069px #fff, 463px 381px #fff, 423px 112px #fff,
|
||||
523px 1179px #fff, 779px 654px #fff, 1398px 694px #fff, 1085px 1464px #fff,
|
||||
1599px 1869px #fff, 801px 1882px #fff, 779px 1231px #fff, 552px 932px #fff,
|
||||
1057px 1196px #fff, 282px 1280px #fff, 496px 1986px #fff, 1833px 1120px #fff,
|
||||
1802px 1293px #fff, 6px 1696px #fff, 412px 1902px #fff, 605px 438px #fff,
|
||||
24px 1212px #fff, 234px 1320px #fff, 544px 344px #fff, 1107px 170px #fff,
|
||||
1603px 196px #fff, 905px 648px #fff, 68px 1458px #fff, 649px 1969px #fff,
|
||||
744px 675px #fff, 1127px 478px #fff, 714px 1814px #fff, 1486px 526px #fff,
|
||||
270px 1636px #fff, 1931px 149px #fff, 1807px 378px #fff, 8px 390px #fff,
|
||||
1415px 699px #fff, 1473px 1211px #fff, 1590px 141px #fff, 270px 1705px #fff,
|
||||
69px 1423px #fff, 1108px 1053px #fff, 1946px 128px #fff, 371px 371px #fff,
|
||||
1490px 220px #fff, 357px 1885px #fff, 363px 363px #fff, 1896px 1256px #fff,
|
||||
1979px 1050px #fff, 947px 1342px #fff, 1754px 242px #fff, 514px 974px #fff,
|
||||
65px 1477px #fff, 1840px 547px #fff, 950px 695px #fff, 459px 1150px #fff,
|
||||
1124px 1502px #fff, 481px 940px #fff, 680px 839px #fff, 797px 1169px #fff,
|
||||
1977px 1491px #fff, 734px 1724px #fff, 210px 298px #fff, 816px 628px #fff,
|
||||
686px 770px #fff, 1721px 267px #fff, 1663px 511px #fff, 1481px 1141px #fff,
|
||||
582px 248px #fff, 1308px 953px #fff, 628px 657px #fff, 897px 1535px #fff,
|
||||
270px 931px #fff, 791px 467px #fff, 1336px 1732px #fff, 1013px 1653px #fff,
|
||||
1911px 956px #fff, 587px 816px #fff, 83px 456px #fff, 930px 1478px #fff,
|
||||
1587px 1694px #fff, 614px 1200px #fff, 302px 1782px #fff, 1711px 1432px #fff,
|
||||
443px 904px #fff, 1666px 714px #fff, 1588px 1167px #fff, 273px 1075px #fff,
|
||||
1679px 461px #fff, 721px 664px #fff, 1202px 10px #fff, 166px 1126px #fff,
|
||||
331px 1628px #fff, 430px 1565px #fff, 1585px 509px #fff, 640px 38px #fff,
|
||||
822px 837px #fff, 1760px 1664px #fff, 1122px 1458px #fff, 398px 131px #fff,
|
||||
689px 285px #fff, 460px 652px #fff, 1627px 365px #fff, 348px 1648px #fff,
|
||||
819px 1946px #fff, 981px 1917px #fff, 323px 76px #fff, 979px 684px #fff,
|
||||
887px 536px #fff, 1348px 1596px #fff, 1055px 666px #fff, 1402px 1797px #fff,
|
||||
1300px 1055px #fff, 937px 238px #fff, 1474px 1815px #fff, 1144px 1710px #fff,
|
||||
1629px 1087px #fff, 911px 919px #fff, 771px 819px #fff, 403px 720px #fff,
|
||||
163px 736px #fff, 1062px 238px #fff, 1774px 818px #fff, 1874px 1178px #fff,
|
||||
1177px 699px #fff, 1244px 1244px #fff, 1371px 58px #fff, 564px 1515px #fff,
|
||||
1824px 487px #fff, 929px 702px #fff, 394px 1348px #fff, 1161px 641px #fff,
|
||||
219px 1841px #fff, 358px 941px #fff, 140px 1759px #fff, 1019px 1345px #fff,
|
||||
274px 436px #fff, 1433px 1605px #fff, 1798px 1426px #fff, 294px 1848px #fff,
|
||||
1681px 1877px #fff, 1344px 1824px #fff, 1439px 1632px #fff,
|
||||
161px 1012px #fff, 1308px 588px #fff, 1789px 582px #fff, 721px 1910px #fff,
|
||||
318px 218px #fff, 607px 319px #fff, 495px 535px #fff, 1552px 1575px #fff,
|
||||
1562px 67px #fff, 403px 926px #fff, 1096px 1800px #fff, 1814px 1709px #fff,
|
||||
1882px 1831px #fff, 533px 46px #fff, 823px 969px #fff, 530px 165px #fff,
|
||||
1030px 352px #fff, 1681px 313px #fff, 338px 115px #fff, 1607px 211px #fff,
|
||||
1718px 1184px #fff, 1589px 659px #fff, 278px 355px #fff, 464px 1464px #fff,
|
||||
1165px 277px #fff, 950px 694px #fff, 1746px 293px #fff, 793px 911px #fff,
|
||||
528px 773px #fff, 1883px 1694px #fff, 748px 182px #fff, 1924px 1531px #fff,
|
||||
100px 636px #fff, 1473px 1445px #fff, 1264px 1244px #fff, 850px 1377px #fff,
|
||||
987px 1976px #fff, 933px 1761px #fff, 922px 1270px #fff, 500px 396px #fff,
|
||||
1324px 8px #fff, 1967px 1814px #fff, 1072px 1401px #fff, 961px 37px #fff,
|
||||
156px 81px #fff, 1915px 502px #fff, 1076px 1846px #fff, 152px 1669px #fff,
|
||||
986px 1529px #fff, 1667px 1137px #fff;
|
||||
}
|
||||
|
||||
#object2:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: auto;
|
||||
width: 2px;
|
||||
height: 2px;
|
||||
background: transparent;
|
||||
|
||||
box-shadow: 1448px 320px #fff, 1775px 1663px #fff, 332px 1364px #fff,
|
||||
878px 340px #fff, 569px 1832px #fff, 1422px 1684px #fff, 1946px 1907px #fff,
|
||||
121px 979px #fff, 1044px 1069px #fff, 463px 381px #fff, 423px 112px #fff,
|
||||
523px 1179px #fff, 779px 654px #fff, 1398px 694px #fff, 1085px 1464px #fff,
|
||||
1599px 1869px #fff, 801px 1882px #fff, 779px 1231px #fff, 552px 932px #fff,
|
||||
1057px 1196px #fff, 282px 1280px #fff, 496px 1986px #fff, 1833px 1120px #fff,
|
||||
1802px 1293px #fff, 6px 1696px #fff, 412px 1902px #fff, 605px 438px #fff,
|
||||
24px 1212px #fff, 234px 1320px #fff, 544px 344px #fff, 1107px 170px #fff,
|
||||
1603px 196px #fff, 905px 648px #fff, 68px 1458px #fff, 649px 1969px #fff,
|
||||
744px 675px #fff, 1127px 478px #fff, 714px 1814px #fff, 1486px 526px #fff,
|
||||
270px 1636px #fff, 1931px 149px #fff, 1807px 378px #fff, 8px 390px #fff,
|
||||
1415px 699px #fff, 1473px 1211px #fff, 1590px 141px #fff, 270px 1705px #fff,
|
||||
69px 1423px #fff, 1108px 1053px #fff, 1946px 128px #fff, 371px 371px #fff,
|
||||
1490px 220px #fff, 357px 1885px #fff, 363px 363px #fff, 1896px 1256px #fff,
|
||||
1979px 1050px #fff, 947px 1342px #fff, 1754px 242px #fff, 514px 974px #fff,
|
||||
65px 1477px #fff, 1840px 547px #fff, 950px 695px #fff, 459px 1150px #fff,
|
||||
1124px 1502px #fff, 481px 940px #fff, 680px 839px #fff, 797px 1169px #fff,
|
||||
1977px 1491px #fff, 734px 1724px #fff, 210px 298px #fff, 816px 628px #fff,
|
||||
686px 770px #fff, 1721px 267px #fff, 1663px 511px #fff, 1481px 1141px #fff,
|
||||
582px 248px #fff, 1308px 953px #fff, 628px 657px #fff, 897px 1535px #fff,
|
||||
270px 931px #fff, 791px 467px #fff, 1336px 1732px #fff, 1013px 1653px #fff,
|
||||
1911px 956px #fff, 587px 816px #fff, 83px 456px #fff, 930px 1478px #fff,
|
||||
1587px 1694px #fff, 614px 1200px #fff, 302px 1782px #fff, 1711px 1432px #fff,
|
||||
443px 904px #fff, 1666px 714px #fff, 1588px 1167px #fff, 273px 1075px #fff,
|
||||
1679px 461px #fff, 721px 664px #fff, 1202px 10px #fff, 166px 1126px #fff,
|
||||
331px 1628px #fff, 430px 1565px #fff, 1585px 509px #fff, 640px 38px #fff,
|
||||
822px 837px #fff, 1760px 1664px #fff, 1122px 1458px #fff, 398px 131px #fff,
|
||||
689px 285px #fff, 460px 652px #fff, 1627px 365px #fff, 348px 1648px #fff,
|
||||
819px 1946px #fff, 981px 1917px #fff, 323px 76px #fff, 979px 684px #fff,
|
||||
887px 536px #fff, 1348px 1596px #fff, 1055px 666px #fff, 1402px 1797px #fff,
|
||||
1300px 1055px #fff, 937px 238px #fff, 1474px 1815px #fff, 1144px 1710px #fff,
|
||||
1629px 1087px #fff, 911px 919px #fff, 771px 819px #fff, 403px 720px #fff,
|
||||
163px 736px #fff, 1062px 238px #fff, 1774px 818px #fff, 1874px 1178px #fff,
|
||||
1177px 699px #fff, 1244px 1244px #fff, 1371px 58px #fff, 564px 1515px #fff,
|
||||
1824px 487px #fff, 929px 702px #fff, 394px 1348px #fff, 1161px 641px #fff,
|
||||
219px 1841px #fff, 358px 941px #fff, 140px 1759px #fff, 1019px 1345px #fff,
|
||||
274px 436px #fff, 1433px 1605px #fff, 1798px 1426px #fff, 294px 1848px #fff,
|
||||
1681px 1877px #fff, 1344px 1824px #fff, 1439px 1632px #fff,
|
||||
161px 1012px #fff, 1308px 588px #fff, 1789px 582px #fff, 721px 1910px #fff,
|
||||
318px 218px #fff, 607px 319px #fff, 495px 535px #fff, 1552px 1575px #fff,
|
||||
1562px 67px #fff, 403px 926px #fff, 1096px 1800px #fff, 1814px 1709px #fff,
|
||||
1882px 1831px #fff, 533px 46px #fff, 823px 969px #fff, 530px 165px #fff,
|
||||
1030px 352px #fff, 1681px 313px #fff, 338px 115px #fff, 1607px 211px #fff,
|
||||
1718px 1184px #fff, 1589px 659px #fff, 278px 355px #fff, 464px 1464px #fff,
|
||||
1165px 277px #fff, 950px 694px #fff, 1746px 293px #fff, 793px 911px #fff,
|
||||
528px 773px #fff, 1883px 1694px #fff, 748px 182px #fff, 1924px 1531px #fff,
|
||||
100px 636px #fff, 1473px 1445px #fff, 1264px 1244px #fff, 850px 1377px #fff,
|
||||
987px 1976px #fff, 933px 1761px #fff, 922px 1270px #fff, 500px 396px #fff,
|
||||
1324px 8px #fff, 1967px 1814px #fff, 1072px 1401px #fff, 961px 37px #fff,
|
||||
156px 81px #fff, 1915px 502px #fff, 1076px 1846px #fff, 152px 1669px #fff,
|
||||
986px 1529px #fff, 1667px 1137px #fff;
|
||||
}
|
||||
|
||||
#object3 {
|
||||
width: 3px;
|
||||
height: 3px;
|
||||
background: transparent;
|
||||
animation: animStar 240s linear infinite;
|
||||
|
||||
box-shadow: 387px 1878px #fff, 760px 1564px #fff, 1487px 999px #fff,
|
||||
948px 1828px #fff, 1977px 1001px #fff, 1284px 1963px #fff, 656px 284px #fff,
|
||||
1268px 1635px #fff, 1820px 598px #fff, 642px 1900px #fff, 296px 57px #fff,
|
||||
921px 1620px #fff, 476px 1858px #fff, 658px 613px #fff, 1171px 1363px #fff,
|
||||
1419px 283px #fff, 1037px 731px #fff, 503px 663px #fff, 1562px 463px #fff,
|
||||
383px 1197px #fff, 1171px 1233px #fff, 876px 1768px #fff, 856px 1615px #fff,
|
||||
1375px 1924px #fff, 1725px 918px #fff, 952px 119px #fff, 768px 1212px #fff,
|
||||
992px 1462px #fff, 1929px 717px #fff, 1947px 755px #fff, 1818px 1123px #fff,
|
||||
1896px 1672px #fff, 460px 198px #fff, 256px 271px #fff, 752px 544px #fff,
|
||||
1222px 1859px #fff, 1851px 443px #fff, 313px 1858px #fff, 709px 446px #fff,
|
||||
1546px 697px #fff, 674px 1155px #fff, 1112px 130px #fff, 355px 1790px #fff,
|
||||
1496px 974px #fff, 1696px 480px #fff, 1316px 1265px #fff, 1645px 1063px #fff,
|
||||
1182px 237px #fff, 427px 1582px #fff, 859px 253px #fff, 458px 939px #fff,
|
||||
1517px 1644px #fff, 1943px 60px #fff, 212px 1650px #fff, 966px 1786px #fff,
|
||||
473px 712px #fff, 130px 76px #fff, 1417px 1186px #fff, 909px 1580px #fff,
|
||||
1913px 762px #fff, 204px 1143px #fff, 1998px 1057px #fff, 1468px 1301px #fff,
|
||||
144px 1676px #fff, 21px 1601px #fff, 382px 1362px #fff, 912px 753px #fff,
|
||||
1488px 1405px #fff, 802px 156px #fff, 174px 550px #fff, 338px 1366px #fff,
|
||||
1197px 774px #fff, 602px 486px #fff, 682px 1877px #fff, 348px 1503px #fff,
|
||||
407px 1139px #fff, 950px 1400px #fff, 922px 1139px #fff, 1697px 293px #fff,
|
||||
1238px 1281px #fff, 1038px 1197px #fff, 376px 1889px #fff,
|
||||
1255px 1680px #fff, 1008px 1316px #fff, 1538px 1447px #fff,
|
||||
1186px 874px #fff, 1967px 640px #fff, 1341px 19px #fff, 29px 1732px #fff,
|
||||
16px 1650px #fff, 1021px 1075px #fff, 723px 424px #fff, 1175px 41px #fff,
|
||||
494px 1957px #fff, 1296px 431px #fff, 175px 1507px #fff, 831px 121px #fff,
|
||||
498px 1947px #fff, 617px 880px #fff, 240px 403px #fff;
|
||||
}
|
||||
|
||||
#object3:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: auto;
|
||||
width: 3px;
|
||||
height: 3px;
|
||||
background: transparent;
|
||||
|
||||
box-shadow: 387px 1878px #fff, 760px 1564px #fff, 1487px 999px #fff,
|
||||
948px 1828px #fff, 1977px 1001px #fff, 1284px 1963px #fff, 656px 284px #fff,
|
||||
1268px 1635px #fff, 1820px 598px #fff, 642px 1900px #fff, 296px 57px #fff,
|
||||
921px 1620px #fff, 476px 1858px #fff, 658px 613px #fff, 1171px 1363px #fff,
|
||||
1419px 283px #fff, 1037px 731px #fff, 503px 663px #fff, 1562px 463px #fff,
|
||||
383px 1197px #fff, 1171px 1233px #fff, 876px 1768px #fff, 856px 1615px #fff,
|
||||
1375px 1924px #fff, 1725px 918px #fff, 952px 119px #fff, 768px 1212px #fff,
|
||||
992px 1462px #fff, 1929px 717px #fff, 1947px 755px #fff, 1818px 1123px #fff,
|
||||
1896px 1672px #fff, 460px 198px #fff, 256px 271px #fff, 752px 544px #fff,
|
||||
1222px 1859px #fff, 1851px 443px #fff, 313px 1858px #fff, 709px 446px #fff,
|
||||
1546px 697px #fff, 674px 1155px #fff, 1112px 130px #fff, 355px 1790px #fff,
|
||||
1496px 974px #fff, 1696px 480px #fff, 1316px 1265px #fff, 1645px 1063px #fff,
|
||||
1182px 237px #fff, 427px 1582px #fff, 859px 253px #fff, 458px 939px #fff,
|
||||
1517px 1644px #fff, 1943px 60px #fff, 212px 1650px #fff, 966px 1786px #fff,
|
||||
473px 712px #fff, 130px 76px #fff, 1417px 1186px #fff, 909px 1580px #fff,
|
||||
1913px 762px #fff, 204px 1143px #fff, 1998px 1057px #fff, 1468px 1301px #fff,
|
||||
144px 1676px #fff, 21px 1601px #fff, 382px 1362px #fff, 912px 753px #fff,
|
||||
1488px 1405px #fff, 802px 156px #fff, 174px 550px #fff, 338px 1366px #fff,
|
||||
1197px 774px #fff, 602px 486px #fff, 682px 1877px #fff, 348px 1503px #fff,
|
||||
407px 1139px #fff, 950px 1400px #fff, 922px 1139px #fff, 1697px 293px #fff,
|
||||
1238px 1281px #fff, 1038px 1197px #fff, 376px 1889px #fff,
|
||||
1255px 1680px #fff, 1008px 1316px #fff, 1538px 1447px #fff,
|
||||
1186px 874px #fff, 1967px 640px #fff, 1341px 19px #fff, 29px 1732px #fff,
|
||||
16px 1650px #fff, 1021px 1075px #fff, 723px 424px #fff, 1175px 41px #fff,
|
||||
494px 1957px #fff, 1296px 431px #fff, 175px 1507px #fff, 831px 121px #fff,
|
||||
498px 1947px #fff, 617px 880px #fff, 240px 403px #fff;
|
||||
}
|
120
themes/SoT/animations.css
vendored
@ -1,120 +0,0 @@
|
||||
/* ************************************************************* */
|
||||
/*
|
||||
/* Use this file to add custom CSS animations.
|
||||
/* Delete this file if you wish to use the default animations.
|
||||
/* If you do not want to have animations in your theme,
|
||||
/* remove or comment them and include this file in your theme.
|
||||
/*
|
||||
/* ************************************************************* */
|
||||
|
||||
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
- Entrance animations
|
||||
- Button hover animations
|
||||
- Icon hover animations
|
||||
- Footer hover animations
|
||||
|
||||
*/
|
||||
|
||||
|
||||
|
||||
/* Entrance animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.button-entrance {
|
||||
animation-name: popUp;
|
||||
animation-duration: 1s;
|
||||
animation-fill-mode: both;
|
||||
/* Used to start button entrance animation one after another */
|
||||
animation-delay: calc(var(--delay)/10);
|
||||
}
|
||||
|
||||
@keyframes popUp {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: scale3d(0.3, 0.3, 0.3);
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.fadein {
|
||||
animation-name: fadein;
|
||||
animation-duration: 3s;
|
||||
animation-fill-mode: both;
|
||||
}
|
||||
|
||||
@keyframes fadein {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Button hover animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* (Also apply to icon) */
|
||||
|
||||
.credit-hover{
|
||||
display:inline-block;
|
||||
-webkit-transform:perspective(1px) translateZ(0);
|
||||
transform:perspective(1px) translateZ(0);
|
||||
box-shadow:0 0 1px rgba(0,0,0,0);
|
||||
-webkit-transition-duration:.3s;
|
||||
transition-duration:.3s;
|
||||
-webkit-transition-property:transform;
|
||||
transition-property:transform
|
||||
}
|
||||
.credit-hover:active,
|
||||
.credit-hover:focus,
|
||||
.credit-hover:hover{
|
||||
-webkit-transform:scale(1.1);
|
||||
transform:scale(1.1)
|
||||
}
|
||||
|
||||
.button-hover{
|
||||
display:inline-block;
|
||||
-webkit-transform:perspective(1px) translateZ(0);
|
||||
transform:perspective(1px) translateZ(0);
|
||||
box-shadow:0 0 1px rgba(0,0,0,0);
|
||||
-webkit-transition-duration:.1s;
|
||||
transition-duration:.1s;
|
||||
-webkit-transition-property:transform;
|
||||
transition-property:transform
|
||||
}
|
||||
.button-hover:active,
|
||||
.button-hover:focus,
|
||||
.button-hover:hover{
|
||||
filter: contrast(115%);
|
||||
text-shadow: 0px 0px 20px #49FF18;
|
||||
-webkit-transform:scale(1.02);
|
||||
transform:scale(1.02)
|
||||
}
|
||||
|
||||
|
||||
/* Footer hover animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.footer-hover{
|
||||
display:inline-block;
|
||||
-webkit-transform:perspective(1px) translateZ(0);
|
||||
transform:perspective(1px) translateZ(0);
|
||||
box-shadow:0 0 1px rgba(0,0,0,0);
|
||||
-webkit-transition-duration:.3s;
|
||||
transition-duration:.3s;
|
||||
-webkit-transition-property:transform;
|
||||
transition-property:transform;
|
||||
-webkit-transition-timing-function:ease-out;
|
||||
transition-timing-function:ease-out
|
||||
}
|
||||
.footer-hover:active,.footer-hover:focus,.footer-hover:hover{
|
||||
-webkit-transform:translateY(-8px);
|
||||
transform:translateY(-8px)
|
||||
}
|
Before Width: | Height: | Size: 218 KiB |
119
themes/SoT/brands.css
vendored
@ -1,119 +0,0 @@
|
||||
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
|
||||
- Rounded user avatars
|
||||
- Buttons
|
||||
- Brand Styles
|
||||
|
||||
*/
|
||||
|
||||
|
||||
/* Rounded avatars
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
/* Disable this if you don't want rounded avatars for users */
|
||||
.rounded-avatar {
|
||||
clip-path: path('m189.1 98.6q2.5 0.6 5.1 1.3c1.4 0.4 3.5 0 4.1 2 0.5 1.9 0.1 5.2 0.1 7.3 0.1 2.3 0.4 4-0.8 5.7-0.9 1.3-2.7 3.2-2.9 5-0.3 2.6 2.1 1.7 3.1 3 0.9 1.2 0.6 4 0.6 5.6q0.2 3.8 0.2 7.7c0.1 9.1 0.4 18.4 1 27.4q0.1 1.9 0.2 3.7 0.1 1.8 0.1 3.6 0.1 1.9 0 3.7 0 1.8-0.1 3.7c-0.3 4.4-1.2 8.6-1.1 13.1 0.1 2.2 1 5.6 0.5 7.6-0.4 2-1.7 1.2-3.1 1q-1.2-0.1-2.3-0.1-1.2 0-2.4 0-1.2 0-2.3 0.1-1.2 0.1-2.4 0.2c-3.7 0.4-7.2-1.8-10.8-1.8-1.5 0-3.5 0.8-4.9 0.2-1.4-0.6-0.9-2.3-1.9-3.3-0.6-0.6-1.7 0-2.4 0q-0.3-0.1-0.6-0.1-0.3-0.1-0.7-0.1-0.3-0.1-0.6-0.1-0.3-0.1-0.6-0.2-0.7-0.1-1.3-0.2-0.7-0.1-1.3-0.1-0.7 0-1.3 0-0.7 0.1-1.3 0.2-0.6 0.1-1.1 0.2-0.5 0.1-1 0.3-0.5 0.3-0.9 0.6-0.5 0.3-1 0.7-0.4 0.5-0.8 0.8-0.5 0.4-1 0.7-0.4 0.2-0.9 0.3-0.5 0.2-1 0.2c-3.5 0.2-6.8-0.1-10.3 0.4-3.1 0.4-6.2 0.6-9.3 0.8-3.6 0.3-7.1 0.9-10.7 0.6-1.7-0.1-3.3-0.8-5.2-0.8-1.8 0-1.1-0.8-2.6-1.9-0.7-0.5-2-0.2-2.9-0.6q-0.2-0.2-0.5-0.4-0.3-0.2-0.6-0.4-0.3-0.2-0.5-0.4-0.3-0.2-0.6-0.5c-1.5-1.2-1.6-0.2-3.2 0.6-1.3 0.6-1.8 1-2.7-0.4-0.9-1.3-0.7-4.7-1.9-5.7-0.9 0.6-1 5-1.2 6.2-0.2 1.4 0 2.1-1 2.7-0.5 0.3-2 0-2.6 0h-11.2c-7.9 0.1-15.7-0.7-23.5-0.7-3.8 0-7.6 0.2-11.4-0.2q-0.6-0.1-1.3-0.2-0.7-0.1-1.4-0.1-0.7-0.1-1.3-0.1-0.7 0-1.4-0.1c-1.8 0.2-2.2-0.5-3.5-2.3-1.1-1.5-1.7-3-3.4-2.1-1.4 0.7-2.3 3.2-3.8 3.4-1.3 0.2-2.9-0.3-4.2-0.3q-2.9 0-5.9 0.1-5.4 0.3-10.9 0.7c-3.4 0.3-6.6 1.3-10 1.4-1.8 0-2.3 0.4-2.3-2.2 0.1-2.2 0.2-4.4 0.2-6.7 0-4 0.3-8 0.5-12 0.2-5 0-10 0.2-15 0.2-2.9-0.2-7.1 1-9.6 0.5-1.1 2.8-2.3 2.7-3.5-0.1-1.3-1.9-2.1-2.6-2.6-1.9-1.1-1.9-1.4-1.9-4.1 0-2.2-0.1-4.4 0-6.6 0.5-8.6 0.4-17.1 0.6-25.7 0.1-2.3-0.3-5.6 0.2-7.8 0.3-1.5 0.4-1.3 1.8-1.5q0.5-0.1 1-0.2 0.6-0.1 1.1-0.2 0.5-0.2 1-0.4 0.5-0.2 1-0.4c1.5-0.9 0.9-1.2-0.3-2.2-1.4-1.2-3.3-2.1-4.5-3.5-1.1-1.1-1-2.7-1.1-4.5q0-0.7-0.1-1.4 0-0.8 0-1.5 0-0.7 0-1.4 0-0.7 0-1.4c0-0.6-0.3-2.2 0-2.9 0.4-0.6 0.4 0 0.9-0.4 0.8-0.6 0.7 0.3 1-1.2q0-0.3 0-0.7 0-0.3 0-0.7-0.1-0.3-0.1-0.7 0-0.3-0.1-0.6c-0.1-1.9-0.1-3.7-0.1-5.5 0-2.1 0.3-3.6-0.7-5.4-1-1.7-0.8-3.5-0.9-5.8-0.1-9-0.8-18.3-0.5-27.3 0.2-4.9 0.5-9.9 0.4-14.8-0.1-4.3-0.6-8.5-0.6-12.8 0-1.7-0.4-4.4 0.6-5.2 1-0.6 3.6 0.2 4.7 0.2 3 0.1 5.8-0.1 8.8 0.1 3.4 0.3 6.9 0.5 10.4 0.7 2.6 0.2 7-0.5 9 1.9 0.8 0.8 2.1 3.8 3.1 3.8 1.1 0 2-3.1 3.2-3.5 0.4-0.1 1.2 0.5 1.7 0.6q0.3 0 0.6 0 0.3 0 0.5 0 0.3 0 0.6 0 0.3 0 0.6-0.1 0.5 0 1-0.1 0.5-0.1 1-0.2 0.4-0.1 0.9-0.2 0.5-0.1 1-0.3c3.1-1.5 6.7-0.7 9.9-0.5 3.1 0.2 6.2 0.5 9.2 0.8 7 0.5 13.7 1.7 20.7 0.3q1.2-0.2 2.4-0.3 1.2-0.1 2.4-0.2 1.2 0 2.4 0 1.2 0 2.4 0.1c1.6 0.1 1.7 0.3 2.2 2.3q0.7 2.7 1.4 5.5c1.1-1.5 1.4-3.7 1.9-5.7 0.7-2.7 1.8-2 3.8-1.9q0.4 0.1 0.8 0.1 0.4 0 0.8 0 0.4 0 0.8-0.1 0.4 0 0.8 0c0.5-0.1 1.7-0.9 2.3-0.6 1.3 0.7 0.8 4.4 1.5 5.5 0.6 1.1 2.8-0.2 3.4-0.9 1.1-1.1 1.1-3.2 1.5-4.8 0.5-2.1 1.3-0.9 2.7-0.5q0.7 0.2 1.3 0.3 0.7 0.2 1.3 0.3 0.6 0.1 1.3 0.2 0.6 0.1 1.3 0.1c6.9 1 14.1 0.6 21 0.8 7.2 0.3 14.3-0.2 21.4-0.5 3.7-0.1 7.4-1 11.1-1 1.5 0 2.6-0.2 3.6 1.5 0.7 1.2 1 3 1.6 4.3 1.1-1.9 1.6-6.9 3.6-7.4 1.1-0.4 2.8 0.3 3.9 0.4q0.6 0 1.2 0.1 0.6 0 1.2 0 0.6 0 1.2 0 0.6-0.1 1.2-0.1c2.2-0.4 3.1-0.9 2.5 2.6-0.2 1.7-0.7 3-0.7 4.7q0.1 0.7 0.1 1.3 0 0.7 0 1.4-0.1 0.7-0.1 1.3-0.1 0.7-0.2 1.4c-0.4 3.4-0.1 7 0.2 10.5q0.1 1.4 0.1 2.9 0.1 1.5 0.2 3 0 1.5 0 3 0 1.4 0 2.9c0 1.6-0.1 3.1-0.2 4.8 0 1.6 0.4 3.3 0.2 5-0.4 3.1-2 4.9-3.6 7 2 1 2.7 1.1 2.3 4q-0.1 1-0.1 1.9-0.1 0.9-0.1 1.9-0.1 0.9-0.1 1.9 0 0.9-0.1 1.9c0 1.3 0 2.8-0.5 3.9-0.4 0.8-1.5 1.2-1.8 1.9-0.4 1.1 0.8 4.5 1 6 0.5 5.7 1.7 11.5 1.8 17.3 0 1.2 0.2 2.3-0.6 3.1-0.7 0.7-2.2 0.8-3.1 1-0.6 0.2-5.4 1.1-5.4 1.3 0.9 0.2 0-0.1 0-0.1z');
|
||||
width: 201px;
|
||||
height: 201px;
|
||||
}
|
||||
|
||||
.social-icon {
|
||||
font-size: 40px;
|
||||
padding: 10px;
|
||||
}
|
||||
.social-icon-div {
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
.social-icon{color:#fff;}
|
||||
|
||||
/* Buttons
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
@media (max-width: 400px) {
|
||||
.button,
|
||||
button {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
font-size: 14px !important;
|
||||
color: #fff !important;
|
||||
height: 48px;
|
||||
width: 100%;
|
||||
font-weight: 100;
|
||||
line-height: 48px;
|
||||
letter-spacing: 0.1px;
|
||||
white-space: wrap;
|
||||
cursor: pointer;
|
||||
font-family: "sottext", sans-serif !important;
|
||||
text-transform: uppercase;
|
||||
background: url(https://raw.githubusercontent.com/JulianPrieber/SoT/main/turquoise-button-sprite.svg#off) 0 0/100% 100% no-repeat !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 550px) {
|
||||
.button,
|
||||
button {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
font-size: 14px !important;
|
||||
color: #fff !important;
|
||||
height: 48px;
|
||||
width: 80%;
|
||||
font-weight: 100;
|
||||
line-height: 48px;
|
||||
letter-spacing: 0.1px;
|
||||
white-space: wrap;
|
||||
cursor: pointer;
|
||||
font-family: "sottext", sans-serif !important;
|
||||
text-transform: uppercase;
|
||||
background: url(https://raw.githubusercontent.com/JulianPrieber/SoT/main/turquoise-button-sprite.svg#off) 0 0/100% 100% no-repeat !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 551px) {
|
||||
.button,
|
||||
button {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
font-size: 14px !important;
|
||||
color: #fff !important;
|
||||
height: 60px;
|
||||
width: 400px;
|
||||
font-weight: 100;
|
||||
line-height: 60px;
|
||||
letter-spacing: 0.1px;
|
||||
white-space: wrap;
|
||||
cursor: pointer;
|
||||
font-family: "sottext", sans-serif !important;
|
||||
text-transform: uppercase;
|
||||
background: url(https://raw.githubusercontent.com/JulianPrieber/SoT/main/turquoise-button-sprite.svg#off) 0 0/100% 100% no-repeat !important;
|
||||
}
|
||||
}
|
||||
button:hover,
|
||||
.button:focus {
|
||||
color: #333;
|
||||
border-color: #888;
|
||||
outline: 0; }
|
||||
.button.button-primary {
|
||||
color: #FFF;}
|
||||
.button.button-primary:hover,
|
||||
.button.button-primary:focus {
|
||||
color: #FFF;}
|
||||
|
||||
|
||||
/* Brand Icons
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.icon {
|
||||
padding: 0px 8px 3.5px 0px;
|
||||
vertical-align: middle;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
@ -1,66 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Theme Config
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The theme config allows you to configure how LittleLink Custom should treat your theme.
|
||||
| All settings can either be set to "true" or "false", unless stated otherwise.
|
||||
|
|
||||
| The settings below change how your buttons behave.
|
||||
|
|
||||
*/
|
||||
|
||||
// Some themes may not be compatible with custom buttons created by the Button Editor.
|
||||
// If 'false' the default button CSS is used.
|
||||
'allow_custom_buttons' => 'false',
|
||||
|
||||
'open_links_in_same_tab' => 'false',
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Code
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Custom code allows you to inject customized Blade, PHP, HTML, JavaScript and CSS code.
|
||||
|
|
||||
| In your "extra" folder, you will find 3 separate files for injecting your code to
|
||||
| different places on the final page (head, body, at the end of the body).
|
||||
|
|
||||
| You may also attach custom assets like CSS, JS, or images.
|
||||
| You can find instructions for this in the files in your extra folder.
|
||||
|
|
||||
*/
|
||||
|
||||
'enable_custom_code' => 'false',
|
||||
|
||||
// Disable individual files (only applies if above is 'true').
|
||||
'enable_custom_head' => 'true',
|
||||
'enable_custom_body' => 'true',
|
||||
'enable_custom_body_end' => 'true',
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Icons
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| You may add custom icons to your theme.
|
||||
| These icons are stored under: .../extra/custom-icons.
|
||||
|
|
||||
| You can adjust the file extension types to use other files than just SVGs.
|
||||
|
|
||||
*/
|
||||
|
||||
'use_custom_icons' => 'false',
|
||||
|
||||
// Is not set correct this will cause errors.
|
||||
'custom_icon_extension' => '.svg', // (.png, .jpg ...)
|
||||
|
||||
|
||||
|
||||
];
|
Before Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 566 KiB |
@ -1,29 +0,0 @@
|
||||
# A LittleLink Custom Theme
|
||||
Find more themes: https://github.com/JulianPrieber/llc-themes
|
||||
|
||||
* Theme Name: SoT
|
||||
* Theme Version: 1.6
|
||||
* Theme Date: 2022-07-03
|
||||
* Theme Author: JulianPrieber
|
||||
* Theme Author URI: https://github.com/JulianPrieber
|
||||
* Theme License: GPLv3 (Non-commercial use only)
|
||||
* Source code: https://github.com/JulianPrieber/SoT
|
||||
|
||||
|
||||
### Used assets:
|
||||
* Built using:
|
||||
* https://github.com/dhg/Skeleton
|
||||
* License: MIT
|
||||
|
||||
*
|
||||
* https://www.dafont.com/pragroman.font
|
||||
* License: Non-commercial use only
|
||||
|
||||
*
|
||||
* https://www.dafont.com/windlass.font
|
||||
* License: Non-commercial use only
|
||||
|
||||
|
||||
* Button vector graphics:
|
||||
* https://www.seaofthieves.com
|
||||
* © Microsoft, Rare, the Rare logo, Sea of Thieves are trademarks of the Microsoft group of companies.
|
108
themes/SoT/share.button.css
vendored
@ -1,108 +0,0 @@
|
||||
.share-icon {
|
||||
padding: 0px 8px 3.5px 0px;
|
||||
vertical-align: middle;
|
||||
color: #fff !important;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.sharediv {
|
||||
position:relative;
|
||||
top: 30px;
|
||||
right: 30px;
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
|
||||
.toastdiv {
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
-webkit-align-items: center;
|
||||
align-items: center;
|
||||
-webkit-justify-content: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.toastbox {
|
||||
width: 280px;
|
||||
padding: 10px;
|
||||
background-color: rgba(0, 0, 0, 0.7);
|
||||
color: white;
|
||||
border-radius: 4px;
|
||||
position: fixed;
|
||||
top: 105%;
|
||||
-webkit-transition: transform 0.3s linear;
|
||||
transition: transform 0.3s linear;
|
||||
z-index: 2;
|
||||
text-align: center;
|
||||
}
|
||||
.toastbox.toast-tox--active {
|
||||
-webkit-transform: translateY(-150px);
|
||||
transform: translateY(-150px);
|
||||
}
|
||||
.sharebutton,
|
||||
sharebutton {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
height: 48px;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
font-size: 14px;
|
||||
width: 48px;
|
||||
font-weight: 100;
|
||||
line-height: 48px;
|
||||
letter-spacing: 0.1px;
|
||||
white-space: wrap;
|
||||
border-radius: 8px;
|
||||
cursor: pointer;
|
||||
color: #fff !important;
|
||||
background: url(https://raw.githubusercontent.com/JulianPrieber/SoT/main/green-button-sprite.svg#off) 0 0/100% 100% no-repeat !important;
|
||||
}
|
||||
@media screen and (min-width: 600px) {
|
||||
.sharebutton,
|
||||
sharebutton {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
height: 48px;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
font-size: 14px;
|
||||
width: 150px;
|
||||
font-weight: 100;
|
||||
line-height: 48px;
|
||||
letter-spacing: 0.1px;
|
||||
white-space: wrap;
|
||||
border-radius: 8px;
|
||||
cursor: pointer;
|
||||
color: #fff !important;
|
||||
background: url(https://raw.githubusercontent.com/JulianPrieber/SoT/main/green-button-sprite.svg#off) 0 0/100% 100% no-repeat !important;
|
||||
}
|
||||
}
|
||||
sharebutton:hover,
|
||||
.sharebutton:hover {
|
||||
color: #000000;
|
||||
opacity: 0.85;
|
||||
filter: alpha(opacity=40);
|
||||
border-color: #888;
|
||||
text-shadow: none !important;
|
||||
-webkit-transform:scale(1.00) !important;
|
||||
transform:scale(1.00) !important;
|
||||
outline: 0; }
|
||||
.sharebutton.sharebutton-primary {
|
||||
color: #FFFFFF;
|
||||
filter: brightness(90%) }
|
||||
.sharebutton.sharebutton-primary:hover,
|
||||
.sharebutton.sharebutton-primary:focus {
|
||||
color: #FFFFFF;
|
||||
filter: brightness(90%) }
|
||||
|
||||
@media screen and (max-width: 600px) {
|
||||
.sharebutton-mb {
|
||||
display: none;
|
||||
}
|
||||
.sharebutton-img {
|
||||
position: relative;
|
||||
left: 3px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
}
|
250
themes/SoT/skeleton-auto.css
vendored
@ -1,250 +0,0 @@
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
|
||||
- Grid
|
||||
- Base Styles
|
||||
- Typography
|
||||
- Links
|
||||
- Code
|
||||
- Spacing
|
||||
- Utilities
|
||||
- Misc
|
||||
- Credit footer
|
||||
|
||||
*/
|
||||
|
||||
@font-face{font-family:'sottitle';src:url(https://raw.githubusercontent.com/JulianPrieber/SoT/main/windlass.ttf)}
|
||||
@font-face{font-family:'sottext';src:url(https://raw.githubusercontent.com/JulianPrieber/SoT/main/pragroman.ttf)}
|
||||
|
||||
/* Grid
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.container {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
margin: 0 auto;
|
||||
box-sizing: border-box; }
|
||||
.column {
|
||||
position: center;
|
||||
width: 100%;
|
||||
float: center;
|
||||
box-sizing: border-box; }
|
||||
|
||||
|
||||
/* For devices larger than 400px */
|
||||
@media (min-width: 400px) {
|
||||
.container {
|
||||
width: 85%;
|
||||
padding: 0; }
|
||||
}
|
||||
|
||||
/* For devices larger than 550px */
|
||||
@media (min-width: 550px) {
|
||||
.container {
|
||||
width: 80%; }
|
||||
.column,
|
||||
.columns {
|
||||
margin-left: 0; }
|
||||
.column:first-child,
|
||||
.columns:first-child {
|
||||
margin-left: 0; }
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* Base Styles
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* NOTE
|
||||
html is set to 62.5% so that all the REM measurements throughout Skeleton
|
||||
are based on 10px sizing. So basically 1.5rem = 15px :) */
|
||||
|
||||
html {
|
||||
font-size: 100%; }
|
||||
|
||||
body {
|
||||
font-size: 18px;
|
||||
line-height: 24px;
|
||||
font-weight: 400;
|
||||
color: #F1F1F1 !important;
|
||||
font-family: "sottext", sans-serif;
|
||||
text-transform: uppercase;
|
||||
background:
|
||||
linear-gradient(
|
||||
rgba(0, 0, 0, 0.7),
|
||||
rgba(0, 0, 0, 0.7)
|
||||
),
|
||||
url(https://raw.githubusercontent.com/JulianPrieber/SoT/main/background.jpg);
|
||||
background-size: cover;
|
||||
color: #222; }
|
||||
|
||||
|
||||
/* Use this for a fixed background color instead of dark and light mode
|
||||
body {
|
||||
font-size: 18px;
|
||||
line-height: 24px;
|
||||
font-weight: 400;
|
||||
font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial,
|
||||
sans-serif;
|
||||
}
|
||||
*/
|
||||
|
||||
/* Typography
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
h1 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 16px;
|
||||
font-family: "sottitle", sans-serif;
|
||||
font-weight: 800; }
|
||||
h1 { font-size:24px; line-height: 64px; letter-spacing: 6px;}
|
||||
|
||||
|
||||
/* Larger than phablet */
|
||||
@media (min-width: 550px) {
|
||||
h1 { font-size: 48px; line-height: 96px;}
|
||||
}
|
||||
|
||||
|
||||
@media (min-width: 1px) {
|
||||
p {
|
||||
margin-top: 0;
|
||||
max-width: 100%;}
|
||||
}
|
||||
|
||||
|
||||
@media (min-width: 800px) {
|
||||
p {
|
||||
margin-top: 0;
|
||||
max-width: 80%;}
|
||||
}
|
||||
|
||||
@media (min-width: 1000px) {
|
||||
p {
|
||||
margin-top: 0;
|
||||
max-width: 60%;}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* Links
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
a {
|
||||
color: #a3dab0;
|
||||
font-size:14px;
|
||||
text-decoration: underline;
|
||||
}
|
||||
a:hover {
|
||||
color: #a3dab0; }
|
||||
|
||||
.spacing {
|
||||
padding: 0 7px;
|
||||
}
|
||||
|
||||
/* Code
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
code {
|
||||
padding: .2rem .5rem;
|
||||
margin: 0 .2rem;
|
||||
font-size: 90%;
|
||||
white-space: nowrap;
|
||||
background: #F1F1F1;
|
||||
border: 1px solid #E1E1E1;
|
||||
border-radius: 4px; }
|
||||
pre > code {
|
||||
display: block;
|
||||
padding: 1rem 1.5rem;
|
||||
white-space: pre; }
|
||||
|
||||
/* Spacing
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
button,
|
||||
.button {
|
||||
margin-bottom: 1rem; }
|
||||
input,
|
||||
textarea,
|
||||
select,
|
||||
fieldset {
|
||||
margin-bottom: 1.5rem; }
|
||||
pre,
|
||||
blockquote,
|
||||
dl,
|
||||
figure,
|
||||
p,
|
||||
ol {
|
||||
margin-bottom: 2.5rem; }
|
||||
|
||||
|
||||
/* Utilities
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.u-full-width {
|
||||
width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.u-max-full-width {
|
||||
max-width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.u-pull-right {
|
||||
float: right; }
|
||||
.u-pull-left {
|
||||
float: left; }
|
||||
|
||||
|
||||
/* Misc
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
hr {
|
||||
margin-top: 3rem;
|
||||
margin-bottom: 3.5rem;
|
||||
border-width: 0;
|
||||
border-top: 1px solid #E1E1E1; }
|
||||
|
||||
/* ===== Scrollbar CSS ===== */
|
||||
/* Firefox */
|
||||
* {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #171a1d #31363b;
|
||||
}
|
||||
|
||||
/* Chrome, Edge, and Safari */
|
||||
*::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-track {
|
||||
background: #31363b;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-thumb {
|
||||
background-color: #171a1d;
|
||||
border-radius: 30px;
|
||||
border: 3px none #ffffff;
|
||||
}
|
||||
|
||||
.footer {
|
||||
padding-top: 50px;
|
||||
}
|
||||
|
||||
/* Credit footer
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* Styling for credit footer text */
|
||||
.credit-txt {
|
||||
font-weight: 700;
|
||||
font-size: 15px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
||||
.credit-icon {
|
||||
display: none; }
|
||||
.credit-footer {
|
||||
position: relative;
|
||||
text-align: center;
|
||||
right: 15px; }
|
||||
|
||||
|
||||
/* Switches text color for credit footer for dark/light mode */
|
||||
|
||||
.credit-txt-clr{
|
||||
color: #FFF !important;
|
||||
}
|
||||
|
||||
|
Before Width: | Height: | Size: 13 KiB |
96
themes/beansoup/brands.css
vendored
@ -1,96 +0,0 @@
|
||||
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
|
||||
- Rounded user avatars
|
||||
- Buttons
|
||||
- Brand Styles
|
||||
|
||||
*/
|
||||
|
||||
|
||||
/* Rounded avatars
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
/* Disable this if you don't want rounded avatars for users */
|
||||
.rounded-avatar {
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.social-icon {
|
||||
font-size: 32px;
|
||||
padding: 10px;
|
||||
}
|
||||
.social-icon-div {
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
.social-icon{color:#fff;}
|
||||
|
||||
/* Buttons
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.button {
|
||||
width: 300px;
|
||||
height: 48px;
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
font-weight: 900;
|
||||
font-size: 18px;
|
||||
text-align: center;
|
||||
font-family: 'Teko', sans-serif;
|
||||
line-height: 48px;
|
||||
background: linear-gradient(90deg, #009ccc, #db091b, #ce2457, #009ccc);
|
||||
background-size: 400%;
|
||||
margin: auto;
|
||||
display: inline-block;
|
||||
color: #fff !important;
|
||||
border-radius: 8px;
|
||||
white-space: wrap;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
|
||||
animation: glowing 45s linear infinite;
|
||||
text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
.button:after {
|
||||
content: " ";
|
||||
position: absolute;
|
||||
border-radius: inherit;
|
||||
left: -6px;
|
||||
right: -6px;
|
||||
bottom: -6px;
|
||||
top: -6px;
|
||||
background: inherit;
|
||||
background-size: inherit;
|
||||
z-index: -1;
|
||||
opacity: 0;
|
||||
transition: opacity 0.5s ease;
|
||||
filter: blur(16px);
|
||||
animation: glowing 7s linear infinite;
|
||||
transform: translateZ(0);
|
||||
}
|
||||
.button:hover:after {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.button-entrance {
|
||||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
@keyframes glowing {
|
||||
100% {
|
||||
background-position: -400%;
|
||||
}
|
||||
}
|
||||
|
||||
/* Brand Icons
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.icon {
|
||||
padding: 0px 8px 3.5px 0px;
|
||||
vertical-align: middle;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
@ -1,68 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Theme Config
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The theme config allows you to configure how LittleLink Custom should treat your theme.
|
||||
| All settings can either be set to "true" or "false", unless stated otherwise.
|
||||
|
|
||||
| The settings below change how your buttons behave.
|
||||
|
|
||||
*/
|
||||
|
||||
// Some themes may not be compatible with custom buttons created by the Button Editor.
|
||||
// If 'false' the default button CSS is used.
|
||||
'allow_custom_buttons' => 'false',
|
||||
|
||||
'open_links_in_same_tab' => 'false',
|
||||
|
||||
// Hides verification badge. Useful for situations where it conflicts with the theme's design.
|
||||
'disable_verification_badge' => 'true',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Code
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Custom code allows you to inject customized Blade, PHP, HTML, JavaScript and CSS code.
|
||||
|
|
||||
| In your "extra" folder, you will find 3 separate files for injecting your code to
|
||||
| different places on the final page (head, body, at the end of the body).
|
||||
|
|
||||
| You may also attach custom assets like CSS, JS, or images.
|
||||
| You can find instructions for this in the files in your extra folder.
|
||||
|
|
||||
*/
|
||||
|
||||
'enable_custom_code' => 'false',
|
||||
|
||||
// Disable individual files (only applies if above is 'true').
|
||||
'enable_custom_head' => 'true',
|
||||
'enable_custom_body' => 'true',
|
||||
'enable_custom_body_end' => 'true',
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Icons
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| You may add custom icons to your theme.
|
||||
| These icons are stored under: .../extra/custom-icons.
|
||||
|
|
||||
| You can adjust the file extension types to use other files than just SVGs.
|
||||
|
|
||||
*/
|
||||
|
||||
'use_custom_icons' => 'false',
|
||||
|
||||
// Is not set correct this will cause errors.
|
||||
'custom_icon_extension' => '.svg', // (.png, .jpg ...)
|
||||
|
||||
|
||||
|
||||
];
|
Before Width: | Height: | Size: 343 KiB |
@ -1,24 +0,0 @@
|
||||
# A LittleLink Custom Theme
|
||||
Find more themes: https://github.com/JulianPrieber/llc-themes
|
||||
|
||||
* Theme Name: Bean Soup
|
||||
* Theme Version: 1.4
|
||||
* Theme Date: 2022-05-19
|
||||
* Theme Author: JulianPrieber
|
||||
* Theme Author URI: https://github.com/JulianPrieber
|
||||
* Theme License: GPLv3
|
||||
* Source code: https://github.com/JulianPrieber/bean-soup
|
||||
|
||||
|
||||
### Used assets:
|
||||
* Built using:
|
||||
* https://github.com/dhg/Skeleton
|
||||
* License: MIT
|
||||
|
||||
*
|
||||
* https://codepen.io/html-mentor/pen/eYNZvoK
|
||||
* License: MIT
|
||||
|
||||
*
|
||||
* https://codepen.io/argyleink/pen/XWdapvY
|
||||
* License: MIT
|
71
themes/beansoup/share.button.css
vendored
@ -1,71 +0,0 @@
|
||||
.share-icon {
|
||||
padding: 0px 8px 3.5px 0px;
|
||||
vertical-align: middle;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
-webkit-filter: invert(100%);
|
||||
-moz-filter: invert(100%);
|
||||
filter: invert(100%);
|
||||
}
|
||||
|
||||
.sharediv {
|
||||
position:relative;
|
||||
top: 30px;
|
||||
right: 30px;
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
|
||||
.sharebutton {
|
||||
width: 150px;
|
||||
height: 48px;
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
font-weight: 900;
|
||||
font-size: 18px;
|
||||
text-align: center;
|
||||
font-family: 'Teko', sans-serif;
|
||||
line-height: 48px;
|
||||
background: linear-gradient(90deg, #00b4cc, #db091b, #d40083, #00b4cc);
|
||||
background-size: 400%;
|
||||
margin: auto;
|
||||
display: inline-block;
|
||||
color: #fff !important;
|
||||
border-radius: 8px;
|
||||
white-space: wrap;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
|
||||
animation: glowing 45s linear infinite;
|
||||
text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
.sharebutton:after {
|
||||
content: " ";
|
||||
position: absolute;
|
||||
border-radius: inherit;
|
||||
left: -6px;
|
||||
right: -6px;
|
||||
bottom: -6px;
|
||||
top: -6px;
|
||||
background: inherit;
|
||||
background-size: inherit;
|
||||
z-index: -1;
|
||||
opacity: 0;
|
||||
transition: opacity 0.5s ease;
|
||||
filter: blur(16px);
|
||||
animation: glowing 7s linear infinite;
|
||||
transform: translateZ(0);
|
||||
}
|
||||
.sharebutton:hover:after {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.sharebutton-entrance {
|
||||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
@keyframes glowing {
|
||||
100% {
|
||||
background-position: -400%;
|
||||
}
|
||||
}
|
833
themes/beansoup/skeleton-auto.css
vendored
@ -1,833 +0,0 @@
|
||||
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
|
||||
- Grid
|
||||
- Base Styles
|
||||
- Typography
|
||||
- Links
|
||||
- Code
|
||||
- Spacing
|
||||
- Utilities
|
||||
- Misc
|
||||
- Credit footer
|
||||
|
||||
*/
|
||||
|
||||
|
||||
/* Grid
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.container {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
text-align: center;
|
||||
margin: 0 auto;
|
||||
box-sizing: border-box; }
|
||||
.column {
|
||||
position: center;
|
||||
width: 100%;
|
||||
float: center;
|
||||
box-sizing: border-box; }
|
||||
|
||||
/* For devices larger than 400px */
|
||||
@media (min-width: 400px) {
|
||||
.container {
|
||||
width: 85%;
|
||||
padding: 0; }
|
||||
}
|
||||
|
||||
/* For devices larger than 550px */
|
||||
@media (min-width: 550px) {
|
||||
.container {
|
||||
width: 80%; }
|
||||
.column,
|
||||
.columns {
|
||||
margin-left: 0; }
|
||||
.column:first-child,
|
||||
.columns:first-child {
|
||||
margin-left: 0; }
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* Base Styles
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* NOTE
|
||||
html is set to 62.5% so that all the REM measurements throughout Skeleton
|
||||
are based on 10px sizing. So basically 1.5rem = 15px :) */
|
||||
|
||||
@font-face {
|
||||
font-family: "neon-tubes-2-regular";
|
||||
src:
|
||||
url("https://assets.codepen.io/2585/NeonTubes2.otf") format("woff"),
|
||||
url("https://assets.codepen.io/2585/NeonTubes2.otf") format("opentype"),
|
||||
url("https://assets.codepen.io/2585/NeonTubes2.otf") format("truetype")
|
||||
;
|
||||
}
|
||||
|
||||
@import url('https://fonts.googleapis.com/css2?family=Teko&display=swap');
|
||||
|
||||
html {
|
||||
block-size: 100%;
|
||||
inline-size: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
color: rgb(0, 0, 0);
|
||||
background: radial-gradient(ellipse at bottom, #4A587B 0%, #030308 100%);
|
||||
-webkit-background-size: cover;
|
||||
-moz-background-size: cover;
|
||||
-o-background-size: cover;
|
||||
background-size: 400% 400%;
|
||||
background-repeat: no-repeat;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
min-block-size: 100%;
|
||||
min-inline-size: 100%;
|
||||
font-weight: 700;
|
||||
margin: 0;
|
||||
box-sizing: border-box;
|
||||
display: grid;
|
||||
font-family: 'Teko', sans-serif;
|
||||
letter-spacing: 0.1em;
|
||||
}
|
||||
|
||||
|
||||
/* Typography
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
h1 {
|
||||
font-size: 50px;
|
||||
font-weight: normal;
|
||||
font-family: "neon-tubes-2-regular", sans-serif;
|
||||
color: var(--neon);
|
||||
--neon: hsl(355 100% 95%);
|
||||
--neon-glow: #ca0213;
|
||||
text-shadow:
|
||||
0 0 20px var(--neon-glow),
|
||||
0 0 2.5vmin var(--neon-glow),
|
||||
0 0 5vmin var(--neon-glow),
|
||||
0 0 10vmin var(--neon-glow),
|
||||
0 0 15vmin var(--neon-glow);
|
||||
position: relative;
|
||||
text-align: right;
|
||||
top: 55px;
|
||||
right: 10px;
|
||||
padding-right: 300px;
|
||||
-moz-transform: skew(-7deg, 0deg);
|
||||
-webkit-transform: skew(-7deg, 0deg);
|
||||
-o-transform: skew(-7deg, 0deg);
|
||||
-ms-transform: skew(-7deg, 0deg);
|
||||
transform: skew(-7deg, 0deg);
|
||||
}
|
||||
|
||||
p {
|
||||
--neon: hsl(192 100% 95%);
|
||||
--neon-glow: #009ccc;
|
||||
font-family: "neon-tubes-2-regular", sans-serif;
|
||||
color: var(--neon);
|
||||
text-shadow:
|
||||
0 0 20px var(--neon-glow),
|
||||
0 0 2.5vmin var(--neon-glow),
|
||||
0 0 5vmin var(--neon-glow),
|
||||
0 0 10vmin var(--neon-glow),
|
||||
0 0 15vmin var(--neon-glow);
|
||||
font-size: 50px;
|
||||
font-weight: normal;
|
||||
position: relative;
|
||||
text-align: left;
|
||||
bottom: 55px;
|
||||
padding-left: 300px;
|
||||
left: 10px;
|
||||
-moz-transform: skew(-7deg, 0deg);
|
||||
-webkit-transform: skew(-7deg, 0deg);
|
||||
-o-transform: skew(-7deg, 0deg);
|
||||
-ms-transform: skew(-7deg, 0deg);
|
||||
transform: skew(-7deg, 0deg);
|
||||
}
|
||||
|
||||
|
||||
/* Links
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
a {
|
||||
color: #0085FF;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
color: #0085FF; }
|
||||
|
||||
.spacing {
|
||||
padding: 0 10px;
|
||||
padding-top: 25px;
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
|
||||
/* Code
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
code {
|
||||
padding: .2rem .5rem;
|
||||
margin: 0 .2rem;
|
||||
font-size: 90%;
|
||||
white-space: nowrap;
|
||||
background: #F1F1F1;
|
||||
border: 1px solid #E1E1E1;
|
||||
border-radius: 4px; }
|
||||
pre > code {
|
||||
display: block;
|
||||
padding: 1rem 1.5rem;
|
||||
white-space: pre; }
|
||||
|
||||
/* Spacing
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
button,
|
||||
.button {
|
||||
margin-bottom: 1rem; }
|
||||
input,
|
||||
textarea,
|
||||
select,
|
||||
fieldset {
|
||||
margin-bottom: 1.5rem; }
|
||||
pre,
|
||||
blockquote,
|
||||
dl,
|
||||
figure,
|
||||
p,
|
||||
ol {
|
||||
margin-bottom: 2.5rem; }
|
||||
|
||||
|
||||
/* Utilities
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.u-full-width {
|
||||
width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.u-max-full-width {
|
||||
max-width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.u-pull-right {
|
||||
float: right; }
|
||||
.u-pull-left {
|
||||
float: left; }
|
||||
|
||||
|
||||
/* Misc
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
hr {
|
||||
margin-top: 3rem;
|
||||
margin-bottom: 3.5rem;
|
||||
border-width: 0;
|
||||
border-top: 1px solid #E1E1E1; }
|
||||
|
||||
|
||||
/* ===== Scrollbar CSS ===== */
|
||||
/* Firefox */
|
||||
* {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #171a1d #31363b;
|
||||
}
|
||||
|
||||
/* Chrome, Edge, and Safari */
|
||||
*::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-track {
|
||||
background: #31363b;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-thumb {
|
||||
background-color: #171a1d;
|
||||
border-radius: 30px;
|
||||
border: 3px none #ffffff;
|
||||
}
|
||||
|
||||
|
||||
/* Credit footer
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* Styling for credit footer text */
|
||||
.credit-txt {
|
||||
font-size: 15px;
|
||||
text-decoration: none;
|
||||
letter-spacing: 1px;
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
.credit-icon {
|
||||
display: none; }
|
||||
.credit-footer {
|
||||
position: relative;
|
||||
right: 15px; }
|
||||
|
||||
|
||||
/* Switches text color for credit footer for dark/light mode */
|
||||
|
||||
.credit-txt-clr{
|
||||
color: #FFF !important;
|
||||
}
|
||||
|
||||
/*-----------------------parallax-----------------------*/
|
||||
#object1 {
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
background: transparent;
|
||||
animation: animStar 120s linear infinite;
|
||||
|
||||
box-shadow: 779px 1331px #fff, 324px 42px #fff, 303px 586px #fff,
|
||||
1312px 276px #fff, 451px 625px #fff, 521px 1931px #fff, 1087px 1871px #fff,
|
||||
36px 1546px #fff, 132px 934px #fff, 1698px 901px #fff, 1418px 664px #fff,
|
||||
1448px 1157px #fff, 1084px 232px #fff, 347px 1776px #fff, 1722px 243px #fff,
|
||||
1629px 835px #fff, 479px 969px #fff, 1231px 960px #fff, 586px 384px #fff,
|
||||
164px 527px #fff, 8px 646px #fff, 1150px 1126px #fff, 665px 1357px #fff,
|
||||
1556px 1982px #fff, 1260px 1961px #fff, 1675px 1741px #fff,
|
||||
1843px 1514px #fff, 718px 1628px #fff, 242px 1343px #fff, 1497px 1880px #fff,
|
||||
1364px 230px #fff, 1739px 1302px #fff, 636px 959px #fff, 304px 686px #fff,
|
||||
614px 751px #fff, 1935px 816px #fff, 1428px 60px #fff, 355px 335px #fff,
|
||||
1594px 158px #fff, 90px 60px #fff, 1553px 162px #fff, 1239px 1825px #fff,
|
||||
1945px 587px #fff, 749px 1785px #fff, 1987px 1172px #fff, 1301px 1237px #fff,
|
||||
1039px 342px #fff, 1585px 1481px #fff, 995px 1048px #fff, 524px 932px #fff,
|
||||
214px 413px #fff, 1701px 1300px #fff, 1037px 1613px #fff, 1871px 996px #fff,
|
||||
1360px 1635px #fff, 1110px 1313px #fff, 412px 1783px #fff, 1949px 177px #fff,
|
||||
903px 1854px #fff, 700px 1936px #fff, 378px 125px #fff, 308px 834px #fff,
|
||||
1118px 962px #fff, 1350px 1929px #fff, 781px 1811px #fff, 561px 137px #fff,
|
||||
757px 1148px #fff, 1670px 1979px #fff, 343px 739px #fff, 945px 795px #fff,
|
||||
576px 1903px #fff, 1078px 1436px #fff, 1583px 450px #fff, 1366px 474px #fff,
|
||||
297px 1873px #fff, 192px 162px #fff, 1624px 1633px #fff, 59px 453px #fff,
|
||||
82px 1872px #fff, 1933px 498px #fff, 1966px 1974px #fff, 1975px 1688px #fff,
|
||||
779px 314px #fff, 1858px 1543px #fff, 73px 1507px #fff, 1693px 975px #fff,
|
||||
1683px 108px #fff, 1768px 1654px #fff, 654px 14px #fff, 494px 171px #fff,
|
||||
1689px 1895px #fff, 1660px 263px #fff, 1031px 903px #fff, 1203px 1393px #fff,
|
||||
1333px 1421px #fff, 1113px 41px #fff, 1206px 1645px #fff, 1325px 1635px #fff,
|
||||
142px 388px #fff, 572px 215px #fff, 1535px 296px #fff, 1419px 407px #fff,
|
||||
1379px 1003px #fff, 329px 469px #fff, 1791px 1652px #fff, 935px 1802px #fff,
|
||||
1330px 1820px #fff, 421px 1933px #fff, 828px 365px #fff, 275px 316px #fff,
|
||||
707px 960px #fff, 1605px 1554px #fff, 625px 58px #fff, 717px 1697px #fff,
|
||||
1669px 246px #fff, 1925px 322px #fff, 1154px 1803px #fff, 1929px 295px #fff,
|
||||
1248px 240px #fff, 1045px 1755px #fff, 166px 942px #fff, 1888px 1773px #fff,
|
||||
678px 1963px #fff, 1370px 569px #fff, 1974px 1400px #fff, 1786px 460px #fff,
|
||||
51px 307px #fff, 784px 1400px #fff, 730px 1258px #fff, 1712px 393px #fff,
|
||||
416px 170px #fff, 1797px 1932px #fff, 572px 219px #fff, 1557px 1856px #fff,
|
||||
218px 8px #fff, 348px 1334px #fff, 469px 413px #fff, 385px 1738px #fff,
|
||||
1357px 1818px #fff, 240px 942px #fff, 248px 1847px #fff, 1535px 806px #fff,
|
||||
236px 1514px #fff, 1429px 1556px #fff, 73px 1633px #fff, 1398px 1121px #fff,
|
||||
671px 1301px #fff, 1404px 1663px #fff, 740px 1018px #fff, 1600px 377px #fff,
|
||||
785px 514px #fff, 112px 1084px #fff, 1915px 1887px #fff, 1463px 1848px #fff,
|
||||
687px 1115px #fff, 1268px 1768px #fff, 1729px 1425px #fff,
|
||||
1284px 1022px #fff, 801px 974px #fff, 1975px 1317px #fff, 1354px 834px #fff,
|
||||
1446px 1484px #fff, 1283px 1786px #fff, 11px 523px #fff, 1842px 236px #fff,
|
||||
1355px 654px #fff, 429px 7px #fff, 1033px 1128px #fff, 157px 297px #fff,
|
||||
545px 635px #fff, 52px 1080px #fff, 827px 1520px #fff, 1121px 490px #fff,
|
||||
9px 309px #fff, 1744px 1586px #fff, 1014px 417px #fff, 1534px 524px #fff,
|
||||
958px 552px #fff, 1403px 1496px #fff, 387px 703px #fff, 1522px 548px #fff,
|
||||
1355px 282px #fff, 1532px 601px #fff, 1838px 790px #fff, 290px 259px #fff,
|
||||
295px 598px #fff, 1601px 539px #fff, 1561px 1272px #fff, 34px 1922px #fff,
|
||||
1024px 543px #fff, 467px 369px #fff, 722px 333px #fff, 1976px 1255px #fff,
|
||||
766px 983px #fff, 1582px 1285px #fff, 12px 512px #fff, 617px 1410px #fff,
|
||||
682px 577px #fff, 1334px 1438px #fff, 439px 327px #fff, 1617px 1661px #fff,
|
||||
673px 129px #fff, 794px 941px #fff, 1386px 1902px #fff, 37px 1353px #fff,
|
||||
1467px 1353px #fff, 416px 18px #fff, 187px 344px #fff, 200px 1898px #fff,
|
||||
1491px 1619px #fff, 811px 347px #fff, 924px 1827px #fff, 945px 217px #fff,
|
||||
1735px 1228px #fff, 379px 1890px #fff, 79px 761px #fff, 825px 1837px #fff,
|
||||
1980px 1558px #fff, 1308px 1573px #fff, 1488px 1726px #fff,
|
||||
382px 1208px #fff, 522px 595px #fff, 1277px 1898px #fff, 354px 552px #fff,
|
||||
161px 1784px #fff, 614px 251px #fff, 526px 1576px #fff, 17px 212px #fff,
|
||||
179px 996px #fff, 467px 1208px #fff, 1944px 1838px #fff, 1140px 1093px #fff,
|
||||
858px 1007px #fff, 200px 1064px #fff, 423px 1964px #fff, 1945px 439px #fff,
|
||||
1377px 689px #fff, 1120px 1437px #fff, 1876px 668px #fff, 907px 1324px #fff,
|
||||
343px 1976px #fff, 1816px 1501px #fff, 1849px 177px #fff, 647px 91px #fff,
|
||||
1984px 1012px #fff, 1336px 1300px #fff, 128px 648px #fff, 305px 1060px #fff,
|
||||
1324px 826px #fff, 1263px 1314px #fff, 1801px 629px #fff, 1614px 1555px #fff,
|
||||
1634px 90px #fff, 1603px 452px #fff, 891px 1984px #fff, 1556px 1906px #fff,
|
||||
121px 68px #fff, 1676px 1714px #fff, 516px 936px #fff, 1947px 1492px #fff,
|
||||
1455px 1519px #fff, 45px 602px #fff, 205px 1039px #fff, 793px 172px #fff,
|
||||
1562px 1739px #fff, 1056px 110px #fff, 1512px 379px #fff, 1795px 1621px #fff,
|
||||
1848px 607px #fff, 262px 1719px #fff, 477px 991px #fff, 483px 883px #fff,
|
||||
1239px 1197px #fff, 1496px 647px #fff, 1649px 25px #fff, 1491px 1946px #fff,
|
||||
119px 996px #fff, 179px 1472px #fff, 1341px 808px #fff, 1565px 1700px #fff,
|
||||
407px 1544px #fff, 1754px 357px #fff, 1288px 981px #fff, 902px 1997px #fff,
|
||||
1755px 1668px #fff, 186px 877px #fff, 1202px 1882px #fff, 461px 1213px #fff,
|
||||
1400px 748px #fff, 1969px 1899px #fff, 809px 522px #fff, 514px 1219px #fff,
|
||||
374px 275px #fff, 938px 1973px #fff, 357px 552px #fff, 144px 1722px #fff,
|
||||
1572px 912px #fff, 402px 1858px #fff, 1544px 1195px #fff, 667px 1257px #fff,
|
||||
727px 1496px #fff, 993px 232px #fff, 1772px 313px #fff, 1040px 1590px #fff,
|
||||
1204px 1973px #fff, 1268px 79px #fff, 1555px 1048px #fff, 986px 1707px #fff,
|
||||
978px 1710px #fff, 713px 360px #fff, 407px 863px #fff, 461px 736px #fff,
|
||||
284px 1608px #fff, 103px 430px #fff, 1283px 1319px #fff, 977px 1186px #fff,
|
||||
1966px 1516px #fff, 1287px 1129px #fff, 70px 1098px #fff, 1189px 889px #fff,
|
||||
1126px 1734px #fff, 309px 1292px #fff, 879px 764px #fff, 65px 473px #fff,
|
||||
1003px 1959px #fff, 658px 791px #fff, 402px 1576px #fff, 35px 622px #fff,
|
||||
529px 1589px #fff, 164px 666px #fff, 1876px 1290px #fff, 1541px 526px #fff,
|
||||
270px 1297px #fff, 440px 865px #fff, 1500px 802px #fff, 182px 1754px #fff,
|
||||
1264px 892px #fff, 272px 1249px #fff, 1289px 1535px #fff, 190px 1646px #fff,
|
||||
955px 242px #fff, 1456px 1597px #fff, 1727px 1983px #fff, 635px 801px #fff,
|
||||
226px 455px #fff, 1396px 1710px #fff, 849px 1863px #fff, 237px 1264px #fff,
|
||||
839px 140px #fff, 1122px 735px #fff, 1280px 15px #fff, 1318px 242px #fff,
|
||||
1819px 1148px #fff, 333px 1392px #fff, 1949px 553px #fff, 1878px 1332px #fff,
|
||||
467px 548px #fff, 1812px 1082px #fff, 1067px 193px #fff, 243px 156px #fff,
|
||||
483px 1616px #fff, 1714px 933px #fff, 759px 1800px #fff, 1822px 995px #fff,
|
||||
1877px 572px #fff, 581px 1084px #fff, 107px 732px #fff, 642px 1837px #fff,
|
||||
166px 1493px #fff, 1555px 198px #fff, 819px 307px #fff, 947px 345px #fff,
|
||||
827px 224px #fff, 927px 1394px #fff, 540px 467px #fff, 1093px 405px #fff,
|
||||
1140px 927px #fff, 130px 529px #fff, 33px 1980px #fff, 1147px 1663px #fff,
|
||||
1616px 1436px #fff, 528px 710px #fff, 798px 1100px #fff, 505px 1480px #fff,
|
||||
899px 641px #fff, 1909px 1949px #fff, 1311px 964px #fff, 979px 1301px #fff,
|
||||
1393px 969px #fff, 1793px 1886px #fff, 292px 357px #fff, 1196px 1718px #fff,
|
||||
1290px 1994px #fff, 537px 1973px #fff, 1181px 1674px #fff,
|
||||
1740px 1566px #fff, 1307px 265px #fff, 922px 522px #fff, 1892px 472px #fff,
|
||||
384px 1746px #fff, 392px 1098px #fff, 647px 548px #fff, 390px 1498px #fff,
|
||||
1246px 138px #fff, 730px 876px #fff, 192px 1472px #fff, 1790px 1789px #fff,
|
||||
928px 311px #fff, 1253px 1647px #fff, 747px 1921px #fff, 1561px 1025px #fff,
|
||||
1533px 1292px #fff, 1985px 195px #fff, 728px 729px #fff, 1712px 1936px #fff,
|
||||
512px 1717px #fff, 1528px 483px #fff, 313px 1642px #fff, 281px 1849px #fff,
|
||||
1212px 799px #fff, 435px 1191px #fff, 1422px 611px #fff, 1718px 1964px #fff,
|
||||
411px 944px #fff, 210px 636px #fff, 1502px 1295px #fff, 1434px 349px #fff,
|
||||
769px 60px #fff, 747px 1053px #fff, 789px 504px #fff, 1436px 1264px #fff,
|
||||
1893px 1225px #fff, 1394px 1788px #fff, 1108px 1317px #fff,
|
||||
1673px 1395px #fff, 854px 1010px #fff, 1705px 80px #fff, 1858px 148px #fff,
|
||||
1729px 344px #fff, 1388px 664px #fff, 895px 406px #fff, 1479px 157px #fff,
|
||||
1441px 1157px #fff, 552px 1900px #fff, 516px 364px #fff, 1647px 189px #fff,
|
||||
1427px 1071px #fff, 785px 729px #fff, 1080px 1710px #fff, 504px 204px #fff,
|
||||
1177px 1622px #fff, 657px 34px #fff, 1296px 1099px #fff, 248px 180px #fff,
|
||||
1212px 1568px #fff, 667px 1562px #fff, 695px 841px #fff, 1608px 1247px #fff,
|
||||
751px 882px #fff, 87px 167px #fff, 607px 1368px #fff, 1363px 1203px #fff,
|
||||
1836px 317px #fff, 1668px 1703px #fff, 830px 1154px #fff, 1721px 1398px #fff,
|
||||
1601px 1280px #fff, 976px 874px #fff, 1743px 254px #fff, 1020px 1815px #fff,
|
||||
1670px 1766px #fff, 1890px 735px #fff, 1379px 136px #fff, 1864px 695px #fff,
|
||||
206px 965px #fff, 1404px 1932px #fff, 1923px 1360px #fff, 247px 682px #fff,
|
||||
519px 1708px #fff, 645px 750px #fff, 1164px 1204px #fff, 834px 323px #fff,
|
||||
172px 1350px #fff, 213px 972px #fff, 1837px 190px #fff, 285px 1806px #fff,
|
||||
1047px 1299px #fff, 1548px 825px #fff, 1730px 324px #fff, 1346px 1909px #fff,
|
||||
772px 270px #fff, 345px 1190px #fff, 478px 1433px #fff, 1479px 25px #fff,
|
||||
1994px 1830px #fff, 1744px 732px #fff, 20px 1635px #fff, 690px 1795px #fff,
|
||||
1594px 569px #fff, 579px 245px #fff, 1398px 733px #fff, 408px 1352px #fff,
|
||||
1774px 120px #fff, 1152px 1370px #fff, 1698px 1810px #fff, 710px 1450px #fff,
|
||||
665px 286px #fff, 493px 1720px #fff, 786px 5px #fff, 637px 1140px #fff,
|
||||
764px 324px #fff, 927px 310px #fff, 938px 1424px #fff, 1884px 744px #fff,
|
||||
913px 462px #fff, 1831px 1936px #fff, 1527px 249px #fff, 36px 1381px #fff,
|
||||
1597px 581px #fff, 1530px 355px #fff, 949px 459px #fff, 799px 828px #fff,
|
||||
242px 1471px #fff, 654px 797px #fff, 796px 594px #fff, 1365px 678px #fff,
|
||||
752px 23px #fff, 1630px 541px #fff, 982px 72px #fff, 1733px 1831px #fff,
|
||||
21px 412px #fff, 775px 998px #fff, 335px 1945px #fff, 264px 583px #fff,
|
||||
158px 1311px #fff, 528px 164px #fff, 1978px 574px #fff, 717px 1203px #fff,
|
||||
734px 1591px #fff, 1555px 820px #fff, 16px 1943px #fff, 1625px 1177px #fff,
|
||||
1236px 690px #fff, 1585px 1590px #fff, 1737px 1728px #fff, 721px 698px #fff,
|
||||
1804px 1186px #fff, 166px 980px #fff, 1850px 230px #fff, 330px 1712px #fff,
|
||||
95px 797px #fff, 1948px 1078px #fff, 469px 939px #fff, 1269px 1899px #fff,
|
||||
955px 1220px #fff, 1137px 1075px #fff, 312px 1293px #fff, 986px 1762px #fff,
|
||||
1103px 1238px #fff, 428px 1993px #fff, 355px 570px #fff, 977px 1836px #fff,
|
||||
1395px 1092px #fff, 276px 913px #fff, 1743px 656px #fff, 773px 502px #fff,
|
||||
1686px 1322px #fff, 1516px 1945px #fff, 1334px 501px #fff, 266px 156px #fff,
|
||||
455px 655px #fff, 798px 72px #fff, 1059px 1259px #fff, 1402px 1687px #fff,
|
||||
236px 1329px #fff, 1455px 786px #fff, 146px 1228px #fff, 1851px 823px #fff,
|
||||
1062px 100px #fff, 1220px 953px #fff, 20px 1826px #fff, 36px 1063px #fff,
|
||||
1525px 338px #fff, 790px 1521px #fff, 741px 1099px #fff, 288px 1489px #fff,
|
||||
700px 1060px #fff, 390px 1071px #fff, 411px 1036px #fff, 1853px 1072px #fff,
|
||||
1446px 1085px #fff, 1164px 874px #fff, 924px 925px #fff, 291px 271px #fff,
|
||||
1257px 1964px #fff, 1580px 1352px #fff, 1507px 1216px #fff, 211px 956px #fff,
|
||||
985px 1195px #fff, 975px 1640px #fff, 518px 101px #fff, 663px 1395px #fff,
|
||||
914px 532px #fff, 145px 1320px #fff, 69px 1397px #fff, 982px 523px #fff,
|
||||
257px 725px #fff, 1599px 831px #fff, 1636px 1513px #fff, 1250px 1158px #fff,
|
||||
1132px 604px #fff, 183px 102px #fff, 1057px 318px #fff, 1247px 1835px #fff,
|
||||
1983px 1110px #fff, 1077px 1455px #fff, 921px 1770px #fff, 806px 1350px #fff,
|
||||
1938px 1992px #fff, 855px 1260px #fff, 902px 1345px #fff, 658px 1908px #fff,
|
||||
1845px 679px #fff, 712px 1482px #fff, 595px 950px #fff, 1784px 1992px #fff,
|
||||
1847px 1785px #fff, 691px 1004px #fff, 175px 1179px #fff, 1666px 1911px #fff,
|
||||
41px 61px #fff, 971px 1080px #fff, 1830px 1450px #fff, 1351px 1518px #fff,
|
||||
1257px 99px #fff, 1395px 1498px #fff, 1117px 252px #fff, 1779px 597px #fff,
|
||||
1346px 729px #fff, 1108px 1144px #fff, 402px 691px #fff, 72px 496px #fff,
|
||||
1673px 1604px #fff, 1497px 974px #fff, 1865px 1664px #fff, 88px 806px #fff,
|
||||
918px 77px #fff, 244px 1118px #fff, 256px 1820px #fff, 1851px 1840px #fff,
|
||||
605px 1851px #fff, 634px 383px #fff, 865px 37px #fff, 943px 1024px #fff,
|
||||
1951px 177px #fff, 1097px 523px #fff, 985px 1700px #fff, 1243px 122px #fff,
|
||||
768px 1070px #fff, 468px 194px #fff, 320px 1867px #fff, 1850px 185px #fff,
|
||||
380px 1616px #fff, 468px 1294px #fff, 1122px 1743px #fff, 884px 299px #fff,
|
||||
1300px 1917px #fff, 1860px 396px #fff, 1270px 990px #fff, 529px 733px #fff,
|
||||
1975px 1347px #fff, 1885px 685px #fff, 226px 506px #fff, 651px 878px #fff,
|
||||
1323px 680px #fff, 1284px 680px #fff, 238px 1967px #fff, 911px 174px #fff,
|
||||
1111px 521px #fff, 1150px 85px #fff, 794px 502px #fff, 484px 1856px #fff,
|
||||
1809px 368px #fff, 112px 953px #fff, 590px 1009px #fff, 1655px 311px #fff,
|
||||
100px 1026px #fff, 1803px 352px #fff, 865px 306px #fff, 1077px 1019px #fff,
|
||||
1335px 872px #fff, 1647px 1298px #fff, 1233px 1387px #fff, 698px 1036px #fff,
|
||||
659px 1860px #fff, 388px 1412px #fff, 1212px 458px #fff, 755px 1468px #fff,
|
||||
696px 1654px #fff, 1144px 60px #fff;
|
||||
}
|
||||
|
||||
#object1:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: auto;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
background: transparent;
|
||||
|
||||
box-shadow: 779px 1331px #fff, 324px 42px #fff, 303px 586px #fff,
|
||||
1312px 276px #fff, 451px 625px #fff, 521px 1931px #fff, 1087px 1871px #fff,
|
||||
36px 1546px #fff, 132px 934px #fff, 1698px 901px #fff, 1418px 664px #fff,
|
||||
1448px 1157px #fff, 1084px 232px #fff, 347px 1776px #fff, 1722px 243px #fff,
|
||||
1629px 835px #fff, 479px 969px #fff, 1231px 960px #fff, 586px 384px #fff,
|
||||
164px 527px #fff, 8px 646px #fff, 1150px 1126px #fff, 665px 1357px #fff,
|
||||
1556px 1982px #fff, 1260px 1961px #fff, 1675px 1741px #fff,
|
||||
1843px 1514px #fff, 718px 1628px #fff, 242px 1343px #fff, 1497px 1880px #fff,
|
||||
1364px 230px #fff, 1739px 1302px #fff, 636px 959px #fff, 304px 686px #fff,
|
||||
614px 751px #fff, 1935px 816px #fff, 1428px 60px #fff, 355px 335px #fff,
|
||||
1594px 158px #fff, 90px 60px #fff, 1553px 162px #fff, 1239px 1825px #fff,
|
||||
1945px 587px #fff, 749px 1785px #fff, 1987px 1172px #fff, 1301px 1237px #fff,
|
||||
1039px 342px #fff, 1585px 1481px #fff, 995px 1048px #fff, 524px 932px #fff,
|
||||
214px 413px #fff, 1701px 1300px #fff, 1037px 1613px #fff, 1871px 996px #fff,
|
||||
1360px 1635px #fff, 1110px 1313px #fff, 412px 1783px #fff, 1949px 177px #fff,
|
||||
903px 1854px #fff, 700px 1936px #fff, 378px 125px #fff, 308px 834px #fff,
|
||||
1118px 962px #fff, 1350px 1929px #fff, 781px 1811px #fff, 561px 137px #fff,
|
||||
757px 1148px #fff, 1670px 1979px #fff, 343px 739px #fff, 945px 795px #fff,
|
||||
576px 1903px #fff, 1078px 1436px #fff, 1583px 450px #fff, 1366px 474px #fff,
|
||||
297px 1873px #fff, 192px 162px #fff, 1624px 1633px #fff, 59px 453px #fff,
|
||||
82px 1872px #fff, 1933px 498px #fff, 1966px 1974px #fff, 1975px 1688px #fff,
|
||||
779px 314px #fff, 1858px 1543px #fff, 73px 1507px #fff, 1693px 975px #fff,
|
||||
1683px 108px #fff, 1768px 1654px #fff, 654px 14px #fff, 494px 171px #fff,
|
||||
1689px 1895px #fff, 1660px 263px #fff, 1031px 903px #fff, 1203px 1393px #fff,
|
||||
1333px 1421px #fff, 1113px 41px #fff, 1206px 1645px #fff, 1325px 1635px #fff,
|
||||
142px 388px #fff, 572px 215px #fff, 1535px 296px #fff, 1419px 407px #fff,
|
||||
1379px 1003px #fff, 329px 469px #fff, 1791px 1652px #fff, 935px 1802px #fff,
|
||||
1330px 1820px #fff, 421px 1933px #fff, 828px 365px #fff, 275px 316px #fff,
|
||||
707px 960px #fff, 1605px 1554px #fff, 625px 58px #fff, 717px 1697px #fff,
|
||||
1669px 246px #fff, 1925px 322px #fff, 1154px 1803px #fff, 1929px 295px #fff,
|
||||
1248px 240px #fff, 1045px 1755px #fff, 166px 942px #fff, 1888px 1773px #fff,
|
||||
678px 1963px #fff, 1370px 569px #fff, 1974px 1400px #fff, 1786px 460px #fff,
|
||||
51px 307px #fff, 784px 1400px #fff, 730px 1258px #fff, 1712px 393px #fff,
|
||||
416px 170px #fff, 1797px 1932px #fff, 572px 219px #fff, 1557px 1856px #fff,
|
||||
218px 8px #fff, 348px 1334px #fff, 469px 413px #fff, 385px 1738px #fff,
|
||||
1357px 1818px #fff, 240px 942px #fff, 248px 1847px #fff, 1535px 806px #fff,
|
||||
236px 1514px #fff, 1429px 1556px #fff, 73px 1633px #fff, 1398px 1121px #fff,
|
||||
671px 1301px #fff, 1404px 1663px #fff, 740px 1018px #fff, 1600px 377px #fff,
|
||||
785px 514px #fff, 112px 1084px #fff, 1915px 1887px #fff, 1463px 1848px #fff,
|
||||
687px 1115px #fff, 1268px 1768px #fff, 1729px 1425px #fff,
|
||||
1284px 1022px #fff, 801px 974px #fff, 1975px 1317px #fff, 1354px 834px #fff,
|
||||
1446px 1484px #fff, 1283px 1786px #fff, 11px 523px #fff, 1842px 236px #fff,
|
||||
1355px 654px #fff, 429px 7px #fff, 1033px 1128px #fff, 157px 297px #fff,
|
||||
545px 635px #fff, 52px 1080px #fff, 827px 1520px #fff, 1121px 490px #fff,
|
||||
9px 309px #fff, 1744px 1586px #fff, 1014px 417px #fff, 1534px 524px #fff,
|
||||
958px 552px #fff, 1403px 1496px #fff, 387px 703px #fff, 1522px 548px #fff,
|
||||
1355px 282px #fff, 1532px 601px #fff, 1838px 790px #fff, 290px 259px #fff,
|
||||
295px 598px #fff, 1601px 539px #fff, 1561px 1272px #fff, 34px 1922px #fff,
|
||||
1024px 543px #fff, 467px 369px #fff, 722px 333px #fff, 1976px 1255px #fff,
|
||||
766px 983px #fff, 1582px 1285px #fff, 12px 512px #fff, 617px 1410px #fff,
|
||||
682px 577px #fff, 1334px 1438px #fff, 439px 327px #fff, 1617px 1661px #fff,
|
||||
673px 129px #fff, 794px 941px #fff, 1386px 1902px #fff, 37px 1353px #fff,
|
||||
1467px 1353px #fff, 416px 18px #fff, 187px 344px #fff, 200px 1898px #fff,
|
||||
1491px 1619px #fff, 811px 347px #fff, 924px 1827px #fff, 945px 217px #fff,
|
||||
1735px 1228px #fff, 379px 1890px #fff, 79px 761px #fff, 825px 1837px #fff,
|
||||
1980px 1558px #fff, 1308px 1573px #fff, 1488px 1726px #fff,
|
||||
382px 1208px #fff, 522px 595px #fff, 1277px 1898px #fff, 354px 552px #fff,
|
||||
161px 1784px #fff, 614px 251px #fff, 526px 1576px #fff, 17px 212px #fff,
|
||||
179px 996px #fff, 467px 1208px #fff, 1944px 1838px #fff, 1140px 1093px #fff,
|
||||
858px 1007px #fff, 200px 1064px #fff, 423px 1964px #fff, 1945px 439px #fff,
|
||||
1377px 689px #fff, 1120px 1437px #fff, 1876px 668px #fff, 907px 1324px #fff,
|
||||
343px 1976px #fff, 1816px 1501px #fff, 1849px 177px #fff, 647px 91px #fff,
|
||||
1984px 1012px #fff, 1336px 1300px #fff, 128px 648px #fff, 305px 1060px #fff,
|
||||
1324px 826px #fff, 1263px 1314px #fff, 1801px 629px #fff, 1614px 1555px #fff,
|
||||
1634px 90px #fff, 1603px 452px #fff, 891px 1984px #fff, 1556px 1906px #fff,
|
||||
121px 68px #fff, 1676px 1714px #fff, 516px 936px #fff, 1947px 1492px #fff,
|
||||
1455px 1519px #fff, 45px 602px #fff, 205px 1039px #fff, 793px 172px #fff,
|
||||
1562px 1739px #fff, 1056px 110px #fff, 1512px 379px #fff, 1795px 1621px #fff,
|
||||
1848px 607px #fff, 262px 1719px #fff, 477px 991px #fff, 483px 883px #fff,
|
||||
1239px 1197px #fff, 1496px 647px #fff, 1649px 25px #fff, 1491px 1946px #fff,
|
||||
119px 996px #fff, 179px 1472px #fff, 1341px 808px #fff, 1565px 1700px #fff,
|
||||
407px 1544px #fff, 1754px 357px #fff, 1288px 981px #fff, 902px 1997px #fff,
|
||||
1755px 1668px #fff, 186px 877px #fff, 1202px 1882px #fff, 461px 1213px #fff,
|
||||
1400px 748px #fff, 1969px 1899px #fff, 809px 522px #fff, 514px 1219px #fff,
|
||||
374px 275px #fff, 938px 1973px #fff, 357px 552px #fff, 144px 1722px #fff,
|
||||
1572px 912px #fff, 402px 1858px #fff, 1544px 1195px #fff, 667px 1257px #fff,
|
||||
727px 1496px #fff, 993px 232px #fff, 1772px 313px #fff, 1040px 1590px #fff,
|
||||
1204px 1973px #fff, 1268px 79px #fff, 1555px 1048px #fff, 986px 1707px #fff,
|
||||
978px 1710px #fff, 713px 360px #fff, 407px 863px #fff, 461px 736px #fff,
|
||||
284px 1608px #fff, 103px 430px #fff, 1283px 1319px #fff, 977px 1186px #fff,
|
||||
1966px 1516px #fff, 1287px 1129px #fff, 70px 1098px #fff, 1189px 889px #fff,
|
||||
1126px 1734px #fff, 309px 1292px #fff, 879px 764px #fff, 65px 473px #fff,
|
||||
1003px 1959px #fff, 658px 791px #fff, 402px 1576px #fff, 35px 622px #fff,
|
||||
529px 1589px #fff, 164px 666px #fff, 1876px 1290px #fff, 1541px 526px #fff,
|
||||
270px 1297px #fff, 440px 865px #fff, 1500px 802px #fff, 182px 1754px #fff,
|
||||
1264px 892px #fff, 272px 1249px #fff, 1289px 1535px #fff, 190px 1646px #fff,
|
||||
955px 242px #fff, 1456px 1597px #fff, 1727px 1983px #fff, 635px 801px #fff,
|
||||
226px 455px #fff, 1396px 1710px #fff, 849px 1863px #fff, 237px 1264px #fff,
|
||||
839px 140px #fff, 1122px 735px #fff, 1280px 15px #fff, 1318px 242px #fff,
|
||||
1819px 1148px #fff, 333px 1392px #fff, 1949px 553px #fff, 1878px 1332px #fff,
|
||||
467px 548px #fff, 1812px 1082px #fff, 1067px 193px #fff, 243px 156px #fff,
|
||||
483px 1616px #fff, 1714px 933px #fff, 759px 1800px #fff, 1822px 995px #fff,
|
||||
1877px 572px #fff, 581px 1084px #fff, 107px 732px #fff, 642px 1837px #fff,
|
||||
166px 1493px #fff, 1555px 198px #fff, 819px 307px #fff, 947px 345px #fff,
|
||||
827px 224px #fff, 927px 1394px #fff, 540px 467px #fff, 1093px 405px #fff,
|
||||
1140px 927px #fff, 130px 529px #fff, 33px 1980px #fff, 1147px 1663px #fff,
|
||||
1616px 1436px #fff, 528px 710px #fff, 798px 1100px #fff, 505px 1480px #fff,
|
||||
899px 641px #fff, 1909px 1949px #fff, 1311px 964px #fff, 979px 1301px #fff,
|
||||
1393px 969px #fff, 1793px 1886px #fff, 292px 357px #fff, 1196px 1718px #fff,
|
||||
1290px 1994px #fff, 537px 1973px #fff, 1181px 1674px #fff,
|
||||
1740px 1566px #fff, 1307px 265px #fff, 922px 522px #fff, 1892px 472px #fff,
|
||||
384px 1746px #fff, 392px 1098px #fff, 647px 548px #fff, 390px 1498px #fff,
|
||||
1246px 138px #fff, 730px 876px #fff, 192px 1472px #fff, 1790px 1789px #fff,
|
||||
928px 311px #fff, 1253px 1647px #fff, 747px 1921px #fff, 1561px 1025px #fff,
|
||||
1533px 1292px #fff, 1985px 195px #fff, 728px 729px #fff, 1712px 1936px #fff,
|
||||
512px 1717px #fff, 1528px 483px #fff, 313px 1642px #fff, 281px 1849px #fff,
|
||||
1212px 799px #fff, 435px 1191px #fff, 1422px 611px #fff, 1718px 1964px #fff,
|
||||
411px 944px #fff, 210px 636px #fff, 1502px 1295px #fff, 1434px 349px #fff,
|
||||
769px 60px #fff, 747px 1053px #fff, 789px 504px #fff, 1436px 1264px #fff,
|
||||
1893px 1225px #fff, 1394px 1788px #fff, 1108px 1317px #fff,
|
||||
1673px 1395px #fff, 854px 1010px #fff, 1705px 80px #fff, 1858px 148px #fff,
|
||||
1729px 344px #fff, 1388px 664px #fff, 895px 406px #fff, 1479px 157px #fff,
|
||||
1441px 1157px #fff, 552px 1900px #fff, 516px 364px #fff, 1647px 189px #fff,
|
||||
1427px 1071px #fff, 785px 729px #fff, 1080px 1710px #fff, 504px 204px #fff,
|
||||
1177px 1622px #fff, 657px 34px #fff, 1296px 1099px #fff, 248px 180px #fff,
|
||||
1212px 1568px #fff, 667px 1562px #fff, 695px 841px #fff, 1608px 1247px #fff,
|
||||
751px 882px #fff, 87px 167px #fff, 607px 1368px #fff, 1363px 1203px #fff,
|
||||
1836px 317px #fff, 1668px 1703px #fff, 830px 1154px #fff, 1721px 1398px #fff,
|
||||
1601px 1280px #fff, 976px 874px #fff, 1743px 254px #fff, 1020px 1815px #fff,
|
||||
1670px 1766px #fff, 1890px 735px #fff, 1379px 136px #fff, 1864px 695px #fff,
|
||||
206px 965px #fff, 1404px 1932px #fff, 1923px 1360px #fff, 247px 682px #fff,
|
||||
519px 1708px #fff, 645px 750px #fff, 1164px 1204px #fff, 834px 323px #fff,
|
||||
172px 1350px #fff, 213px 972px #fff, 1837px 190px #fff, 285px 1806px #fff,
|
||||
1047px 1299px #fff, 1548px 825px #fff, 1730px 324px #fff, 1346px 1909px #fff,
|
||||
772px 270px #fff, 345px 1190px #fff, 478px 1433px #fff, 1479px 25px #fff,
|
||||
1994px 1830px #fff, 1744px 732px #fff, 20px 1635px #fff, 690px 1795px #fff,
|
||||
1594px 569px #fff, 579px 245px #fff, 1398px 733px #fff, 408px 1352px #fff,
|
||||
1774px 120px #fff, 1152px 1370px #fff, 1698px 1810px #fff, 710px 1450px #fff,
|
||||
665px 286px #fff, 493px 1720px #fff, 786px 5px #fff, 637px 1140px #fff,
|
||||
764px 324px #fff, 927px 310px #fff, 938px 1424px #fff, 1884px 744px #fff,
|
||||
913px 462px #fff, 1831px 1936px #fff, 1527px 249px #fff, 36px 1381px #fff,
|
||||
1597px 581px #fff, 1530px 355px #fff, 949px 459px #fff, 799px 828px #fff,
|
||||
242px 1471px #fff, 654px 797px #fff, 796px 594px #fff, 1365px 678px #fff,
|
||||
752px 23px #fff, 1630px 541px #fff, 982px 72px #fff, 1733px 1831px #fff,
|
||||
21px 412px #fff, 775px 998px #fff, 335px 1945px #fff, 264px 583px #fff,
|
||||
158px 1311px #fff, 528px 164px #fff, 1978px 574px #fff, 717px 1203px #fff,
|
||||
734px 1591px #fff, 1555px 820px #fff, 16px 1943px #fff, 1625px 1177px #fff,
|
||||
1236px 690px #fff, 1585px 1590px #fff, 1737px 1728px #fff, 721px 698px #fff,
|
||||
1804px 1186px #fff, 166px 980px #fff, 1850px 230px #fff, 330px 1712px #fff,
|
||||
95px 797px #fff, 1948px 1078px #fff, 469px 939px #fff, 1269px 1899px #fff,
|
||||
955px 1220px #fff, 1137px 1075px #fff, 312px 1293px #fff, 986px 1762px #fff,
|
||||
1103px 1238px #fff, 428px 1993px #fff, 355px 570px #fff, 977px 1836px #fff,
|
||||
1395px 1092px #fff, 276px 913px #fff, 1743px 656px #fff, 773px 502px #fff,
|
||||
1686px 1322px #fff, 1516px 1945px #fff, 1334px 501px #fff, 266px 156px #fff,
|
||||
455px 655px #fff, 798px 72px #fff, 1059px 1259px #fff, 1402px 1687px #fff,
|
||||
236px 1329px #fff, 1455px 786px #fff, 146px 1228px #fff, 1851px 823px #fff,
|
||||
1062px 100px #fff, 1220px 953px #fff, 20px 1826px #fff, 36px 1063px #fff,
|
||||
1525px 338px #fff, 790px 1521px #fff, 741px 1099px #fff, 288px 1489px #fff,
|
||||
700px 1060px #fff, 390px 1071px #fff, 411px 1036px #fff, 1853px 1072px #fff,
|
||||
1446px 1085px #fff, 1164px 874px #fff, 924px 925px #fff, 291px 271px #fff,
|
||||
1257px 1964px #fff, 1580px 1352px #fff, 1507px 1216px #fff, 211px 956px #fff,
|
||||
985px 1195px #fff, 975px 1640px #fff, 518px 101px #fff, 663px 1395px #fff,
|
||||
914px 532px #fff, 145px 1320px #fff, 69px 1397px #fff, 982px 523px #fff,
|
||||
257px 725px #fff, 1599px 831px #fff, 1636px 1513px #fff, 1250px 1158px #fff,
|
||||
1132px 604px #fff, 183px 102px #fff, 1057px 318px #fff, 1247px 1835px #fff,
|
||||
1983px 1110px #fff, 1077px 1455px #fff, 921px 1770px #fff, 806px 1350px #fff,
|
||||
1938px 1992px #fff, 855px 1260px #fff, 902px 1345px #fff, 658px 1908px #fff,
|
||||
1845px 679px #fff, 712px 1482px #fff, 595px 950px #fff, 1784px 1992px #fff,
|
||||
1847px 1785px #fff, 691px 1004px #fff, 175px 1179px #fff, 1666px 1911px #fff,
|
||||
41px 61px #fff, 971px 1080px #fff, 1830px 1450px #fff, 1351px 1518px #fff,
|
||||
1257px 99px #fff, 1395px 1498px #fff, 1117px 252px #fff, 1779px 597px #fff,
|
||||
1346px 729px #fff, 1108px 1144px #fff, 402px 691px #fff, 72px 496px #fff,
|
||||
1673px 1604px #fff, 1497px 974px #fff, 1865px 1664px #fff, 88px 806px #fff,
|
||||
918px 77px #fff, 244px 1118px #fff, 256px 1820px #fff, 1851px 1840px #fff,
|
||||
605px 1851px #fff, 634px 383px #fff, 865px 37px #fff, 943px 1024px #fff,
|
||||
1951px 177px #fff, 1097px 523px #fff, 985px 1700px #fff, 1243px 122px #fff,
|
||||
768px 1070px #fff, 468px 194px #fff, 320px 1867px #fff, 1850px 185px #fff,
|
||||
380px 1616px #fff, 468px 1294px #fff, 1122px 1743px #fff, 884px 299px #fff,
|
||||
1300px 1917px #fff, 1860px 396px #fff, 1270px 990px #fff, 529px 733px #fff,
|
||||
1975px 1347px #fff, 1885px 685px #fff, 226px 506px #fff, 651px 878px #fff,
|
||||
1323px 680px #fff, 1284px 680px #fff, 238px 1967px #fff, 911px 174px #fff,
|
||||
1111px 521px #fff, 1150px 85px #fff, 794px 502px #fff, 484px 1856px #fff,
|
||||
1809px 368px #fff, 112px 953px #fff, 590px 1009px #fff, 1655px 311px #fff,
|
||||
100px 1026px #fff, 1803px 352px #fff, 865px 306px #fff, 1077px 1019px #fff,
|
||||
1335px 872px #fff, 1647px 1298px #fff, 1233px 1387px #fff, 698px 1036px #fff,
|
||||
659px 1860px #fff, 388px 1412px #fff, 1212px 458px #fff, 755px 1468px #fff,
|
||||
696px 1654px #fff, 1144px 60px #fff;
|
||||
}
|
||||
|
||||
#object2 {
|
||||
width: 2px;
|
||||
height: 2px;
|
||||
background: transparent;
|
||||
animation: animStar 180s linear infinite;
|
||||
|
||||
box-shadow: 1448px 320px #fff, 1775px 1663px #fff, 332px 1364px #fff,
|
||||
878px 340px #fff, 569px 1832px #fff, 1422px 1684px #fff, 1946px 1907px #fff,
|
||||
121px 979px #fff, 1044px 1069px #fff, 463px 381px #fff, 423px 112px #fff,
|
||||
523px 1179px #fff, 779px 654px #fff, 1398px 694px #fff, 1085px 1464px #fff,
|
||||
1599px 1869px #fff, 801px 1882px #fff, 779px 1231px #fff, 552px 932px #fff,
|
||||
1057px 1196px #fff, 282px 1280px #fff, 496px 1986px #fff, 1833px 1120px #fff,
|
||||
1802px 1293px #fff, 6px 1696px #fff, 412px 1902px #fff, 605px 438px #fff,
|
||||
24px 1212px #fff, 234px 1320px #fff, 544px 344px #fff, 1107px 170px #fff,
|
||||
1603px 196px #fff, 905px 648px #fff, 68px 1458px #fff, 649px 1969px #fff,
|
||||
744px 675px #fff, 1127px 478px #fff, 714px 1814px #fff, 1486px 526px #fff,
|
||||
270px 1636px #fff, 1931px 149px #fff, 1807px 378px #fff, 8px 390px #fff,
|
||||
1415px 699px #fff, 1473px 1211px #fff, 1590px 141px #fff, 270px 1705px #fff,
|
||||
69px 1423px #fff, 1108px 1053px #fff, 1946px 128px #fff, 371px 371px #fff,
|
||||
1490px 220px #fff, 357px 1885px #fff, 363px 363px #fff, 1896px 1256px #fff,
|
||||
1979px 1050px #fff, 947px 1342px #fff, 1754px 242px #fff, 514px 974px #fff,
|
||||
65px 1477px #fff, 1840px 547px #fff, 950px 695px #fff, 459px 1150px #fff,
|
||||
1124px 1502px #fff, 481px 940px #fff, 680px 839px #fff, 797px 1169px #fff,
|
||||
1977px 1491px #fff, 734px 1724px #fff, 210px 298px #fff, 816px 628px #fff,
|
||||
686px 770px #fff, 1721px 267px #fff, 1663px 511px #fff, 1481px 1141px #fff,
|
||||
582px 248px #fff, 1308px 953px #fff, 628px 657px #fff, 897px 1535px #fff,
|
||||
270px 931px #fff, 791px 467px #fff, 1336px 1732px #fff, 1013px 1653px #fff,
|
||||
1911px 956px #fff, 587px 816px #fff, 83px 456px #fff, 930px 1478px #fff,
|
||||
1587px 1694px #fff, 614px 1200px #fff, 302px 1782px #fff, 1711px 1432px #fff,
|
||||
443px 904px #fff, 1666px 714px #fff, 1588px 1167px #fff, 273px 1075px #fff,
|
||||
1679px 461px #fff, 721px 664px #fff, 1202px 10px #fff, 166px 1126px #fff,
|
||||
331px 1628px #fff, 430px 1565px #fff, 1585px 509px #fff, 640px 38px #fff,
|
||||
822px 837px #fff, 1760px 1664px #fff, 1122px 1458px #fff, 398px 131px #fff,
|
||||
689px 285px #fff, 460px 652px #fff, 1627px 365px #fff, 348px 1648px #fff,
|
||||
819px 1946px #fff, 981px 1917px #fff, 323px 76px #fff, 979px 684px #fff,
|
||||
887px 536px #fff, 1348px 1596px #fff, 1055px 666px #fff, 1402px 1797px #fff,
|
||||
1300px 1055px #fff, 937px 238px #fff, 1474px 1815px #fff, 1144px 1710px #fff,
|
||||
1629px 1087px #fff, 911px 919px #fff, 771px 819px #fff, 403px 720px #fff,
|
||||
163px 736px #fff, 1062px 238px #fff, 1774px 818px #fff, 1874px 1178px #fff,
|
||||
1177px 699px #fff, 1244px 1244px #fff, 1371px 58px #fff, 564px 1515px #fff,
|
||||
1824px 487px #fff, 929px 702px #fff, 394px 1348px #fff, 1161px 641px #fff,
|
||||
219px 1841px #fff, 358px 941px #fff, 140px 1759px #fff, 1019px 1345px #fff,
|
||||
274px 436px #fff, 1433px 1605px #fff, 1798px 1426px #fff, 294px 1848px #fff,
|
||||
1681px 1877px #fff, 1344px 1824px #fff, 1439px 1632px #fff,
|
||||
161px 1012px #fff, 1308px 588px #fff, 1789px 582px #fff, 721px 1910px #fff,
|
||||
318px 218px #fff, 607px 319px #fff, 495px 535px #fff, 1552px 1575px #fff,
|
||||
1562px 67px #fff, 403px 926px #fff, 1096px 1800px #fff, 1814px 1709px #fff,
|
||||
1882px 1831px #fff, 533px 46px #fff, 823px 969px #fff, 530px 165px #fff,
|
||||
1030px 352px #fff, 1681px 313px #fff, 338px 115px #fff, 1607px 211px #fff,
|
||||
1718px 1184px #fff, 1589px 659px #fff, 278px 355px #fff, 464px 1464px #fff,
|
||||
1165px 277px #fff, 950px 694px #fff, 1746px 293px #fff, 793px 911px #fff,
|
||||
528px 773px #fff, 1883px 1694px #fff, 748px 182px #fff, 1924px 1531px #fff,
|
||||
100px 636px #fff, 1473px 1445px #fff, 1264px 1244px #fff, 850px 1377px #fff,
|
||||
987px 1976px #fff, 933px 1761px #fff, 922px 1270px #fff, 500px 396px #fff,
|
||||
1324px 8px #fff, 1967px 1814px #fff, 1072px 1401px #fff, 961px 37px #fff,
|
||||
156px 81px #fff, 1915px 502px #fff, 1076px 1846px #fff, 152px 1669px #fff,
|
||||
986px 1529px #fff, 1667px 1137px #fff;
|
||||
}
|
||||
|
||||
#object2:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: auto;
|
||||
width: 2px;
|
||||
height: 2px;
|
||||
background: transparent;
|
||||
|
||||
box-shadow: 1448px 320px #fff, 1775px 1663px #fff, 332px 1364px #fff,
|
||||
878px 340px #fff, 569px 1832px #fff, 1422px 1684px #fff, 1946px 1907px #fff,
|
||||
121px 979px #fff, 1044px 1069px #fff, 463px 381px #fff, 423px 112px #fff,
|
||||
523px 1179px #fff, 779px 654px #fff, 1398px 694px #fff, 1085px 1464px #fff,
|
||||
1599px 1869px #fff, 801px 1882px #fff, 779px 1231px #fff, 552px 932px #fff,
|
||||
1057px 1196px #fff, 282px 1280px #fff, 496px 1986px #fff, 1833px 1120px #fff,
|
||||
1802px 1293px #fff, 6px 1696px #fff, 412px 1902px #fff, 605px 438px #fff,
|
||||
24px 1212px #fff, 234px 1320px #fff, 544px 344px #fff, 1107px 170px #fff,
|
||||
1603px 196px #fff, 905px 648px #fff, 68px 1458px #fff, 649px 1969px #fff,
|
||||
744px 675px #fff, 1127px 478px #fff, 714px 1814px #fff, 1486px 526px #fff,
|
||||
270px 1636px #fff, 1931px 149px #fff, 1807px 378px #fff, 8px 390px #fff,
|
||||
1415px 699px #fff, 1473px 1211px #fff, 1590px 141px #fff, 270px 1705px #fff,
|
||||
69px 1423px #fff, 1108px 1053px #fff, 1946px 128px #fff, 371px 371px #fff,
|
||||
1490px 220px #fff, 357px 1885px #fff, 363px 363px #fff, 1896px 1256px #fff,
|
||||
1979px 1050px #fff, 947px 1342px #fff, 1754px 242px #fff, 514px 974px #fff,
|
||||
65px 1477px #fff, 1840px 547px #fff, 950px 695px #fff, 459px 1150px #fff,
|
||||
1124px 1502px #fff, 481px 940px #fff, 680px 839px #fff, 797px 1169px #fff,
|
||||
1977px 1491px #fff, 734px 1724px #fff, 210px 298px #fff, 816px 628px #fff,
|
||||
686px 770px #fff, 1721px 267px #fff, 1663px 511px #fff, 1481px 1141px #fff,
|
||||
582px 248px #fff, 1308px 953px #fff, 628px 657px #fff, 897px 1535px #fff,
|
||||
270px 931px #fff, 791px 467px #fff, 1336px 1732px #fff, 1013px 1653px #fff,
|
||||
1911px 956px #fff, 587px 816px #fff, 83px 456px #fff, 930px 1478px #fff,
|
||||
1587px 1694px #fff, 614px 1200px #fff, 302px 1782px #fff, 1711px 1432px #fff,
|
||||
443px 904px #fff, 1666px 714px #fff, 1588px 1167px #fff, 273px 1075px #fff,
|
||||
1679px 461px #fff, 721px 664px #fff, 1202px 10px #fff, 166px 1126px #fff,
|
||||
331px 1628px #fff, 430px 1565px #fff, 1585px 509px #fff, 640px 38px #fff,
|
||||
822px 837px #fff, 1760px 1664px #fff, 1122px 1458px #fff, 398px 131px #fff,
|
||||
689px 285px #fff, 460px 652px #fff, 1627px 365px #fff, 348px 1648px #fff,
|
||||
819px 1946px #fff, 981px 1917px #fff, 323px 76px #fff, 979px 684px #fff,
|
||||
887px 536px #fff, 1348px 1596px #fff, 1055px 666px #fff, 1402px 1797px #fff,
|
||||
1300px 1055px #fff, 937px 238px #fff, 1474px 1815px #fff, 1144px 1710px #fff,
|
||||
1629px 1087px #fff, 911px 919px #fff, 771px 819px #fff, 403px 720px #fff,
|
||||
163px 736px #fff, 1062px 238px #fff, 1774px 818px #fff, 1874px 1178px #fff,
|
||||
1177px 699px #fff, 1244px 1244px #fff, 1371px 58px #fff, 564px 1515px #fff,
|
||||
1824px 487px #fff, 929px 702px #fff, 394px 1348px #fff, 1161px 641px #fff,
|
||||
219px 1841px #fff, 358px 941px #fff, 140px 1759px #fff, 1019px 1345px #fff,
|
||||
274px 436px #fff, 1433px 1605px #fff, 1798px 1426px #fff, 294px 1848px #fff,
|
||||
1681px 1877px #fff, 1344px 1824px #fff, 1439px 1632px #fff,
|
||||
161px 1012px #fff, 1308px 588px #fff, 1789px 582px #fff, 721px 1910px #fff,
|
||||
318px 218px #fff, 607px 319px #fff, 495px 535px #fff, 1552px 1575px #fff,
|
||||
1562px 67px #fff, 403px 926px #fff, 1096px 1800px #fff, 1814px 1709px #fff,
|
||||
1882px 1831px #fff, 533px 46px #fff, 823px 969px #fff, 530px 165px #fff,
|
||||
1030px 352px #fff, 1681px 313px #fff, 338px 115px #fff, 1607px 211px #fff,
|
||||
1718px 1184px #fff, 1589px 659px #fff, 278px 355px #fff, 464px 1464px #fff,
|
||||
1165px 277px #fff, 950px 694px #fff, 1746px 293px #fff, 793px 911px #fff,
|
||||
528px 773px #fff, 1883px 1694px #fff, 748px 182px #fff, 1924px 1531px #fff,
|
||||
100px 636px #fff, 1473px 1445px #fff, 1264px 1244px #fff, 850px 1377px #fff,
|
||||
987px 1976px #fff, 933px 1761px #fff, 922px 1270px #fff, 500px 396px #fff,
|
||||
1324px 8px #fff, 1967px 1814px #fff, 1072px 1401px #fff, 961px 37px #fff,
|
||||
156px 81px #fff, 1915px 502px #fff, 1076px 1846px #fff, 152px 1669px #fff,
|
||||
986px 1529px #fff, 1667px 1137px #fff;
|
||||
}
|
||||
|
||||
#object3 {
|
||||
width: 3px;
|
||||
height: 3px;
|
||||
background: transparent;
|
||||
animation: animStar 240s linear infinite;
|
||||
|
||||
box-shadow: 387px 1878px #fff, 760px 1564px #fff, 1487px 999px #fff,
|
||||
948px 1828px #fff, 1977px 1001px #fff, 1284px 1963px #fff, 656px 284px #fff,
|
||||
1268px 1635px #fff, 1820px 598px #fff, 642px 1900px #fff, 296px 57px #fff,
|
||||
921px 1620px #fff, 476px 1858px #fff, 658px 613px #fff, 1171px 1363px #fff,
|
||||
1419px 283px #fff, 1037px 731px #fff, 503px 663px #fff, 1562px 463px #fff,
|
||||
383px 1197px #fff, 1171px 1233px #fff, 876px 1768px #fff, 856px 1615px #fff,
|
||||
1375px 1924px #fff, 1725px 918px #fff, 952px 119px #fff, 768px 1212px #fff,
|
||||
992px 1462px #fff, 1929px 717px #fff, 1947px 755px #fff, 1818px 1123px #fff,
|
||||
1896px 1672px #fff, 460px 198px #fff, 256px 271px #fff, 752px 544px #fff,
|
||||
1222px 1859px #fff, 1851px 443px #fff, 313px 1858px #fff, 709px 446px #fff,
|
||||
1546px 697px #fff, 674px 1155px #fff, 1112px 130px #fff, 355px 1790px #fff,
|
||||
1496px 974px #fff, 1696px 480px #fff, 1316px 1265px #fff, 1645px 1063px #fff,
|
||||
1182px 237px #fff, 427px 1582px #fff, 859px 253px #fff, 458px 939px #fff,
|
||||
1517px 1644px #fff, 1943px 60px #fff, 212px 1650px #fff, 966px 1786px #fff,
|
||||
473px 712px #fff, 130px 76px #fff, 1417px 1186px #fff, 909px 1580px #fff,
|
||||
1913px 762px #fff, 204px 1143px #fff, 1998px 1057px #fff, 1468px 1301px #fff,
|
||||
144px 1676px #fff, 21px 1601px #fff, 382px 1362px #fff, 912px 753px #fff,
|
||||
1488px 1405px #fff, 802px 156px #fff, 174px 550px #fff, 338px 1366px #fff,
|
||||
1197px 774px #fff, 602px 486px #fff, 682px 1877px #fff, 348px 1503px #fff,
|
||||
407px 1139px #fff, 950px 1400px #fff, 922px 1139px #fff, 1697px 293px #fff,
|
||||
1238px 1281px #fff, 1038px 1197px #fff, 376px 1889px #fff,
|
||||
1255px 1680px #fff, 1008px 1316px #fff, 1538px 1447px #fff,
|
||||
1186px 874px #fff, 1967px 640px #fff, 1341px 19px #fff, 29px 1732px #fff,
|
||||
16px 1650px #fff, 1021px 1075px #fff, 723px 424px #fff, 1175px 41px #fff,
|
||||
494px 1957px #fff, 1296px 431px #fff, 175px 1507px #fff, 831px 121px #fff,
|
||||
498px 1947px #fff, 617px 880px #fff, 240px 403px #fff;
|
||||
}
|
||||
|
||||
#object3:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: auto;
|
||||
width: 3px;
|
||||
height: 3px;
|
||||
background: transparent;
|
||||
|
||||
box-shadow: 387px 1878px #fff, 760px 1564px #fff, 1487px 999px #fff,
|
||||
948px 1828px #fff, 1977px 1001px #fff, 1284px 1963px #fff, 656px 284px #fff,
|
||||
1268px 1635px #fff, 1820px 598px #fff, 642px 1900px #fff, 296px 57px #fff,
|
||||
921px 1620px #fff, 476px 1858px #fff, 658px 613px #fff, 1171px 1363px #fff,
|
||||
1419px 283px #fff, 1037px 731px #fff, 503px 663px #fff, 1562px 463px #fff,
|
||||
383px 1197px #fff, 1171px 1233px #fff, 876px 1768px #fff, 856px 1615px #fff,
|
||||
1375px 1924px #fff, 1725px 918px #fff, 952px 119px #fff, 768px 1212px #fff,
|
||||
992px 1462px #fff, 1929px 717px #fff, 1947px 755px #fff, 1818px 1123px #fff,
|
||||
1896px 1672px #fff, 460px 198px #fff, 256px 271px #fff, 752px 544px #fff,
|
||||
1222px 1859px #fff, 1851px 443px #fff, 313px 1858px #fff, 709px 446px #fff,
|
||||
1546px 697px #fff, 674px 1155px #fff, 1112px 130px #fff, 355px 1790px #fff,
|
||||
1496px 974px #fff, 1696px 480px #fff, 1316px 1265px #fff, 1645px 1063px #fff,
|
||||
1182px 237px #fff, 427px 1582px #fff, 859px 253px #fff, 458px 939px #fff,
|
||||
1517px 1644px #fff, 1943px 60px #fff, 212px 1650px #fff, 966px 1786px #fff,
|
||||
473px 712px #fff, 130px 76px #fff, 1417px 1186px #fff, 909px 1580px #fff,
|
||||
1913px 762px #fff, 204px 1143px #fff, 1998px 1057px #fff, 1468px 1301px #fff,
|
||||
144px 1676px #fff, 21px 1601px #fff, 382px 1362px #fff, 912px 753px #fff,
|
||||
1488px 1405px #fff, 802px 156px #fff, 174px 550px #fff, 338px 1366px #fff,
|
||||
1197px 774px #fff, 602px 486px #fff, 682px 1877px #fff, 348px 1503px #fff,
|
||||
407px 1139px #fff, 950px 1400px #fff, 922px 1139px #fff, 1697px 293px #fff,
|
||||
1238px 1281px #fff, 1038px 1197px #fff, 376px 1889px #fff,
|
||||
1255px 1680px #fff, 1008px 1316px #fff, 1538px 1447px #fff,
|
||||
1186px 874px #fff, 1967px 640px #fff, 1341px 19px #fff, 29px 1732px #fff,
|
||||
16px 1650px #fff, 1021px 1075px #fff, 723px 424px #fff, 1175px 41px #fff,
|
||||
494px 1957px #fff, 1296px 431px #fff, 175px 1507px #fff, 831px 121px #fff,
|
||||
498px 1947px #fff, 617px 880px #fff, 240px 403px #fff;
|
||||
}
|
107
themes/flare/animations.css
vendored
@ -1,107 +0,0 @@
|
||||
/* ************************************************************* */
|
||||
/*
|
||||
/* Use this file to add custom CSS animations.
|
||||
/* Delete this file if you wish to use the default animations.
|
||||
/* If you do not want to have animations in your theme,
|
||||
/* remove or comment them and include this file in your theme.
|
||||
/*
|
||||
/* ************************************************************* */
|
||||
|
||||
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
- Entrance animations
|
||||
- Button hover animations
|
||||
- Icon hover animations
|
||||
- Footer hover animations
|
||||
|
||||
*/
|
||||
|
||||
|
||||
|
||||
/* Entrance animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.button-entrance {
|
||||
animation-name: popUp;
|
||||
animation-duration: 1s;
|
||||
animation-fill-mode: both;
|
||||
/* Used to start button entrance animation one after another */
|
||||
animation-delay: calc(var(--delay)/10);
|
||||
}
|
||||
|
||||
@keyframes popUp {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: scale3d(0.3, 0.3, 0.3);
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.fadein {
|
||||
animation-name: fadein;
|
||||
animation-duration: 3s;
|
||||
animation-fill-mode: both;
|
||||
}
|
||||
|
||||
@keyframes fadein {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Button hover animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* (Also apply to icon) */
|
||||
|
||||
.button-hover, .credit-hover{
|
||||
display:inline-block;
|
||||
-webkit-transform:perspective(1px) translateZ(0);
|
||||
transform:perspective(1px) translateZ(0);
|
||||
box-shadow:0 0 1px rgba(0,0,0,0);
|
||||
-webkit-transition-duration:.1s;
|
||||
transition-duration:.1s;
|
||||
-webkit-transition-property:transform;
|
||||
transition-property:transform
|
||||
}
|
||||
.button-hover:active,
|
||||
.button-hover:focus,
|
||||
.button-hover:hover{
|
||||
-webkit-transform:scale(1.009);
|
||||
transform:scale(1.009)
|
||||
}
|
||||
.credit-hover:active,
|
||||
.credit-hover:focus,
|
||||
.credit-hover:hover{
|
||||
-webkit-transform:scale(1.04);
|
||||
transform:scale(1.04)
|
||||
}
|
||||
|
||||
|
||||
/* Footer hover animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.footer-hover{
|
||||
display:inline-block;
|
||||
-webkit-transform:perspective(1px) translateZ(0);
|
||||
transform:perspective(1px) translateZ(0);
|
||||
box-shadow:0 0 1px rgba(0,0,0,0);
|
||||
-webkit-transition-duration:.3s;
|
||||
transition-duration:.3s;
|
||||
-webkit-transition-property:transform;
|
||||
transition-property:transform;
|
||||
-webkit-transition-timing-function:ease-out;
|
||||
transition-timing-function:ease-out
|
||||
}
|
||||
.footer-hover:active,.footer-hover:focus,.footer-hover:hover{
|
||||
-webkit-transform:translateY(-8px);
|
||||
transform:translateY(-8px)
|
||||
}
|
91
themes/flare/brands.css
vendored
@ -1,91 +0,0 @@
|
||||
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
|
||||
- Rounded user avatars
|
||||
- Buttons
|
||||
- Brand Styles
|
||||
|
||||
*/
|
||||
|
||||
|
||||
/* Rounded avatars
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
/* Disable this if you don't want rounded avatars for users */
|
||||
.rounded-avatar {
|
||||
border-radius: 50%;
|
||||
-webkit-box-shadow: 0px 0px 0px 3px #ffffff;
|
||||
box-shadow: 0px 0px 0px 3px #ffffff;
|
||||
background-color: #ffffff !important;
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
}
|
||||
|
||||
.social-icon {
|
||||
font-size: 32px;
|
||||
padding: 10px;
|
||||
}
|
||||
.social-icon-div {
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
.social-icon{color:#fff;}
|
||||
|
||||
/* Buttons
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.button {
|
||||
position: relative;
|
||||
background-color: transparent;
|
||||
color: var(--accentColor);
|
||||
border: solid var(--accentColor) 2px;
|
||||
border-radius: 5px;
|
||||
font-size: 1rem;
|
||||
text-align: center;
|
||||
display: block;
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
margin-bottom: 20px!important;
|
||||
padding: 20px;
|
||||
text-decoration: none;
|
||||
/* transition: all .25s cubic-bezier(.08, .59, .29, .99); */
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
|
||||
@media (hover: hover) {
|
||||
.button:hover {
|
||||
background-color: var(--accentColor);
|
||||
color: var(--bgColor);
|
||||
}
|
||||
}
|
||||
|
||||
.button:active {
|
||||
background-color: var(--accentColor);
|
||||
color: var(--bgColor);
|
||||
}
|
||||
|
||||
|
||||
/* Brand Icons
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.icon {
|
||||
right: 10px;
|
||||
bottom: 2px;
|
||||
position: relative;
|
||||
vertical-align: middle;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.button:hover > .icon {
|
||||
-webkit-box-shadow: 0px 0px 0px 4px var(--bgColor);
|
||||
box-shadow: 0px 0px 0px 4px var(--bgColor);
|
||||
background-color: var(--bgColor) !important;
|
||||
border-radius:50%;
|
||||
-moz-border-radius:50%;
|
||||
-webkit-border-radius:50%;
|
||||
}
|
||||
|
||||
svg {
|
||||
color: white !important;
|
||||
}
|
@ -1,66 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Theme Config
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The theme config allows you to configure how LittleLink Custom should treat your theme.
|
||||
| All settings can either be set to "true" or "false", unless stated otherwise.
|
||||
|
|
||||
| The settings below change how your buttons behave.
|
||||
|
|
||||
*/
|
||||
|
||||
// Some themes may not be compatible with custom buttons created by the Button Editor.
|
||||
// If 'false' the default button CSS is used.
|
||||
'allow_custom_buttons' => 'false',
|
||||
|
||||
'open_links_in_same_tab' => 'false',
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Code
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Custom code allows you to inject customized Blade, PHP, HTML, JavaScript and CSS code.
|
||||
|
|
||||
| In your "extra" folder, you will find 3 separate files for injecting your code to
|
||||
| different places on the final page (head, body, at the end of the body).
|
||||
|
|
||||
| You may also attach custom assets like CSS, JS, or images.
|
||||
| You can find instructions for this in the files in your extra folder.
|
||||
|
|
||||
*/
|
||||
|
||||
'enable_custom_code' => 'false',
|
||||
|
||||
// Disable individual files (only applies if above is 'true').
|
||||
'enable_custom_head' => 'true',
|
||||
'enable_custom_body' => 'true',
|
||||
'enable_custom_body_end' => 'true',
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Icons
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| You may add custom icons to your theme.
|
||||
| These icons are stored under: .../extra/custom-icons.
|
||||
|
|
||||
| You can adjust the file extension types to use other files than just SVGs.
|
||||
|
|
||||
*/
|
||||
|
||||
'use_custom_icons' => 'false',
|
||||
|
||||
// Is not set correct this will cause errors.
|
||||
'custom_icon_extension' => '.svg', // (.png, .jpg ...)
|
||||
|
||||
|
||||
|
||||
];
|
Before Width: | Height: | Size: 734 KiB |
@ -1,20 +0,0 @@
|
||||
# A LittleLink Custom Theme
|
||||
Find more themes: https://github.com/JulianPrieber/llc-themes
|
||||
|
||||
* Theme Name: Flare
|
||||
* Theme Version: 1.4
|
||||
* Theme Date: 2022-07-07
|
||||
* Theme Author: JulianPrieber
|
||||
* Theme Author URI: https://github.com/JulianPrieber
|
||||
* Theme License: GPLv3
|
||||
* Source code: https://github.com/JulianPrieber/flare
|
||||
|
||||
|
||||
### Used assets:
|
||||
* Built using:
|
||||
* https://github.com/dhg/Skeleton
|
||||
* License: MIT
|
||||
|
||||
*
|
||||
* https://github.com/JulianPrieber2/galaxy
|
||||
* License: GPLv3
|
110
themes/flare/share.button.css
vendored
@ -1,110 +0,0 @@
|
||||
.share-icon {
|
||||
padding: 0px 8px 3.5px 0px;
|
||||
vertical-align: middle;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.sharediv {
|
||||
position:relative;
|
||||
top: 30px;
|
||||
right: 30px;
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
|
||||
.toastdiv {
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
-webkit-align-items: center;
|
||||
align-items: center;
|
||||
-webkit-justify-content: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.toastbox {
|
||||
width: 280px;
|
||||
padding: 10px;
|
||||
background-color: rgba(0, 0, 0, 0.7);
|
||||
color: white;
|
||||
border-radius: 4px;
|
||||
position: fixed;
|
||||
top: 105%;
|
||||
-webkit-transition: transform 0.3s linear;
|
||||
transition: transform 0.3s linear;
|
||||
z-index: 2;
|
||||
text-align: center;
|
||||
}
|
||||
.toastbox.toast-tox--active {
|
||||
-webkit-transform: translateY(-150px);
|
||||
transform: translateY(-150px);
|
||||
}
|
||||
|
||||
.sharebutton,
|
||||
sharebutton {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
height: 48px;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
font-size: 18px;
|
||||
width: 48px;
|
||||
font-weight: 700;
|
||||
line-height: 48px;
|
||||
letter-spacing: 0.1px;
|
||||
white-space: wrap;
|
||||
border: solid var(--accentColor) 2px;
|
||||
border-radius: 10px;
|
||||
cursor: pointer;
|
||||
color: #ffffff;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 600px) {
|
||||
.sharebutton,
|
||||
sharebutton {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
height: 48px;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
font-size: 18px;
|
||||
width: 150px;
|
||||
font-weight: 700;
|
||||
line-height: 48px;
|
||||
letter-spacing: 0.1px;
|
||||
white-space: wrap;
|
||||
border: solid var(--accentColor) 2px;
|
||||
border-radius: 10px;
|
||||
cursor: pointer;
|
||||
color: #ffffff;
|
||||
background-color: transparent;
|
||||
}
|
||||
.sharebutton-img {
|
||||
position: relative;
|
||||
left: 3px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
}
|
||||
sharebutton:hover,
|
||||
.sharebutton:hover {
|
||||
color: #000000;
|
||||
background-color: #FFF;
|
||||
}
|
||||
.sharebutton:hover .share-icon {
|
||||
-webkit-filter: invert(100%);
|
||||
-moz-filter: invert(100%);
|
||||
filter: invert(100%);
|
||||
}
|
||||
|
||||
@media screen and (max-width: 600px) {
|
||||
.sharebutton-mb {
|
||||
display: none;
|
||||
}
|
||||
.sharebutton-img {
|
||||
position: relative;
|
||||
left: 3px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
}
|
245
themes/flare/skeleton-auto.css
vendored
@ -1,245 +0,0 @@
|
||||
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
|
||||
- Grid
|
||||
- Base Styles
|
||||
- Background
|
||||
- Typography
|
||||
- Links
|
||||
- Code
|
||||
- Spacing
|
||||
- Utilities
|
||||
- Misc
|
||||
- Credit footer
|
||||
|
||||
*/
|
||||
|
||||
|
||||
@import url('https://fonts.bunny.net/css?family=Roboto:400,700&display=swap');
|
||||
|
||||
|
||||
/* Grid
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.container {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
text-align: center;
|
||||
margin: 0 auto;
|
||||
box-sizing: border-box; }
|
||||
.column {
|
||||
position: center;
|
||||
width: 100%;
|
||||
float: center;
|
||||
box-sizing: border-box; }
|
||||
|
||||
/* For devices larger than 400px */
|
||||
@media (min-width: 400px) {
|
||||
.container {
|
||||
width: 85%;
|
||||
padding: 0; }
|
||||
}
|
||||
|
||||
/* For devices larger than 550px */
|
||||
@media (min-width: 550px) {
|
||||
.container {
|
||||
width: 80%; }
|
||||
.column,
|
||||
.columns {
|
||||
margin-left: 0; }
|
||||
.column:first-child,
|
||||
.columns:first-child {
|
||||
margin-left: 0; }
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* Base Styles
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* NOTE
|
||||
html is set to 62.5% so that all the REM measurements throughout Skeleton
|
||||
are based on 10px sizing. So basically 1.5rem = 15px :) */
|
||||
|
||||
html {
|
||||
font-size: 100%; }
|
||||
|
||||
:root {
|
||||
--bgColor: #f5af19;
|
||||
--bgColor2: #f12711;
|
||||
--accentColor: #FFF;
|
||||
--font: 'Roboto', sans-serif;
|
||||
--delay: .3s; }
|
||||
|
||||
/* Background
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
min-height: 100vh;
|
||||
font-family: var(--font);
|
||||
background: linear-gradient(45deg, var(--bgColor) 0%, var(--bgColor2) 100%);
|
||||
opacity: 0;
|
||||
animation: 1s ease-out var(--delay) 1 transitionAnimation; /* duration/timing-function/delay/iterations/name */
|
||||
animation-fill-mode: forwards;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
position: relative;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
|
||||
/* Animation */
|
||||
@keyframes transitionAnimation {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(-10px);
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes animate {
|
||||
0% {
|
||||
background-position: -500%;
|
||||
}
|
||||
100% {
|
||||
background-position: 500%;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes animStar {
|
||||
from {
|
||||
transform: translateY(0px);
|
||||
}
|
||||
to {
|
||||
transform: translateY(-2000px);
|
||||
}
|
||||
}
|
||||
|
||||
/* Typography
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
h1 {
|
||||
margin-top: 16px;
|
||||
margin-bottom: 16px;
|
||||
font-weight: 400; }
|
||||
h1 { font-size:24px; line-height: 64px; letter-spacing: 0;}
|
||||
|
||||
|
||||
/* Larger than phablet */
|
||||
@media (min-width: 350px) {
|
||||
h1 { font-size: 48px; line-height: 96px;}
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 16px; }
|
||||
|
||||
|
||||
/* Links
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
a {
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
color: #f5af19; }
|
||||
|
||||
.spacing {
|
||||
padding: 0 10px;
|
||||
padding-top: 50px;
|
||||
}
|
||||
|
||||
/* Code
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
code {
|
||||
padding: .2rem .5rem;
|
||||
margin: 0 .2rem;
|
||||
font-size: 90%;
|
||||
white-space: nowrap;
|
||||
background: #F1F1F1;
|
||||
border: 1px solid #E1E1E1;
|
||||
border-radius: 4px; }
|
||||
pre > code {
|
||||
display: block;
|
||||
padding: 1rem 1.5rem;
|
||||
white-space: pre; }
|
||||
|
||||
/* Spacing
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
button,
|
||||
.button {
|
||||
margin-bottom: 1rem;
|
||||
display: block !important; }
|
||||
input,
|
||||
textarea,
|
||||
select,
|
||||
fieldset {
|
||||
margin-bottom: 1.5rem; }
|
||||
pre,
|
||||
blockquote,
|
||||
dl,
|
||||
figure,
|
||||
p,
|
||||
ol {
|
||||
margin-bottom: 2.5rem; }
|
||||
|
||||
|
||||
/* Utilities
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.u-full-width {
|
||||
width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.u-max-full-width {
|
||||
max-width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.u-pull-right {
|
||||
float: right; }
|
||||
.u-pull-left {
|
||||
float: left; }
|
||||
|
||||
|
||||
/* Misc
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
hr {
|
||||
margin-top: 3rem;
|
||||
margin-bottom: 3.5rem;
|
||||
border-width: 0;
|
||||
border-top: 1px solid #E1E1E1; }
|
||||
|
||||
|
||||
/* ===== Hidden Scrollbar ===== */
|
||||
* {
|
||||
-ms-overflow-style: none; /* Internet Explorer 10+ */
|
||||
scrollbar-width: none; /* Firefox */ }
|
||||
*::-webkit-scrollbar {
|
||||
display: none; /* Safari and Chrome */ }
|
||||
|
||||
|
||||
/* Credit footer
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* Styling for credit footer text */
|
||||
.credit-txt {
|
||||
font-weight: 700;
|
||||
font-size: 15px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.credit-icon {
|
||||
display: none;
|
||||
right: 5px;
|
||||
}
|
||||
.credit-footer {
|
||||
position: relative;
|
||||
right: 15px;
|
||||
}
|
||||
|
||||
/* Switches text color for credit footer for dark/light mode */
|
||||
|
||||
.credit-txt-clr{
|
||||
color: #FFF !important;
|
||||
}
|
||||
|
||||
|
@ -1,21 +0,0 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2022 Julian Prieber
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
181
themes/isaac/animations.css
vendored
@ -1,181 +0,0 @@
|
||||
/* ************************************************************* */
|
||||
/*
|
||||
/* Use this file to add custom CSS animations.
|
||||
/* Delete this file if you wish to use the default animations.
|
||||
/* If you do not want to have animations in your theme,
|
||||
/* remove or comment them and include this file in your theme.
|
||||
/*
|
||||
/* ************************************************************* */
|
||||
|
||||
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
- Entrance animations
|
||||
- Button hover animations
|
||||
- Icon hover animations
|
||||
- Footer hover animations
|
||||
|
||||
*/
|
||||
|
||||
|
||||
|
||||
/* Entrance animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.button-entrance {
|
||||
animation-name: popUp;
|
||||
animation-duration: 1s;
|
||||
animation-fill-mode: both;
|
||||
/* Used to start button entrance animation one after another */
|
||||
animation-delay: calc(var(--delay)/10);
|
||||
}
|
||||
|
||||
@keyframes popUp {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: scale3d(0.3, 0.3, 0.3);
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.fadein {
|
||||
animation-name: fadein;
|
||||
animation-duration: 3s;
|
||||
animation-fill-mode: both;
|
||||
}
|
||||
|
||||
@keyframes fadein {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Button hover animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* (Also apply to icon) */
|
||||
|
||||
.button-hover, .credit-hover{
|
||||
display:inline-block;
|
||||
-webkit-transform:perspective(1px) translateZ(0);
|
||||
transform:perspective(1px) translateZ(0);
|
||||
box-shadow:0 0 1px rgba(0,0,0,0);
|
||||
-webkit-transition-duration:.3s;
|
||||
transition-duration:.3s;
|
||||
-webkit-transition-property:transform;
|
||||
transition-property:transform
|
||||
}
|
||||
.button-hover:active,.credit-hover:active,
|
||||
.button-hover:focus,.credit-hover:focus,
|
||||
.button-hover:hover,.credit-hover:hover{
|
||||
-webkit-transform:scale(1.1);
|
||||
transform:scale(1.1)
|
||||
}
|
||||
|
||||
|
||||
/* Icon hover animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.icon-hover{
|
||||
display:inline-block;
|
||||
-webkit-transform:perspective(1px) translateZ(0);
|
||||
transform:perspective(1px) translateZ(0);
|
||||
box-shadow:0 0 1px rgba(0,0,0,0);
|
||||
-webkit-transition-duration:.3s;
|
||||
transition-duration:.3s
|
||||
}
|
||||
.icon-hover .hvr-icon{
|
||||
-webkit-transform:translateZ(0);
|
||||
transform:translateZ(0)
|
||||
}
|
||||
.icon-hover:active .hvr-icon,.icon-hover:focus .hvr-icon,.icon-hover:hover .hvr-icon{
|
||||
-webkit-animation-name:icon-hover;
|
||||
animation-name:icon-hover;
|
||||
-webkit-animation-duration:1s;
|
||||
animation-duration:1s;
|
||||
-webkit-animation-timing-function:ease-in-out;
|
||||
animation-timing-function:ease-in-out;
|
||||
-webkit-animation-iteration-count:1;
|
||||
animation-iteration-count:1
|
||||
}
|
||||
|
||||
@-webkit-keyframes icon-hover{
|
||||
16.65%{
|
||||
-webkit-transform:translateY(6px);
|
||||
transform:translateY(6px)
|
||||
}
|
||||
33.3%{
|
||||
-webkit-transform:translateY(-5px);
|
||||
transform:translateY(-5px)
|
||||
}
|
||||
49.95%{
|
||||
-webkit-transform:translateY(4px);
|
||||
transform:translateY(4px)
|
||||
}
|
||||
66.6%{
|
||||
-webkit-transform:translateY(-2px);
|
||||
transform:translateY(-2px)
|
||||
}
|
||||
83.25%{
|
||||
-webkit-transform:translateY(1px);
|
||||
transform:translateY(1px)
|
||||
}
|
||||
100%{
|
||||
-webkit-transform:translateY(0);
|
||||
transform:translateY(0)
|
||||
}
|
||||
}
|
||||
@keyframes icon-hover{
|
||||
16.65%{
|
||||
-webkit-transform:translateY(6px);
|
||||
transform:translateY(6px)
|
||||
}
|
||||
33.3%{
|
||||
-webkit-transform:translateY(-5px);
|
||||
transform:translateY(-5px)
|
||||
}
|
||||
49.95%{
|
||||
-webkit-transform:translateY(4px);
|
||||
transform:translateY(4px)
|
||||
}
|
||||
66.6%{
|
||||
-webkit-transform:translateY(-2px);
|
||||
transform:translateY(-2px)
|
||||
}
|
||||
83.25%{
|
||||
-webkit-transform:translateY(1px);
|
||||
transform:translateY(1px)
|
||||
}
|
||||
100%{
|
||||
-webkit-transform:translateY(0);
|
||||
transform:translateY(0)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Footer hover animations
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.footer-hover{
|
||||
display:inline-block;
|
||||
-webkit-transform:perspective(1px) translateZ(0);
|
||||
transform:perspective(1px) translateZ(0);
|
||||
box-shadow:0 0 1px rgba(0,0,0,0);
|
||||
-webkit-transition-duration:.3s;
|
||||
transition-duration:.3s;
|
||||
-webkit-transition-property:transform;
|
||||
transition-property:transform;
|
||||
-webkit-transition-timing-function:ease-out;
|
||||
transition-timing-function:ease-out
|
||||
}
|
||||
.footer-hover:active,.footer-hover:focus,.footer-hover:hover{
|
||||
-webkit-transform:translateY(-8px);
|
||||
transform:translateY(-8px)
|
||||
}
|
53
themes/isaac/brands.css
vendored
@ -1,53 +0,0 @@
|
||||
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
|
||||
- Rounded user avatars
|
||||
- Buttons
|
||||
- Brand Styles
|
||||
|
||||
*/
|
||||
|
||||
|
||||
/* Rounded avatars
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
/* Disable this if you don't want rounded avatars for users */
|
||||
.rounded-avatar {
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.social-icon {
|
||||
font-size: 32px;
|
||||
padding: 10px;
|
||||
}
|
||||
.social-icon-div {
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
.social-icon{color:#fff;}
|
||||
|
||||
/* Buttons
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
button:hover,
|
||||
.button:focus {
|
||||
color: #333;
|
||||
border-color: #888;
|
||||
outline: 0; }
|
||||
.button.button-primary {
|
||||
color: #FFF;}
|
||||
.button.button-primary:hover,
|
||||
.button.button-primary:focus {
|
||||
color: #FFF;}
|
||||
|
||||
|
||||
/* Brand Icons
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
|
||||
.icon {
|
||||
padding: 0px 8px 3.5px 0px;
|
||||
vertical-align: middle;
|
||||
width: 30px !important;
|
||||
height: auto;
|
||||
filter: saturate(.8);
|
||||
}
|
@ -1,89 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| User settings
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Feel free to change this at any time
|
||||
|
|
||||
*/
|
||||
|
||||
// Disables background flicker.
|
||||
// Either true or false.
|
||||
'disable_flicker' => 'false',
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Theme Config
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The theme config allows you to configure how LittleLink Custom should treat your theme.
|
||||
| All settings can either be set to "true" or "false", unless stated otherwise.
|
||||
|
|
||||
| The settings below change how your buttons behave.
|
||||
|
|
||||
*/
|
||||
|
||||
// Some themes may not be compatible with custom buttons created by the Button Editor.
|
||||
// If 'false' the default button CSS is used.
|
||||
'allow_custom_buttons' => 'false',
|
||||
|
||||
'open_links_in_same_tab' => 'false',
|
||||
|
||||
// You can use this option to use the default button styling. For example reskins of the Default Theme.
|
||||
// This can be useful if you do not want to update your brand styles every time a new button is added.
|
||||
// If true the file "brands.css" wont be used anymore and can be removed.
|
||||
'use_default_buttons' => 'false',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Code
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Custom code allows you to inject customized Blade, PHP, HTML, JavaScript and CSS code.
|
||||
|
|
||||
| In your "extra" folder, you will find 3 separate files for injecting your code to
|
||||
| different places on the final page (head, body, at the end of the body).
|
||||
|
|
||||
| You may also attach custom assets like CSS, JS, or images.
|
||||
| You can find instructions for this in the files in your extra folder.
|
||||
|
|
||||
*/
|
||||
|
||||
'enable_custom_code' => 'true',
|
||||
|
||||
// Disable individual files (only applies if above is 'true').
|
||||
'enable_custom_head' => 'true',
|
||||
'enable_custom_body' => 'true',
|
||||
'enable_custom_body_end' => 'true',
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Icons
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| You may add custom icons to your theme.
|
||||
| These icons are stored under: .../extra/custom-icons.
|
||||
|
|
||||
| You can adjust the file extension types to use other files than just SVGs.
|
||||
|
|
||||
*/
|
||||
|
||||
'use_custom_icons' => 'false',
|
||||
|
||||
// Is not set correct this will cause errors.
|
||||
'custom_icon_extension' => '.svg', // (.png, .jpg ...)
|
||||
|
||||
|
||||
|
||||
];
|
Before Width: | Height: | Size: 69 KiB |
@ -1,29 +0,0 @@
|
||||
<div class="wrapper">
|
||||
<input type="checkbox" id="light">
|
||||
<label id="light-toggler" for="light"></label>
|
||||
|
||||
|
||||
<div class="satan">
|
||||
<div class="satan-eye"></div>
|
||||
<div class="satan-eye"></div>
|
||||
</div>
|
||||
|
||||
<div class=isaac>
|
||||
|
||||
<div class="head">
|
||||
<div class="eye eye-left"><div class="eye-shine"></div><div class="eye-shine-sm"></div></div>
|
||||
<div class="mouth"></div>
|
||||
<div class="eye eye-right"><div class="eye-shine"></div><div class="eye-shine-sm"></div></div>
|
||||
</div>
|
||||
|
||||
<div class="body">
|
||||
<div class="foot foot-left"></div>
|
||||
<div class="arm arm-left"></div>
|
||||
<div class="torso">
|
||||
|
||||
|
||||
</div>
|
||||
<div class="arm arm-right"></div>
|
||||
<div class="foot foot-right"></div>
|
||||
</div>
|
||||
</div>
|
@ -1,688 +0,0 @@
|
||||
<style>
|
||||
|
||||
@font-face{font-family:'upheavtt';src:url({{themeAsset('upheavtt.ttf')}})}
|
||||
@font-face{font-family:'boi';src:url({{themeAsset('boi.otf')}})}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
body{
|
||||
font-family: "boi", sans-serif;
|
||||
}
|
||||
|
||||
h1{
|
||||
font-family: "upheavtt", sans-serif;
|
||||
}
|
||||
|
||||
@media (max-width: 400px) {
|
||||
.button,
|
||||
button {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
font-size: 14px !important;
|
||||
color: #000 !important;
|
||||
height: 48px;
|
||||
width: 100%;
|
||||
font-weight: 100;
|
||||
line-height: 48px;
|
||||
letter-spacing: 0.1px;
|
||||
white-space: wrap;
|
||||
cursor: pointer;
|
||||
font-family: "boi", sans-serif !important;
|
||||
text-transform: uppercase;
|
||||
background: url({{themeAsset('button2.png')}}) 0 0/100% 100% no-repeat !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 550px) {
|
||||
.button,
|
||||
button {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
font-size: 14px !important;
|
||||
color: #000 !important;
|
||||
height: 48px;
|
||||
width: 80%;
|
||||
font-weight: 100;
|
||||
line-height: 48px;
|
||||
letter-spacing: 0.1px;
|
||||
white-space: wrap;
|
||||
cursor: pointer;
|
||||
font-family: "boi", sans-serif !important;
|
||||
text-transform: uppercase;
|
||||
background: url({{themeAsset('button2.png')}}) 0 0/100% 100% no-repeat !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 551px) {
|
||||
.button,
|
||||
button {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
font-size: 14px !important;
|
||||
color: #000 !important;
|
||||
height: 60px;
|
||||
width: 400px;
|
||||
font-weight: 100;
|
||||
line-height: 60px;
|
||||
letter-spacing: 0.1px;
|
||||
white-space: wrap;
|
||||
cursor: pointer;
|
||||
font-family: "boi", sans-serif !important;
|
||||
text-transform: uppercase;
|
||||
background: url({{themeAsset('button2.png')}}) 0 0/100% 100% no-repeat !important;
|
||||
}
|
||||
}
|
||||
|
||||
.sharebutton,
|
||||
sharebutton {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
height: 48px;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
font-size: 14px;
|
||||
width: 48px;
|
||||
font-weight: 100;
|
||||
line-height: 48px;
|
||||
letter-spacing: 0.1px;
|
||||
white-space: wrap;
|
||||
border-radius: 8px;
|
||||
cursor: pointer;
|
||||
color: #000 !important;
|
||||
background: url({{themeAsset('button2.png')}}) 0 0/100% 100% no-repeat !important;
|
||||
}
|
||||
@media screen and (min-width: 600px) {
|
||||
.sharebutton,
|
||||
sharebutton {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
height: 48px;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
font-size: 14px;
|
||||
width: 150px;
|
||||
font-weight: 100;
|
||||
line-height: 48px;
|
||||
letter-spacing: 0.1px;
|
||||
white-space: wrap;
|
||||
border-radius: 8px;
|
||||
cursor: pointer;
|
||||
color: #000 !important;
|
||||
background: url({{themeAsset('button2.png')}}) 0 0/100% 100% no-repeat !important;
|
||||
}
|
||||
}
|
||||
sharebutton:hover,
|
||||
.sharebutton:hover {
|
||||
color: #000000;
|
||||
opacity: 0.85;
|
||||
filter: alpha(opacity=40);
|
||||
border-color: #888;
|
||||
text-shadow: none !important;
|
||||
-webkit-transform:scale(1.00) !important;
|
||||
transform:scale(1.00) !important;
|
||||
outline: 0; }
|
||||
.sharebutton.sharebutton-primary {
|
||||
color: #FFFFFF;
|
||||
filter: brightness(90%) }
|
||||
.sharebutton.sharebutton-primary:hover,
|
||||
.sharebutton.sharebutton-primary:focus {
|
||||
color: #FFFFFF;
|
||||
filter: brightness(90%) }
|
||||
|
||||
/* ===== Hidden Scrollbar ===== */
|
||||
* {
|
||||
-ms-overflow-style: none; /* Internet Explorer 10+ */
|
||||
scrollbar-width: none; /* Firefox */ }
|
||||
*::-webkit-scrollbar {
|
||||
display: none; /* Safari and Chrome */ }
|
||||
|
||||
.wrapper {
|
||||
margin-top: -85vh;
|
||||
height: 100%;
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
z-index: -100;
|
||||
|
||||
}
|
||||
|
||||
.satan {
|
||||
width: 600px;
|
||||
margin-top: 10vh;
|
||||
height: 200px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
filter: blur(2px);
|
||||
animation: blink-satan 3s both infinite;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.satan-eye {
|
||||
width: 180px;
|
||||
height: 200px;
|
||||
border-top: 10px solid #22222255;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.satan-eye:first-child {
|
||||
border-radius: 20% 300px;
|
||||
}
|
||||
.satan-eye:last-child {
|
||||
border-radius: 300px 20%;
|
||||
}
|
||||
|
||||
.satan-eye::before,
|
||||
.satan-eye::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
margin-left: 50%;
|
||||
background: #960018;
|
||||
}
|
||||
|
||||
.satan-eye::before {
|
||||
width: 10%;
|
||||
height: 50%;
|
||||
transform: translate(-50%, 0);
|
||||
}
|
||||
|
||||
.satan-eye::after {
|
||||
width: 20%;
|
||||
height: 4%;
|
||||
margin-top: 10%;
|
||||
transform: translate(-50%, 666%);
|
||||
}
|
||||
|
||||
.satan-eye:first-child::before,
|
||||
.satan-eye:first-child::after {
|
||||
border-radius: 0 0 50% 100px;
|
||||
}
|
||||
.satan-eye:last-child::before,
|
||||
.satan-eye:last-child::after {
|
||||
border-radius: 0 0 100px 50%;
|
||||
}
|
||||
|
||||
|
||||
.isaac {
|
||||
margin: auto;
|
||||
width: fit-content;
|
||||
position: relative;
|
||||
animation: blink 3s both infinite;
|
||||
opacity: .7;
|
||||
}
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.isaac {
|
||||
transform: scale(.3);
|
||||
transform-origin: top;
|
||||
}
|
||||
.satan {
|
||||
max-width: 100vw;
|
||||
}
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: white;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.head {
|
||||
width: 410px;
|
||||
height: 360px;
|
||||
border-radius: 100%;
|
||||
background: radial-gradient(#E3C6C5 30%, #D09C9B 70%, #B97371 90%);
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 20px 35px 0;
|
||||
position: relative;
|
||||
z-index: -1;
|
||||
overflow: hidden;
|
||||
animation: eye-shake 1ms infinite;
|
||||
}
|
||||
|
||||
.eye {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
border-radius: 100%;
|
||||
background: #111;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.eye-left::before,
|
||||
.eye-right::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 90%;
|
||||
height: 200%;
|
||||
background: linear-gradient(#9CC9CD, transparent 90%);
|
||||
top: 50%;
|
||||
z-index: -4;
|
||||
}
|
||||
|
||||
.eye-right::after {
|
||||
animation: shake-right 2s infinite ease-out;
|
||||
}
|
||||
|
||||
.eye-left::before {
|
||||
animation: shake-left 2s infinite ease-out;
|
||||
}
|
||||
|
||||
@keyframes shake-right {
|
||||
0 {
|
||||
transform: scale(0.8) translateX(0) skewX(0);
|
||||
}
|
||||
30% {
|
||||
transform: scale(0.90, 1) translateX(-4px) skewX(-2deg);
|
||||
}
|
||||
40% {
|
||||
transform: scale(0.95, 1) translateX(-6px) skewX(-1deg);
|
||||
}
|
||||
60% {
|
||||
transform: scale(0.94, 1) translateX(-1px) skewX(2deg);
|
||||
}
|
||||
75% {
|
||||
transform: scale(0.90, 1) translateX(-4px) skewX(-2deg);
|
||||
}
|
||||
90% {
|
||||
transform: scale(0.92, 1) translateX(-6px) skewX(-1deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes shake-left {
|
||||
0 {
|
||||
transform: scale(0.8) translateX(0) skewX(0);
|
||||
}
|
||||
25% {
|
||||
transform: scale(0.90, 1) translateX(4px) skewX(2deg);
|
||||
}
|
||||
35% {
|
||||
transform: scale(0.95, 1) translateX(6px) skewX(1deg);
|
||||
}
|
||||
60% {
|
||||
transform: scale(0.94, 1) translateX(1px) skewX(-2deg);
|
||||
}
|
||||
75% {
|
||||
transform: scale(0.90, 1) translateX(4px) skewX(2deg);
|
||||
}
|
||||
85% {
|
||||
transform: scale(0.92, 1) translateX(6px) skewX(1deg);
|
||||
}
|
||||
}
|
||||
|
||||
.eye::before {
|
||||
left: -5px;
|
||||
transform: skew(-3deg);
|
||||
}
|
||||
.eye::after {
|
||||
right: -5px;
|
||||
transform: skew(3deg);
|
||||
}
|
||||
|
||||
.eye-shine {
|
||||
width: 50%;
|
||||
height: 50%;
|
||||
background: white;
|
||||
border-radius: 100%;
|
||||
transform: skew(-15deg);
|
||||
margin: 8%;
|
||||
position: relative;
|
||||
animation: eye-shake 0.1ms infinite;
|
||||
}
|
||||
|
||||
@keyframes eye-shake {
|
||||
50% {
|
||||
transform: translateX(1px);
|
||||
}
|
||||
}
|
||||
|
||||
.eye-shine-sm {
|
||||
position: absolute;
|
||||
background: #fff;
|
||||
width: 20px;
|
||||
height: 15px;
|
||||
bottom: 13%;
|
||||
right: 16%;
|
||||
border-radius: 100%;
|
||||
transform: rotate(-45deg);
|
||||
animation: eye-shake .1s infinite;
|
||||
}
|
||||
|
||||
.mouth {
|
||||
margin-top: 100px;
|
||||
width: 60px;
|
||||
height: 50px;
|
||||
background: transparent;
|
||||
border-top: 4px solid #111;
|
||||
border-radius: 100%;
|
||||
position: relative;
|
||||
animation: mouth-shake 1ms infinite;
|
||||
}
|
||||
|
||||
@keyframes mouth-shake {
|
||||
to {
|
||||
transform: translateY(1px);
|
||||
}
|
||||
}
|
||||
|
||||
.mouth::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 16px;
|
||||
height: 15px;
|
||||
background: transparent;
|
||||
bottom: 18px;
|
||||
left: -8px;
|
||||
border-radius: 50%;
|
||||
border-bottom: 2px solid #111;
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
|
||||
.mouth::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
background: transparent;
|
||||
bottom: 20px;
|
||||
right: -6px;
|
||||
border-radius: 50%;
|
||||
border-bottom: 2px solid #111;
|
||||
transform: rotate(-45deg);
|
||||
}
|
||||
|
||||
|
||||
.body {
|
||||
width: 60%;
|
||||
margin: auto;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.torso {
|
||||
width: 160px;
|
||||
height: 160px;
|
||||
margin: auto;
|
||||
position: relative;
|
||||
z-index: -3;
|
||||
transform: translateY(-80px);
|
||||
background: radial-gradient(#E3C6C5 40%, #D09C9B 80%, #B97371 90%);
|
||||
border-radius: 150px 150px 70% 70%;
|
||||
}
|
||||
|
||||
.arm {
|
||||
width: 80px;
|
||||
height: 130px;
|
||||
z-index: -6;
|
||||
background: #E3C6C5;
|
||||
position: absolute;
|
||||
top: -50px;
|
||||
background: radial-gradient(#E3C6C5 10%, #D09C9B 70%, #B97371 90%);
|
||||
}
|
||||
|
||||
.arm-left {
|
||||
border-radius: 30% 30% 30% 60%;
|
||||
left: 20px;
|
||||
transform: skew(-5deg) rotate(25deg);
|
||||
}
|
||||
|
||||
.arm-right {
|
||||
border-radius: 30% 30% 60% 30%;
|
||||
right: 20px;
|
||||
transform: skew(5deg) rotate(-25deg);
|
||||
}
|
||||
|
||||
.foot-left {
|
||||
width: 30%;
|
||||
height: 120px;
|
||||
background: orange;
|
||||
position: absolute;
|
||||
top: 10%;
|
||||
left: 16%;
|
||||
transform: rotate(5deg);
|
||||
border-radius: 0 60% 30px 30px;
|
||||
z-index: -5;
|
||||
background: radial-gradient(#E3C6C5 20%, #D09C9B 90%, #B97371);
|
||||
}
|
||||
|
||||
.foot-right {
|
||||
width: 30%;
|
||||
height: 120px;
|
||||
background: orange;
|
||||
position: absolute;
|
||||
top: 10%;
|
||||
right: 16%;
|
||||
transform: rotate(-5deg);
|
||||
border-radius: 60% 0 30px 30px;
|
||||
z-index: -5;
|
||||
background: radial-gradient(#E3C6C5 20%, #D09C9B 90%, #B97371);
|
||||
}
|
||||
|
||||
|
||||
.head,
|
||||
.arm,
|
||||
.foot,
|
||||
.eye::after,
|
||||
.eye::before {
|
||||
border: 4px solid #111;
|
||||
}
|
||||
|
||||
.torso {
|
||||
border-left: 4px solid #111;
|
||||
border-right: 4px solid #111;
|
||||
}
|
||||
|
||||
.isaac::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
z-index: -10;
|
||||
width: 540px;
|
||||
height: 120px;
|
||||
border-radius: 100%;
|
||||
background: #634937;
|
||||
bottom: -10px;
|
||||
margin-left: 50%;
|
||||
transform: translateX(-50%);
|
||||
filter: blur(1px);
|
||||
opacity: .3;
|
||||
}
|
||||
|
||||
@if(theme('disable_flicker') != "true")
|
||||
@keyframes blink {
|
||||
14% {
|
||||
opacity: .7;
|
||||
}
|
||||
15% {
|
||||
opacity: .5;
|
||||
}
|
||||
16% {
|
||||
opacity: .7;
|
||||
}
|
||||
20% {
|
||||
opacity: .5;
|
||||
}
|
||||
60% {
|
||||
opacity: .7;
|
||||
}
|
||||
61% {
|
||||
opacity: .2;
|
||||
}
|
||||
62% {
|
||||
opacity: .7;
|
||||
}
|
||||
64% {
|
||||
opacity: .3;
|
||||
}
|
||||
65% {
|
||||
opacity: .7;
|
||||
}
|
||||
70% {
|
||||
opacity: .6
|
||||
}
|
||||
71% {
|
||||
opacity: .4;
|
||||
}
|
||||
76% {
|
||||
opacity: 0.4;
|
||||
}
|
||||
82% {
|
||||
opacity: .5;
|
||||
}
|
||||
}
|
||||
@endif
|
||||
|
||||
@if(theme('disable_flicker') == "true")
|
||||
@keyframes blink-satan {
|
||||
0% {
|
||||
opacity: 1;
|
||||
filter: blue(1px);
|
||||
transform: scale(1);
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
filter: blue(1px);
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
@else
|
||||
@keyframes blink-satan {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
20% {
|
||||
opacity: .2;
|
||||
}
|
||||
60% {
|
||||
opacity: 0;
|
||||
}
|
||||
61% {
|
||||
opacity: .1;
|
||||
transform: scale(1);
|
||||
}
|
||||
62% {
|
||||
opacity: .2;
|
||||
}
|
||||
64% {
|
||||
opacity: .7;
|
||||
}
|
||||
65% {
|
||||
opacity: .1;
|
||||
}
|
||||
70% {
|
||||
opacity: 0;
|
||||
}
|
||||
71% {
|
||||
opacity: .7;
|
||||
|
||||
}
|
||||
76% {
|
||||
opacity: .6;
|
||||
}
|
||||
82% {
|
||||
opacity: .6;
|
||||
}
|
||||
95% {
|
||||
transform: scale(1.1);
|
||||
filter: blur(0);
|
||||
}
|
||||
100% {
|
||||
opacity: 0;
|
||||
filter: blue(1px);
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
@endif
|
||||
|
||||
/* Light On */
|
||||
.isaac::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 540px;
|
||||
height: 100vh;
|
||||
bottom: 50px;
|
||||
margin-left: 50%;
|
||||
transform: translateX(-50%);
|
||||
background: linear-gradient(#FAEBD722, transparent);
|
||||
clip-path: polygon(40% 0, 60% 0, 100% 100%, 0 100%);
|
||||
z-index: -5;
|
||||
filter: blur(200px);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
#light-toggler {
|
||||
position: absolute;
|
||||
padding: 3px;
|
||||
height: 120px;
|
||||
background: burlywood;
|
||||
border-radius: 30px;
|
||||
top: -60px;
|
||||
z-index: 99;
|
||||
transition: all .3s;
|
||||
border: 10px solid transparent;
|
||||
background-clip: padding-box;
|
||||
cursor: pointer;
|
||||
animation: light-toggler 4s infinite ease-in-out;
|
||||
}
|
||||
|
||||
@keyframes light-toggler {
|
||||
0% {
|
||||
transform: translateX(-15px) translateY(0px) rotate(15deg);
|
||||
}
|
||||
50% {
|
||||
transform: translateX(15px) translateY(10px) rotate(-15deg);
|
||||
}
|
||||
100% {
|
||||
transform: translateX(-15px) translateY(0px) rotate(15deg);
|
||||
}
|
||||
}
|
||||
|
||||
#light-toggler:hover,
|
||||
#light-toggler:focus {
|
||||
height: 140px;
|
||||
}
|
||||
|
||||
#light {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#light:checked ~ *,
|
||||
#light:checked ~ *::before,
|
||||
#light:checked ~ *::after,
|
||||
#light:checked ~ * *,
|
||||
#light:checked ~ * *::before,
|
||||
#light:checked ~ * *::after {
|
||||
animation-duration: 4s;
|
||||
}
|
||||
|
||||
#light:checked ~ .satan {
|
||||
animation: unset;
|
||||
}
|
||||
|
||||
#light:checked ~ .isaac::before {
|
||||
opacity: .7;
|
||||
}
|
||||
|
||||
#light:checked ~ .isaac::after {
|
||||
opacity: .7;
|
||||
}
|
||||
|
||||
#light:checked ~ * .mouth {
|
||||
transform: rotateX(180deg) scale(1.2, .8);
|
||||
animation: unset;
|
||||
}
|
||||
</style>
|
Before Width: | Height: | Size: 279 KiB |
@ -1,20 +0,0 @@
|
||||
# A LittleLink Custom Theme
|
||||
Find more themes: https://github.com/JulianPrieber/llc-themes
|
||||
|
||||
* Theme Name: Isaac
|
||||
* Theme Version: 1.2
|
||||
* Theme Date: 2022-11-15
|
||||
* Theme Author: JulianPrieber
|
||||
* Theme Author URI: https://github.com/JulianPrieber
|
||||
* Theme License: MIT
|
||||
* Source code: https://github.com/JulianPrieber/isaac
|
||||
|
||||
|
||||
### Used assets:
|
||||
* Built using:
|
||||
* https://github.com/dhg/Skeleton
|
||||
* License: MIT
|
||||
|
||||
* Built using:
|
||||
* https://codepen.io/RoundMidnight/pen/dyXQqxv
|
||||
* License: MIT
|
53
themes/isaac/share.button.css
vendored
@ -1,53 +0,0 @@
|
||||
.share-icon {
|
||||
padding: 0px 8px 3.5px 0px;
|
||||
vertical-align: middle;
|
||||
color: #000 !important;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.sharediv {
|
||||
position:relative;
|
||||
top: 30px;
|
||||
right: 30px;
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
|
||||
.toastdiv {
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
-webkit-align-items: center;
|
||||
align-items: center;
|
||||
-webkit-justify-content: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.toastbox {
|
||||
width: 280px;
|
||||
padding: 10px;
|
||||
background-color: rgba(0, 0, 0, 0.7);
|
||||
color: white;
|
||||
border-radius: 4px;
|
||||
position: fixed;
|
||||
top: 105%;
|
||||
-webkit-transition: transform 0.3s linear;
|
||||
transition: transform 0.3s linear;
|
||||
z-index: 2;
|
||||
text-align: center;
|
||||
}
|
||||
.toastbox.toast-tox--active {
|
||||
-webkit-transform: translateY(-150px);
|
||||
transform: translateY(-150px);
|
||||
}
|
||||
|
||||
@media screen and (max-width: 600px) {
|
||||
.sharebutton-mb {
|
||||
display: none;
|
||||
}
|
||||
.sharebutton-img {
|
||||
position: relative;
|
||||
left: 3px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
}
|
235
themes/isaac/skeleton-auto.css
vendored
@ -1,235 +0,0 @@
|
||||
|
||||
/* Table of contents
|
||||
––––––––––––––––––––––––––––––––––––––––––––––––––
|
||||
|
||||
- Grid
|
||||
- Base Styles
|
||||
- Typography
|
||||
- Links
|
||||
- Code
|
||||
- Spacing
|
||||
- Utilities
|
||||
- Misc
|
||||
- Credit footer
|
||||
|
||||
*/
|
||||
|
||||
|
||||
/* Grid
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.container {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
max-width: 800px;
|
||||
text-align: center;
|
||||
margin: 0 auto;
|
||||
box-sizing: border-box; }
|
||||
.column {
|
||||
position: center;
|
||||
width: 100%;
|
||||
float: center;
|
||||
box-sizing: border-box; }
|
||||
|
||||
/* For devices larger than 400px */
|
||||
@media (min-width: 400px) {
|
||||
.container {
|
||||
width: 95%;
|
||||
padding: 0; }
|
||||
}
|
||||
|
||||
/* For devices larger than 550px */
|
||||
@media (min-width: 550px) {
|
||||
.container {
|
||||
width: 90%; }
|
||||
.column,
|
||||
.columns {
|
||||
margin-left: 0; }
|
||||
.column:first-child,
|
||||
.columns:first-child {
|
||||
margin-left: 0; }
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* Base Styles
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* NOTE
|
||||
html is set to 62.5% so that all the REM measurements throughout Skeleton
|
||||
are based on 10px sizing. So basically 1.5rem = 15px :) */
|
||||
|
||||
html {
|
||||
font-size: 100%; }
|
||||
|
||||
/* Dark/light mode detection (comment this section out and use the one below for a fixed background color) */
|
||||
body {
|
||||
font-size: 18px;
|
||||
line-height: 24px;
|
||||
font-weight: 400;
|
||||
background: #111;
|
||||
|
||||
color: #FFFFFF; }
|
||||
|
||||
/* Use this for a fixed background color instead of dark and light mode
|
||||
body {
|
||||
font-size: 18px;
|
||||
line-height: 24px;
|
||||
font-weight: 400;
|
||||
font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial,
|
||||
sans-serif;
|
||||
}
|
||||
*/
|
||||
|
||||
/* Typography
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
h1 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 16px;
|
||||
letter-spacing: 5px;
|
||||
font-weight: 800;
|
||||
line-height: 64px;
|
||||
|
||||
background: -webkit-radial-gradient(#CAC895, #000000);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
|
||||
|
||||
-webkit-transform-origin: 50% 100%;
|
||||
-moz-transform-origin: 50% 100%;
|
||||
-ms-transform-origin: 50% 100%;
|
||||
-o-transform-origin: 50% 100%;
|
||||
transform-origin: 50% 100%;
|
||||
-webkit-transform: perspective(300px) rotateX(15deg);
|
||||
-moz-transform: perspective(300px) rotateX(15deg);
|
||||
-ms-transform: perspective(300px) rotateX(15deg);
|
||||
-o-transform: perspective(300px) rotateX(15deg);
|
||||
transform: perspective(300px) rotateX(15deg);
|
||||
|
||||
filter: drop-shadow(-4px 4px 3px #3f0e48);
|
||||
}
|
||||
|
||||
|
||||
/* Larger than phablet */
|
||||
@media (min-width: 550px) {
|
||||
h1 { font-size: 96px; line-height: 96px;}
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 0; }
|
||||
|
||||
|
||||
/* Links
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
a {
|
||||
color: #e1e1e1;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
color: #e1e1e1;-webkit-filter: brightness(70%); }
|
||||
|
||||
.spacing {
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
/* Code
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
code {
|
||||
padding: .2rem .5rem;
|
||||
margin: 0 .2rem;
|
||||
font-size: 90%;
|
||||
white-space: nowrap;
|
||||
background: #F1F1F1;
|
||||
border: 1px solid #E1E1E1;
|
||||
border-radius: 4px; }
|
||||
pre > code {
|
||||
display: block;
|
||||
padding: 1rem 1.5rem;
|
||||
white-space: pre; }
|
||||
|
||||
/* Spacing
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
button,
|
||||
.button {
|
||||
margin-bottom: 1rem; }
|
||||
input,
|
||||
textarea,
|
||||
select,
|
||||
fieldset {
|
||||
margin-bottom: 1.5rem; }
|
||||
pre,
|
||||
blockquote,
|
||||
dl,
|
||||
figure,
|
||||
p,
|
||||
ol {
|
||||
margin-bottom: 2.5rem; }
|
||||
|
||||
|
||||
/* Utilities
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.u-full-width {
|
||||
width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.u-max-full-width {
|
||||
max-width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.u-pull-right {
|
||||
float: right; }
|
||||
.u-pull-left {
|
||||
float: left; }
|
||||
|
||||
|
||||
/* Misc
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
hr {
|
||||
margin-top: 3rem;
|
||||
margin-bottom: 3.5rem;
|
||||
border-width: 0;
|
||||
border-top: 1px solid #E1E1E1; }
|
||||
|
||||
|
||||
/* ===== Scrollbar CSS ===== */
|
||||
/* Firefox */
|
||||
* {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #171a1d #31363b;
|
||||
}
|
||||
|
||||
/* Chrome, Edge, and Safari */
|
||||
*::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-track {
|
||||
background: #31363b;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-thumb {
|
||||
background-color: #171a1d;
|
||||
border-radius: 30px;
|
||||
border: 3px none #ffffff;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* Credit footer
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
/* Styling for credit footer text */
|
||||
.credit-txt {
|
||||
font-weight: 700;
|
||||
font-size: 15px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.credit-icon {
|
||||
display: none; }
|
||||
.credit-footer {
|
||||
position: relative;
|
||||
right: 15px; }
|
||||
|
||||
/* Switches text color for credit footer for dark/light mode */
|
||||
|
||||
.credit-txt-clr{
|
||||
color: #FFF !important;
|
||||
}
|
||||
|
||||
|
5
themes/llcvanilla/animations.css
vendored
@ -1,5 +0,0 @@
|
||||
/* *********************** */
|
||||
/*
|
||||
/* nothing here ¯\_(ツ)_/¯
|
||||
/*
|
||||
/* *********************** */
|
@ -1,70 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Theme Config
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The theme config allows you to configure how LittleLink Custom should treat your theme.
|
||||
| All settings can either be set to "true" or "false", unless stated otherwise.
|
||||
|
|
||||
| The settings below change how your buttons behave.
|
||||
|
|
||||
*/
|
||||
|
||||
// Some themes may not be compatible with custom buttons created by the Button Editor.
|
||||
// If 'false' the default button CSS is used.
|
||||
'allow_custom_buttons' => 'true',
|
||||
|
||||
'open_links_in_same_tab' => 'false',
|
||||
|
||||
// You can use this option to use the default button styling. For example reskins of the Default Theme.
|
||||
// This can be useful if you do not want to update your brand styles every time a new button is added.
|
||||
// If true the file "brands.css" wont be used anymore and can be removed.
|
||||
'use_default_buttons' => 'true',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Code
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Custom code allows you to inject customized Blade, PHP, HTML, JavaScript and CSS code.
|
||||
|
|
||||
| In your "extra" folder, you will find 3 separate files for injecting your code to
|
||||
| different places on the final page (head, body, at the end of the body).
|
||||
|
|
||||
| You may also attach custom assets like CSS, JS, or images.
|
||||
| You can find instructions for this in the files in your extra folder.
|
||||
|
|
||||
*/
|
||||
|
||||
'enable_custom_code' => 'false',
|
||||
|
||||
// Disable individual files (only applies if above is 'true').
|
||||
'enable_custom_head' => 'true',
|
||||
'enable_custom_body' => 'true',
|
||||
'enable_custom_body_end' => 'true',
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Icons
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| You may add custom icons to your theme.
|
||||
| These icons are stored under: .../extra/custom-icons.
|
||||
|
|
||||
| You can adjust the file extension types to use other files than just SVGs.
|
||||
|
|
||||
*/
|
||||
|
||||
'use_custom_icons' => 'false',
|
||||
|
||||
// Is not set correct this will cause errors.
|
||||
'custom_icon_extension' => '.svg', // (.png, .jpg ...)
|
||||
|
||||
|
||||
|
||||
];
|