Add credit and license

This commit is contained in:
DIVISIONSolar 2023-08-27 03:42:46 -04:00
parent 71a5564852
commit 79720ffe81
No known key found for this signature in database
GPG key ID: CA10B18BED096A06
4 changed files with 47 additions and 1 deletions

21
LICENSE.md Normal file
View file

@ -0,0 +1,21 @@
MIT License
Copyright (c) [2023] [Josh Severo]
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.

View file

@ -1,2 +1,9 @@
# My personal links page
To add links, edit the `links.md` file and follow this format:
```
- Site Name | https://your.site
```
### Please don't remove my credit

View file

@ -10,5 +10,8 @@
</head>
<body>
<div id="links-container"></div>
<footer>
<p>Created by: <a href="https://github.com/DIVISIONSolar/links.joshs.pro" target="_blank">Josh Severo</a></p>
</footer>
</body>
</html>

View file

@ -23,7 +23,7 @@ body {
border-radius: 10px;
text-align: center;
width: 200px;
font-size: 16px;
font-size: 20px;
font-family: 'Abril-Fatface', sans-serif;
position: relative;
}
@ -71,3 +71,18 @@ a {
visibility: visible;
opacity: 1;
}
footer {
position: absolute;
bottom: 10px;
left: 10px;
font-size: 12px;
color: #999;
font-size: 16px;
font-family: 'Abril-Fatface', sans-serif;
}
footer a {
color: #F43F5E;
text-decoration: none;
}