Skip to content

Commit

Permalink
Webpage now is webpage
Browse files Browse the repository at this point in the history
I worked on designing the webpage
I didn't finish the 2nd text box because I'm too tired and I literally can't think
  • Loading branch information
popdxo authored May 8, 2024
1 parent d6a2480 commit 082afeb
Show file tree
Hide file tree
Showing 7 changed files with 64 additions and 3 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# popd.site

This is the WIP source code for popd.site

The website itself isn't public but feel free to use any of the source code here.

If you plan to use anything from this project, note that I'm using this project to learn HTML and CSS so it's likely that there are way better ways to design this site.
If you plan to use anything from this project, note that I'm using this project to learn HTML and CSS so it's likely that there are way better ways to design this site.
Binary file added fonts/Comfortaa-VariableFont_wght.ttf
Binary file not shown.
Binary file added images/aurora.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions images/credit
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
popd.png - Designed in 30 seconds in Inkscape
aurora.jpg - Image by Noel Bauza from Pixabay - https://pixabay.com/photos/aurora-northern-lights-1197753/
Binary file added images/popd.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
45 changes: 45 additions & 0 deletions index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
@font-face {
font-family: Comfortaa;
src: url(/fonts/Comfortaa-VariableFont_wght.ttf);
}

body {
background-color: rgb(27, 27, 27);
}
h1 {
color: rgb(255, 255, 255);
text-align: center;

font-family: "Comfortaa", sans-serif;
font-weight: 800;
margin:auto;
}
#introdiv {
margin: 10px;
padding: 120px;
background-image: url(/images/aurora.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
#introtext {

margin: 0 10%;
text-align: center;
color: white;
font-family: "Comfortaa", sans-serif;
font-weight: 500;
font-size: 4vw;
}
.frostedglass {
background-color: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(10px);
border: solid rgba(0, 0, 0, 0);
border-radius: 2vw;
padding: 1vw;
}
#gitlink {
font-family: "Comfortaa", sans-serif;
color:aqua;
background-position: center;
}
16 changes: 16 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="index.css">
<link rel="icon" type="image/x-icon" href="/images/popd.png">
<title>popd.site</title>
</head>

<body>
<h1>popd.site</h1>
<div id="introdiv">
<P class="frostedglass" id="introtext">A WIP site made to learn more web development</P>
<a href="https://github.com/Sharkmouth-Sucks/popd.site" class="frostedglass" id="gitlink">Github<a>
</div>
</body>
</html>

0 comments on commit 082afeb

Please sign in to comment.