-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from danielduggin2/feature/UTCT-11-sleeky-fron…
…tend UTCT-11: Added Sleeky Frontend and Backend Assets.
- Loading branch information
Showing
32 changed files
with
14,710 additions
and
103 deletions.
There are no files selected for viewing
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// Font Imports | ||
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans&display=swap'); | ||
|
||
$open-sans: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; | ||
$montserrat: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; | ||
|
||
// Bootstrap Overrides | ||
$enable-negative-margins: true; | ||
$font-family-sans-serif: $open-sans; | ||
$input-btn-font-family: $montserrat; | ||
$headings-font-family: $montserrat; | ||
$input-bg: #ebebeb; | ||
$input-font-weight: 700; | ||
$btn-font-weight: 700; | ||
$input-border-width: 0; | ||
$border-radius: 6px; | ||
|
||
// Bootstrap Imports | ||
@import '../../node_modules/bootstrap/scss/bootstrap.scss'; | ||
|
||
// Custom Styles | ||
.bold-link { | ||
font-family: $montserrat; | ||
font-weight: 700; | ||
text-transform: uppercase; | ||
} | ||
|
||
@include media-breakpoint-down(md) { | ||
.input-group-block { | ||
input, button { | ||
width: 100%; | ||
border-radius: $border-radius !important; | ||
} | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<?php | ||
// CONFIG - These control the look and details on your site. Consult documentation for more details. | ||
|
||
// GENERAL | ||
|
||
// Page title for your site | ||
define('title', 'Sleeky theme for YOURLS'); | ||
|
||
// The short title of your site, used in the footer and in some sub pages | ||
define('shortTitle', 'Sleeky'); | ||
|
||
// A description of your site, shown on the homepage. | ||
define('description', 'A quick description on why your site is so fantastic, what it does and why people should definitely start using it. Oh, and how it’s free.'); | ||
|
||
// The favicon for your site | ||
define('favicon', '/frontend/assets/img/favicon.ico'); | ||
|
||
// Logo for your site, displayed on home page | ||
define('logo', '/frontend/assets/img/logo-black.png'); | ||
|
||
// Enable reCAPTCHA V3 | ||
// It is highly recommended you use reCAPTCHA V3. It will stop spam. You can get a site and secret key from here: https://www.google.com/recaptcha/admin/create | ||
define("enableRecaptcha", false); | ||
|
||
// reCAPTCHA V3 Site Key | ||
define("recaptchaV3SiteKey", 'YOUR_SITE_KEY_HERE'); | ||
|
||
// reCAPTCHA V3 Secret Key | ||
define("recaptchaV3SecretKey", 'YOUR_SECRET_KEY_HERE'); | ||
|
||
// Enables the custom URL field | ||
// true or false | ||
define('enableCustomURL', true); | ||
|
||
// Optional | ||
// Set a primary colour to be used. Default: #007bff | ||
// Here are some other colours you could try: | ||
// #f44336: red, #9c27b0: purple, #00bcd4: teal, #ff5722: orange | ||
define('colour', '#007bff'); | ||
|
||
// Optional | ||
// Set a background image to be used. | ||
// default: unsplash.com random daily photo of the day | ||
// More possibilities of photo embedding from unsplash could be found at: https://source.unsplash.com | ||
// define('backgroundImage', 'https://source.unsplash.com/daily'); | ||
|
||
// FOOTER | ||
|
||
// These are the links in the footer. Add a new link for each new link. | ||
// The array follows a title link structure: | ||
// "TITLE" => "LINK", | ||
$footerLinks = [ | ||
"About" => "https://sleeky.flynntes.com/", | ||
"Contact" => "https://yourls.org/", | ||
"Legal" => "https://yourls.org/", | ||
"Admin" => "/admin" | ||
]; | ||
|
||
?> |
Oops, something went wrong.