added basic config
This commit is contained in:
parent
6ede150fc6
commit
5266f0562c
|
@ -1,2 +1,6 @@
|
||||||
# slink
|
# slink
|
||||||
Slink is a URL Shortener written in Laravel.
|
Slink is a URL Shortener written in Laravel.
|
||||||
|
|
||||||
|
Users must create an account before they shorten a link, as the account is used to managed the short links.
|
||||||
|
|
||||||
|
This app is customisable via the config located in config/user-config.php
|
|
@ -0,0 +1,7 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
'accent_color' => env('accent_color', '#ff0050'),
|
||||||
|
'footer_left' => env('footer_left', 'Find the repository on <a href="https://github.com/Notoric/slink">GitHub</a>'),
|
||||||
|
'footer_right' => env('footer_right', 'Made by <a href="https://notoric.net">[Notoric]</a>'),
|
||||||
|
];
|
|
@ -142,11 +142,7 @@ header nav a {
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-container button:hover, button[type="submit"]:hover {
|
.form-container button:hover, button[type="submit"]:hover {
|
||||||
box-shadow: 0px 0px 10px 0 #ff005080;
|
box-shadow: 0px 0px 15px -5px var(--primary);
|
||||||
}
|
|
||||||
|
|
||||||
.form-container button:active, button[type="submit"]:active {
|
|
||||||
background-color: #cc0035;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-container .error {
|
.form-container .error {
|
||||||
|
|
|
@ -7,6 +7,11 @@
|
||||||
@yield('head')
|
@yield('head')
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<style>
|
||||||
|
:root {
|
||||||
|
--primary: {{ config('user-config.accent_color') }};
|
||||||
|
}
|
||||||
|
</style>
|
||||||
<header>
|
<header>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<a id="logo" href="/home">[slink]</a>
|
<a id="logo" href="/home">[slink]</a>
|
||||||
|
@ -26,9 +31,14 @@
|
||||||
<main>
|
<main>
|
||||||
@yield('content')
|
@yield('content')
|
||||||
</main>
|
</main>
|
||||||
|
@php
|
||||||
|
$footer = [];
|
||||||
|
$footer['left'] = config('user-config.footer_left');
|
||||||
|
$footer['right'] = config('user-config.footer_right');
|
||||||
|
@endphp
|
||||||
<footer>
|
<footer>
|
||||||
<p>Find the repository on <a href="https://github.com/Notoric/slink">GitHub</a></p>
|
<p>{!! $footer['left'] !!}</p>
|
||||||
<p>Made by <a href="https://notoric.net">[Notoric]</a></p>
|
<p>{!! $footer['right'] !!}</p>
|
||||||
</footer>
|
</footer>
|
||||||
@yield('scripts')
|
@yield('scripts')
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Reference in New Issue