use tailwind css's layout for node based start
This commit is contained in:
parent
4b9142148f
commit
f207acad75
7 changed files with 1972 additions and 62 deletions
21
LICENSE
21
LICENSE
|
@ -1,21 +0,0 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2022 Wes Bryie
|
||||
|
||||
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,6 +0,0 @@
|
|||
# personal-site
|
||||
My website! (currently pre-alpha)
|
||||
|
||||
This website is coded in TailWind CSS!
|
||||
|
||||
MIT license.
|
25
index.html
25
index.html
|
@ -1,25 +0,0 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<!--- made by wes bryie -->
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
<link href="styles.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div id="header">
|
||||
<h1 class="text-5xl font-bold text-center nunito mt-2.5">
|
||||
Wes Bryie's Website
|
||||
</h1>
|
||||
</div>
|
||||
<div id="middle">
|
||||
|
||||
</div>
|
||||
<div id="footer" class="text-lg nunito inset-x-0 bottom-0 h-16">
|
||||
<div class="ml-3 align-middle">
|
||||
<p>Made by Wes Bryie. 2022</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
1960
package-lock.json
generated
Normal file
1960
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
5
package.json
Normal file
5
package.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"devDependencies": {
|
||||
"tailwindcss": "^3.0.23"
|
||||
}
|
||||
}
|
10
styles.css
10
styles.css
|
@ -1,10 +0,0 @@
|
|||
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300&display=swap');
|
||||
|
||||
.nunito {
|
||||
font-family: 'Nunito Sans', sans-serif;
|
||||
}
|
||||
#footer {
|
||||
position:absolute;
|
||||
bottom:0;
|
||||
background-color:lightgrey;
|
||||
}
|
7
tailwind.config.js
Normal file
7
tailwind.config.js
Normal file
|
@ -0,0 +1,7 @@
|
|||
module.exports = {
|
||||
content: ["./src/**/*.{html,js}"],
|
||||
theme: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
Loading…
Reference in a new issue