Added Theme support to main branch

Added Theme support to main branch
This commit is contained in:
Julian Prieber 2022-05-20 16:21:28 +02:00 committed by GitHub
commit a20ae1d59f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
22 changed files with 1982 additions and 225 deletions

2
.env
View File

@ -23,7 +23,7 @@ ALLOW_USER_HTML=false
#App Settings=Changes settings regarding your LittleLink Custom installation. You probably only want to change the App Name setting.
#=App_Name changes the displayed name for the App in the title, for example.
APP_NAME="LittleLink Custom"
APP_KEY=base64:YUFWn5swwXryVBujHaOdiPqNvLEsC7RZs8df3rb/DJs=
APP_KEY=
#=The APP_URL should be left empty under most circumstances. This setting is not required for LittleLink Custom, and you should only change this if required for your setup.
APP_URL=

View File

@ -7,11 +7,13 @@ use Illuminate\Support\Facades\Hash;
use Auth;
use DB;
use ZipArchive;
use App\Models\User;
use App\Models\Button;
use App\Models\Link;
//Function tests if string starts with certain string (used to test for illegal strings)
function stringStartsWith($haystack,$needle,$case=true) {
if ($case){
@ -56,8 +58,8 @@ class UserController extends Controller
return abort(404);
}
$userinfo = User::select('name', 'littlelink_name', 'littlelink_description')->where('id', $id)->first();
$information = User::select('name', 'littlelink_name', 'littlelink_description')->where('id', $id)->get();
$userinfo = User::select('name', 'littlelink_name', 'littlelink_description', 'theme')->where('id', $id)->first();
$information = User::select('name', 'littlelink_name', 'littlelink_description', 'theme')->where('id', $id)->get();
$links = DB::table('links')->join('buttons', 'buttons.id', '=', 'links.button_id')->select('links.link', 'links.id', 'links.button_id', 'links.title', 'links.custom_css', 'links.custom_icon', 'buttons.name')->where('user_id', $id)->orderBy('up_link', 'asc')->orderBy('order', 'asc')->get();
@ -74,8 +76,8 @@ class UserController extends Controller
return abort(404);
}
$userinfo = User::select('name', 'littlelink_name', 'littlelink_description')->where('id', $id)->first();
$information = User::select('name', 'littlelink_name', 'littlelink_description')->where('id', $id)->get();
$userinfo = User::select('name', 'littlelink_name', 'littlelink_description', 'theme')->where('id', $id)->first();
$information = User::select('name', 'littlelink_name', 'littlelink_description', 'theme')->where('id', $id)->get();
$links = DB::table('links')->join('buttons', 'buttons.id', '=', 'links.button_id')->select('links.link', 'links.id', 'links.button_id', 'links.title', 'links.custom_css', 'links.custom_icon', 'buttons.name')->where('user_id', $id)->orderBy('up_link', 'asc')->orderBy('order', 'asc')->get();
@ -301,8 +303,47 @@ class UserController extends Controller
return Redirect('/studio/page');
}
//Show custom theme
public function showTheme(request $request)
{
$userId = Auth::user()->id;
$data['pages'] = User::where('id', $userId)->select('littlelink_name', 'theme')->get();
return view('/studio/theme', $data);
}
//Save custom theme
public function editTheme(request $request)
{
$request->validate([
'zip' => 'sometimes|mimes:zip',
]);
$userId = Auth::user()->id;
$zipfile = $request->file('zip');
$theme = $request->theme;
User::where('id', $userId)->update(['theme' => $theme]);
if(!empty($zipfile)){
$zipfile->move(base_path('/themes'), "temp.zip");
$zip = new ZipArchive;
$zip->open(base_path() . '/themes/temp.zip');
$zip->extractTo(base_path() . '/themes');
$zip->close();
unlink(base_path() . '/themes/temp.zip');
}
return Redirect('/studio/theme');
}
//Show user (name, email, password)
public function showProfile()
public function showProfile(request $request)
{
$userId = Auth::user()->id;

View File

@ -25,6 +25,7 @@ class CreateUsersTable extends Migration
$table->enum('block', ['yes', 'no'])->default('no');
$table->rememberToken();
$table->timestamps();
$table->string('theme')->nullable();
});
}

View File

@ -1,3 +1,10 @@
.share-icon {
padding: 0px 8px 3.5px 0px;
vertical-align: middle;
width: 20px;
height: 20px;
}
.sharediv {
position:relative;
top: 30px;
@ -94,4 +101,4 @@ sharebutton:hover,
margin-left: auto;
margin-right: auto;
}
}
}

View File

@ -42,223 +42,223 @@
/* 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; }
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%; }
@media (prefers-color-scheme: dark) {
body {
font-size: 18px;
line-height: 24px;
font-weight: 400;
background: #292929;
background: radial-gradient(circle, #292929 28%, #1b1b1b 100%);
font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #FFFFFF; }
}
/* 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; }
@media (prefers-color-scheme: light) {
body {
font-size: 18px;
line-height: 24px;
font-weight: 400;
background: #F1F1F1;
font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #222; }
}
/* 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%; }
@media (prefers-color-scheme: dark) {
body {
font-size: 18px;
line-height: 24px;
font-weight: 400;
background: #292929;
background: radial-gradient(circle, #292929 28%, #1b1b1b 100%);
font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #FFFFFF; }
}
@media (prefers-color-scheme: light) {
body {
font-size: 18px;
line-height: 24px;
font-weight: 400;
background: #F1F1F1;
font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #222; }
}
/* 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;}
/* 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;
}
/* 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;
}
p {
margin-top: 0; }
/* Links
*/
a {
color: #0085FF;
text-decoration: none;
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
width: 8px;
}
a:hover {
color: #0085FF; }
.spacing {
padding: 0 10px;
*::-webkit-scrollbar-track {
background: #31363b;
}
/* 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;
}
*::-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;
}
}
@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
*/
.credit-txt {
font-weight: 700;
font-size: 15px;
text-decoration: none;
font-weight: 700;
font-size: 15px;
text-decoration: none;
}
@media (prefers-color-scheme: dark) {
.credit-txt-clr{
color: #FFF !important;
}
.credit-txt-clr{
color: #FFF !important;
}
}
@media (prefers-color-scheme: light) {
.credit-txt-clr{
color: #100a26 !important;
}
.credit-txt-clr{
color: #100a26 !important;
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 93 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -138,6 +138,9 @@ if ($url1sb->successful() or $url2sb->successful()) {
</li>
<li>
<a href="{{ url('/studio/page') }}">Page</a>
</li>
<li>
<a href="{{ url('/studio/theme') }}">Themes</a>
</li>
<li>
<a href="{{ url('/studio/profile') }}">Profile</a>

View File

@ -2,7 +2,11 @@
<html lang="en">
<head>
<meta charset="utf-8">
@if(env('HOME_URL') != '')
<title>{{ $userinfo->name }}</title>
@else
<title>{{ $userinfo->name }} 🔗 {{ config('app.name') }} </title>
@endif
<meta name="description" content="{{ $userinfo->littlelink_description }}">
<meta name="author" content="{{ $userinfo->name }}">
<meta name="viewport" content="width=device-width, initial-scale=1">
@ -40,18 +44,25 @@
<link href="//fonts.googleapis.com/css?family=Open+Sans:400,600,800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="{{ asset('littlelink/css/normalize.css') }}">
<link rel="stylesheet" href="{{ asset('littlelink/css/brands.css') }}">
<link rel="stylesheet" href="{{ asset('littlelink/css/hover-min.css') }}">
<link rel="stylesheet" href="{{ asset('littlelink/css/animate.css') }}">
<link rel="stylesheet" href="{{ asset('littlelink/css/share.button.css') }}">
@if(file_exists(base_path("littlelink/images/avatar.png" )))
<link rel="icon" type="image/png" href="{{ asset('littlelink/images/avatar.png') }}">
@else
<link rel="icon" type="image/svg+xml" href="{{ asset('littlelink/images/logo.svg') }}">
@endif
@foreach($information as $info)
@if($info->theme != '' and $info->theme != 'default')
<link rel="stylesheet" href="themes/{{$info->theme}}/share.button.css">
<link rel="stylesheet" href="themes/{{$info->theme}}/brands.css">
<link rel="stylesheet" href="themes/{{$info->theme}}/skeleton-auto.css">
@else
<?php // override dark/light mode if override cookie is set
$color_scheme_override = isset($_COOKIE["color_scheme_override"]) ? $_COOKIE["color_scheme_override"] : false; ?>
<link rel="stylesheet" href="{{ asset('littlelink/css/share.button.css') }}">
<link rel="stylesheet" href="{{ asset('littlelink/css/brands.css') }}">
@if ($color_scheme_override == 'dark')
<link rel="stylesheet" href="{{ asset('littlelink/css/skeleton-dark.css') }}">
@elseif ($color_scheme_override == 'light')
@ -59,9 +70,18 @@
@else
<link rel="stylesheet" href="{{ asset('littlelink/css/skeleton-auto.css') }}">
@endif
@endif
</head>
<body>
<!-- Enables parallax background animations -->
<section class="parallax-background">
<div id="object1"></div>
<div id="object2"></div>
<div id="object3"></div>
</section>
<!-- End of parallax background animations -->
<?php ////begin share button//// ?>
<?php
//Get browser type
@ -115,19 +135,16 @@ function get_operating_system() {
?>
@if($user_browser === 'Chrome' or get_operating_system() == 'mobile')
<script src="{{ asset('littlelink/js/jquery.min.js') }}"></script>
<div align="right" class="sharediv"><div class="button-entrance"><span class="sharebutton hvr-grow hvr-icon-wobble-vertical" id='share-share-button'><img alt="share-icon" class="sharebutton-img icon hvr-icon" src="{{ asset('\/littlelink/icons\/')}}share.svg"><span class="sharebutton-mb">Share</span></span></div></div>
<script src="{{ asset('littlelink/js/jquery.min.js') }}"></script>
<div align="right" class="sharediv"><div class="button-entrance"><span class="sharebutton hvr-grow hvr-icon-wobble-vertical" id='share-share-button'><img alt="share-icon" class="sharebutton-img share-icon hvr-icon" src="{{ asset('\/littlelink/icons\/')}}share.svg"><span class="sharebutton-mb">Share</span></span></div></div>
<span class="copy-icon" role="button">
</span>
@else
<span class="copy-icon" role="button">
<div align="right" class="sharediv"><div class="button-entrance"><a class="sharebutton hvr-grow hvr-icon-wobble-vertical"><img alt="share-icon" class="sharebutton-img icon hvr-icon" src="{{ asset('\/littlelink/icons\/')}}share.svg"><span class="sharebutton-mb">Share</span></a></div></div>
<div onclick="alert('URL has been copied to your clipboard!')" align="right" class="sharediv"><div class="button-entrance"><a class="sharebutton hvr-grow hvr-icon-wobble-vertical"><img alt="share-icon" class="sharebutton-img share-icon hvr-icon" src="{{ asset('\/littlelink/icons\/')}}share.svg"><span class="sharebutton-mb">Share</span></a></div></div>
</span>
@endif
<div class="toastdiv">
<span class="toastbox" role="alert"></span>
<script src="{{ asset('littlelink/js/share.button.js') }}"></script>
</div>
<?php ////end share button//// ?>
<div class="container">
@ -142,7 +159,6 @@ function get_operating_system() {
<img alt="avatar" class="rounded-avatar fadein" src="{{ asset('littlelink/images/logo.svg') }}" srcset="{{ asset('littlelink/images/avatar@2x.png 2x') }}" width="128px" height="128px" style="object-fit: cover;">
@endif
@foreach($information as $info)
<!-- Your Name -->
<h1 class="fadein">{{ $info->name }}</h1>
@ -157,13 +173,13 @@ function get_operating_system() {
@if($link->button_id === 0)
<div style="--delay: {{ $initial++ }}s" class="button-entrance"><a class="button button-title button hvr-grow hvr-icon-wobble-vertical" rel="noopener noreferrer nofollow" href="{{ route('clickNumber') . '/' . $link->id . '/' . $link->link}}" target="_blank">
{{ $link->title }}</a></div>
@elseif($link->name === "custom" and $link->custom_css === "")
@elseif($link->name === "custom" and $link->custom_css === "" or $link->custom_css === "NULL")
<div style="--delay: {{ $initial++ }}s" class="button-entrance"><a class="button button-{{ $link->name }} button hvr-grow hvr-icon-wobble-vertical" rel="noopener noreferrer nofollow" href="{{ route('clickNumber') . '/' . $link->id . '/' . $link->link}}" target="_blank"><i style="color: {{$link->custom_icon}}" class="icon hvr-icon fa {{$link->custom_icon}}"></i>{{ $link->title }}</a></div>
@elseif($link->name === "custom" and $link->custom_css != "")
<div style="--delay: {{ $initial++ }}s" class="button-entrance"><a class="button button hvr-grow hvr-icon-wobble-vertical" style="{{ $link->custom_css }}" rel="noopener noreferrer nofollow" href="{{ route('clickNumber') . '/' . $link->id . '/' . $link->link}}" target="_blank"><i style="color: {{$link->custom_icon}}" class="icon hvr-icon fa {{$link->custom_icon}}"></i>{{ $link->title }}</a></div>
@elseif($link->name === "buy me a coffee")
<div style="--delay: {{ $initial++ }}s" class="button-entrance"><a class="button button-coffee button hvr-grow hvr-icon-wobble-vertical" rel="noopener noreferrer nofollow" href="{{ route('clickNumber') . '/' . $link->id . '/' . $link->link}}" target="_blank"><img alt="button-icon" class="icon hvr-icon" src="{{ asset('\/littlelink/icons\/')}}coffee.svg">Buy me a Coffee</a></div>
@elseif($link->name === "custom_website"and $link->custom_css === "")
@elseif($link->name === "custom_website"and $link->custom_css === "" or $link->custom_css === "NULL")
<div style="--delay: {{ $initial++ }}s" class="button-entrance"><a class="button button-custom_website button hvr-grow hvr-icon-wobble-vertical" rel="noopener noreferrer nofollow" href="{{ route('clickNumber') . '/' . $link->id . '/' . $link->link}}" target="_blank"><img alt="button-icon" class="icon hvr-icon" src="http://www.google.com/s2/favicons?domain={{$link->link}}">{{ $link->title }}</a></div>
@elseif($link->name === "custom_website" and $link->custom_css != "")
<div style="--delay: {{ $initial++ }}s" class="button-entrance"><a class="button button hvr-grow hvr-icon-wobble-vertical" style="{{ $link->custom_css }}" rel="noopener noreferrer nofollow" href="{{ route('clickNumber') . '/' . $link->id . '/' . $link->link}}" target="_blank"><img alt="button-icon" class="icon hvr-icon" src="http://www.google.com/s2/favicons?domain={{$link->link}}">{{ $link->title }}</a></div>

View File

@ -240,9 +240,7 @@ var button_css = {
@csrf
<div class="form-group col-lg-8">
<textarea style="display: none;" rows="9" type="text" name="custom_css" value="" class="form-control">
color: #FFFFFF;
background-color: #FFFFFF;
background-image: linear-gradient(-135deg,#0f0c29,#302b63,#24243e)
NULL
</textarea>
</div>
<button type="submit" class="mt-3 ml-3 btn btn-info">Reset to default</button>
@ -251,9 +249,9 @@ background-image: linear-gradient(-135deg,#0f0c29,#302b63,#24243e)
<br><br><div id="result" style="left: 1%; position: relative; background-color:#2c2d3a; border-radius: 25px; min-width:300px; max-width:950px; height:300px; box-shadow: 0 10px 20px -10px rgba(0,0,0, 0.6);">
<div style="position: relative; top: 50%; transform: translateY(-50%);">
<h2 align="center" style="color:white">Result:</h2>
@if($custom_css === "" and $buttonId == 1)
@if($custom_css === "" or $custom_css === "NULL" and $buttonId == 1)
<center><div style="--delay: 1s" class="button-entrance"><div class="button-demo button-custom button hvr-grow hvr-icon-wobble-vertical"><img class="icon hvr-icon fa {{$custom_icon}}">{{ $title }}</div></div></center>
@elseif($custom_css === "" and $buttonId == 2)
@elseif($custom_css === "" or $custom_css === "NULL" and $buttonId == 2)
<center><div style="--delay: 1s" class="button-entrance"><div class="button-custom_website button hvr-grow hvr-icon-wobble-vertical"><img class="wicon hvr-icon" src="http://www.google.com/s2/favicons?domain={{$link}}">{{ $title }}</div></div></center>
@elseif($custom_css != "" and $buttonId == 2)
<center><div style="--delay: 1s" class="button-entrance"><div style="{{ $custom_css }}" class="button-custom_website button hvr-grow hvr-icon-wobble-vertical"><img class="wicon hvr-icon" src="http://www.google.com/s2/favicons?domain={{$link}}">{{ $title }}</div></div></center>

View File

@ -0,0 +1,68 @@
@extends('layouts.sidebar')
@section('content')
@foreach($pages as $page)
<h2 class="mb-4"><i class="bi bi-brush"> Select a theme</i></h2>
<form action="{{ route('editTheme') }}" enctype="multipart/form-data" method="post">
@csrf
<br><br><div class="form-group col-lg-8">
<h3>Current theme</h3>
@if(empty($page->theme))
<input type="text" class="form-control" value="default" readonly>
@else
<input type="text" class="form-control" value="{{ $page->theme }}" readonly>
@endif
</div><br>
<div id="result" style="left: 1%; position: relative; background-color:#2c2d3a; border-radius: 25px; min-width:300px; max-width:950px; box-shadow: 0 10px 20px -10px rgba(0,0,0, 0.6);">
<div style="padding:5%5%;">
<h3 align="center" style="color:white">Preview:</h3>
<center><img style="width:95%;max-width:700px;argin-left:1rem!important;" src="@if(file_exists(base_path() . '/themes/' . $page->theme . '/preview.png')){{url('/themes/' . $page->theme . '/preview.png')}}@elseif($page->theme === 'default' or empty($page->theme)){{url('/littlelink/images/themes/default.png')}}@else{{url('/littlelink/images/themes/no-preview.png')}}@endif"></img></center>
</div></div><br>
<div class="form-group col-lg-8">
<h3>Select a theme</h3>
<select class="form-control" name="theme">
<?php if ($handle = opendir('themes')) {
while (false !== ($entry = readdir($handle))) {
if ($entry != "." && $entry != "..") {
echo '<option>'; print_r($entry); echo '</option>'; }}} ?>
<option>default</option>
</select>
</div>
<button type="submit" class="mt-3 ml-3 btn btn-info">Update theme</button>
</form>
</details>
@if(auth()->user()->role == 'admin')
<br><br><br>
<form action="{{ route('editTheme') }}" enctype="multipart/form-data" method="post">
@csrf
<h3>Upload themes</h3>
<div style="display: none;" class="form-group col-lg-8">
<select class="form-control" name="theme">
<option>{{ $page->theme }}</option>
</select>
<br>
</div>
<div class="form-group col-lg-8">
<label>Upload theme</label>
<input type="file" accept=".zip" class="form-control-file" name="zip">
</div>
<div class="row">
<button type="submit" class="mt-3 ml-3 btn btn-info">Upload theme</button>
<button class="mt-3 ml-3 btn btn-primary" title="Download more themes"><a href="https://littlelink-custom.com/themes.php" target="_blank" style="color:#FFFFFF;">Download themes</a></button>
</div>
</form>
</details>
@endif
@endforeach
@endsection

View File

@ -50,6 +50,8 @@ Route::get('/studio/index', [UserController::class, 'index'])->name('studioIndex
Route::get('/studio/add-link', [UserController::class, 'showButtons'])->name('showButtons');
Route::post('/studio/add-link', [UserController::class, 'addLink'])->name('addLink');
Route::get('/studio/links', [UserController::class, 'showLinks'])->name('showLinks');
Route::get('/studio/theme', [UserController::class, 'showTheme'])->name('showTheme');
Route::post('/studio/theme', [UserController::class, 'editTheme'])->name('editTheme');
Route::get('/deleteLink/{id}', [UserController::class, 'deleteLink'])->name('deleteLink');
Route::get('/upLink/{up}/{id}', [UserController::class, 'upLink'])->name('upLink');
Route::get('/studio/edit-link/{id}', [UserController::class, 'showLink'])->name('showLink');

73
themes/galaxy/brands.css vendored Normal file
View File

@ -0,0 +1,73 @@
/* 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%;
}
/* 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%);
}

BIN
themes/galaxy/preview.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 609 KiB

19
themes/galaxy/readme.md Normal file
View File

@ -0,0 +1,19 @@
# A LittleLink Custom Theme
Find more themes: https://github.com/JulianPrieber/llc-themes
* Theme Name: Galaxy
* Theme Version: 1.0
* Theme Date: 2022-05-19
* Theme Author: JulianPrieber
* Theme Author URI: https://github.com/JulianPrieber
* Theme License: GPLv3
### 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/galaxy/share.button.css vendored Normal file
View File

@ -0,0 +1,111 @@
.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;
}
}

821
themes/galaxy/skeleton-auto.css vendored Normal file
View File

@ -0,0 +1,821 @@
/* 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 :) */
@import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap');
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%);
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; }
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;
}

299
themes/mono/brands.css vendored Normal file
View File

@ -0,0 +1,299 @@
/* Table of contents
- Rounded user avatars
- Buttons
- Brand Styles
*/
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
body{
color: white !important;
background-color: #202124 !important;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
display: flex;
flex-direction: column;
border-left: 0;
border-right: 0;
font-family: 'Roboto Mono', monospace !important;
}
/* Rounded avatars
*/
.rounded-avatar {
border-radius: 50%;
}
/* Buttons
*/
.button,
button {
display: inline-block;
margin-bottom: 20px;
padding: 17px;
font-size: 1rem;
font-weight: 500;
border-radius: 5px;
border: dashed white 2px;
text-decoration: none;
color: white !important;
word-wrap: break-word;
width: 300px;
}
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;
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
filter: grayscale(100%);
}
/* Brand Styles
*/
/* Added custom link button*/
.button.button-custom:hover,
.button.button-custom:focus {
filter: brightness(90%) }
/* Default (this is great for your own brand color!) */
.button.button-default:hover,
.button.button-default:focus {
filter: brightness(90%) }
/* VRChat */
.button.button-vrchat:hover,
.button.button-vrchat:focus {
filter: brightness(90%);
}
/* Discord */
.button.button-discord:hover,
.button.button-discord:focus {
filter: brightness(90%) }
/* Facebook */
.button.button-facebook:hover,
.button.button-facebook:focus {
filter: brightness(90%) }
/* Facebook Messenger */
.button.button-messenger:hover,
.button.button-messenger:focus {
filter: brightness(90%) }
/* Figma */
.button.button-figma:hover,
.button.button-figma:focus {
filter: brightness(90%) }
/* Github */
.button.button-github:hover,
.button.button-github:focus {
filter: brightness(90%) }
/* Goodreads */
.button.button-goodreads:hover,
.button.button-goodreads:focus {
filter: brightness(90%) }
/* Instagram */
.button.button-instagram:hover,
.button.button-instagram:focus {
filter: brightness(90%) }
/* Kit */
.button.button-kit:hover,
.button.button-kit:focus {
filter: brightness(90%) }
/* LinkedIn */
.button.button-linkedin:hover,
.button.button-linkedin:focus {
filter: brightness(90%) }
/* Medium */
.button.button-medium:hover,
.button.button-medium:focus {
filter: brightness(90%) }
/* Pinterest */
.button.button-pinterest:hover,
.button.button-pinterest:focus {
filter: brightness(90%) }
/* Producthunt */
.button.button-producthunt:focus {
filter: brightness(90%) }
/* Reddit */
.button.button-reddit:hover,
.button.button-reddit:focus {
filter: brightness(90%) }
/* Skoob */
.button.button-skoob:hover,
.button.button-skoob:focus {
filter: brightness(90%) }
/* Snapchat */
.button.button-snapchat:hover,
.button.button-snapchat:focus {
filter: brightness(90%) }
/* SoundCloud */
.button.button-soundcloud:hover,
.button.button-soundcloud:focus {
filter: brightness(90%) }
/* Spotify */
.button.button-spotify:hover,
.button.button-spotify:focus {
filter: brightness(90%) }
/* Steam */
.button.button-steam:hover,
.button.button-steam:focus {
filter: brightness(90%) }
/* Telegram */
.button.button-telegram:hover,
.button.button-telegram:focus {
filter: brightness(90%) }
/* TikTok */
.button.button-tiktok:hover,
.button.button-tiktok:focus {
filter: brightness(90%) }
/* Tumblr */
.button.button-tumblr:hover,
.button.button-tumblr:focus {
filter: brightness(90%) }
/* Twitch */
.button.button-twitch:hover,
.button.button-twitch:focus {
filter: brightness(90%) }
/* Twitter */
.button.button-twitter:hover,
.button.button-twitter:focus {
filter: brightness(90%) }
/* Vimeo */
.button.button-vimeo:hover,
.button.button-vimeo:focus {
filter: brightness(90%) }
/* YouTube */
.button.button-youtube:hover,
.button.button-youtube:focus {
filter: brightness(90%) }
/* Wordpress */
.button.button-wordpress:hover,
.button.button-wordpress:focus {
filter: brightness(90%) }
/* Bandcamp */
.button.button-bandcamp:hover,
.button.button-bandcamp:focus {
filter: brightness(90%);
}
/* Patreon */
.button.button-patreon:hover,
.button.button-patreon:focus {
filter: brightness(90%);
}
/* Signal */
.button.button-signal:hover,
.button.button-signal:focus {
filter: brightness(90%);
}
/* Venmo */
.button.button-venmo:hover,
.button.button-venmo:focus {
filter: brightness(90%);
}
/* Cash App */
.button.button-cashapp:hover,
.button.button-cashapp:focus {
filter: brightness(90%);
}
/* Gitlab */
.button.button-gitlab:hover,
.button.button-gitlab:focus {
filter: brightness(90%);
}
/* Mastodon */
.button.button-mastodon:hover,
.button.button-mastodon:focus {
filter: brightness(90%);
}
/* PayPal */
.button.button-paypal:hover,
.button.button-paypal:focus {
filter: brightness(90%);
}
/* WhatsApp */
.button.button-whatsapp:hover,
.button.button-whatsapp:focus {
filter: brightness(90%);
}
/* Xing */
.button.button-xing:hover,
.button.button-xing:focus {
filter: brightness(90%);
}
/* Buy Me a Coffee */
.button.button-coffee:hover,
.button.button-coffee:focus {
filter: brightness(90%);
}
/* Custom Website */
.button.button-web:hover,
.button.button-web:focus {
filter: brightness(90%);
}

BIN
themes/mono/preview.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

18
themes/mono/readme.md Normal file
View File

@ -0,0 +1,18 @@
# A LittleLink Custom Theme
Find more themes: https://github.com/JulianPrieber/llc-themes
* Theme Name: Mono
* Theme Version: 1.0
* Theme Date: 2022-05-18
* Theme Author: JulianPrieber
* Theme Author URI: https://github.com/JulianPrieber
* Theme License: GPLv3
### Used assets:
* Built using:
* https://github.com/dhg/Skeleton
* License: MIT
* https://github.com/JulianPrieber/littlelink-mono
* License: MIT

104
themes/mono/share.button.css vendored Normal file
View File

@ -0,0 +1,104 @@
.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;
}
}

176
themes/mono/skeleton-auto.css vendored Normal file
View File

@ -0,0 +1,176 @@
/* Table of contents
- Grid
- Base Styles
- Typography
- Links
- Code
- Spacing
- Utilities
*/
/* Grid
*/
.container {
position: relative;
width: 100%;
max-width: 600px;
text-align: center;
margin: 0 auto;
padding: 0 20px;
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%;
color-scheme: light dark;
}
body {
font-size: 18px;
line-height: 24px;
font-weight: 400;
}
/* 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;
}
a:hover {
color: #0085ff;
}
/* Code
*/
code {
padding: 0.2rem 0.5rem;
margin: 0 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;
}
.credit-icon {
display: none;
}
.credit-text {
color: white !important;
}