Add credit and license
This commit is contained in:
parent
71a5564852
commit
79720ffe81
4 changed files with 47 additions and 1 deletions
21
LICENSE.md
Normal file
21
LICENSE.md
Normal 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.
|
||||||
|
|
@ -1,2 +1,9 @@
|
||||||
# My personal links page
|
# 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
|
||||||
|
|
@ -10,5 +10,8 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="links-container"></div>
|
<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>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
17
style.css
17
style.css
|
|
@ -23,7 +23,7 @@ body {
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
width: 200px;
|
width: 200px;
|
||||||
font-size: 16px;
|
font-size: 20px;
|
||||||
font-family: 'Abril-Fatface', sans-serif;
|
font-family: 'Abril-Fatface', sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
@ -71,3 +71,18 @@ a {
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
opacity: 1;
|
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;
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue