Init directories and add base CSS.

This commit is contained in:
LiveEmily 2021-07-27 13:51:24 +02:00
parent 7041d01d59
commit 7a622c5e3e
10 changed files with 32 additions and 1 deletions

0
css/about.css Normal file
View File

0
css/contact.css Normal file
View File

17
css/index.css Normal file
View File

@ -0,0 +1,17 @@
body {
background-color: #282828;
}
h1 {
color: #ebdbb2;
text-align: center;
font-size: 55px;
margin-top: 10vh;
}
p {
color: #ebdbb2;
text-align: center;
font-size: 35px;
margin-top: 4vh;
}

0
golang/index.go Normal file
View File

3
index.html Normal file → Executable file
View File

@ -1,6 +1,7 @@
<html>
<head>
<title>Test website!</title>
<title>LiveEmily | Index</title>
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<h1>Hi there!</h1>

0
js/about.js Normal file
View File

0
js/contact.js Normal file
View File

0
js/index.js Normal file
View File

0
php/index.php Normal file
View File

13
readme.md Normal file
View File

@ -0,0 +1,13 @@
# Welcome to the liveemily.com repository!
### This is currently a work in progress website and not functional in the slightest.
### It is not accesible yet at liveemily.com, it currently redirects my gitea instance but this will be changed in the future.
## ToDo
1. [] Default HTML mockup.
1. [] Good CSS integration.
1. [] SASS/SCSS/LESS integration.
1. [] Maybe a little JavaScript? (This is a last resort since I'm horrible with HTML).
1. [] Possible PHP or GoLang integration.
1. [] If all goes well, might have a fully functional webserver written in C#, C++/Rust or even C.
1. [] Make it pretty for god's sake.