-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
Showing
7 changed files
with
64 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |