diff --git a/img/bg.jpg b/img/bg.jpg new file mode 100644 index 0000000..7bc6e4a Binary files /dev/null and b/img/bg.jpg differ diff --git a/img/favicon.png b/img/favicon.png new file mode 100644 index 0000000..7ce0eb0 Binary files /dev/null and b/img/favicon.png differ diff --git a/img/pfp.png b/img/pfp.png new file mode 100644 index 0000000..1c55a94 Binary files /dev/null and b/img/pfp.png differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..896ee4d --- /dev/null +++ b/index.html @@ -0,0 +1,42 @@ + + + + + + + Name Nameson | Links + + + + + + + +
+
+
+
+pfp +

Name Nameson

+

bio here...

+ + + +
+ + + + \ No newline at end of file diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..2f62c48 --- /dev/null +++ b/styles.css @@ -0,0 +1,211 @@ +/* Fonts */ +@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); + +.poppins-thin { + font-family: "Poppins", sans-serif; + font-weight: 100; + font-style: normal; +} + +.poppins-extralight { + font-family: "Poppins", sans-serif; + font-weight: 200; + font-style: normal; +} + +.poppins-light { + font-family: "Poppins", sans-serif; + font-weight: 300; + font-style: normal; +} + +.poppins-regular { + font-family: "Poppins", sans-serif; + font-weight: 400; + font-style: normal; +} + +.poppins-medium { + font-family: "Poppins", sans-serif; + font-weight: 500; + font-style: normal; +} + +.poppins-semibold { + font-family: "Poppins", sans-serif; + font-weight: 600; + font-style: normal; +} + +.poppins-bold { + font-family: "Poppins", sans-serif; + font-weight: 700; + font-style: normal; +} + +.poppins-extrabold { + font-family: "Poppins", sans-serif; + font-weight: 800; + font-style: normal; +} + +.poppins-black { + font-family: "Poppins", sans-serif; + font-weight: 900; + font-style: normal; +} + +.poppins-thin-italic { + font-family: "Poppins", sans-serif; + font-weight: 100; + font-style: italic; +} + +.poppins-extralight-italic { + font-family: "Poppins", sans-serif; + font-weight: 200; + font-style: italic; +} + +.poppins-light-italic { + font-family: "Poppins", sans-serif; + font-weight: 300; + font-style: italic; +} + +.poppins-regular-italic { + font-family: "Poppins", sans-serif; + font-weight: 400; + font-style: italic; +} + +.poppins-medium-italic { + font-family: "Poppins", sans-serif; + font-weight: 500; + font-style: italic; +} + +.poppins-semibold-italic { + font-family: "Poppins", sans-serif; + font-weight: 600; + font-style: italic; +} + +.poppins-bold-italic { + font-family: "Poppins", sans-serif; + font-weight: 700; + font-style: italic; +} + +.poppins-extrabold-italic { + font-family: "Poppins", sans-serif; + font-weight: 800; + font-style: italic; +} + +.poppins-black-italic { + font-family: "Poppins", sans-serif; + font-weight: 900; + font-style: italic; +} + + +/* Loader */ + +@keyframes rotation { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); } + +} +#loader-wrapper { + background-color: #212121; + position: fixed; + top: 0; + left: 0; + z-index: 999; + width: 100%; + height: 100%; + text-align: center; +} + +.loader { + width: 40px; + height: 40px; + border: 5px solid #FFFFFF; + border-bottom-color: transparent; + border-radius: 50%; + margin-top:calc(50vh - 20px); + display: inline-block; + box-sizing: border-box; + -webkit-animation: rotation 1s linear infinite; + animation: rotation 1s linear infinite; +} + +/* Actual Site */ + +body { + /* BG Image */ + background-image: url("img/bg.jpg"); + text-align: center; + color: white; + display: flex; + flex-direction: column; + min-height: 100vh; +} + +.container { + background-color: rgba(0, 0, 0, 0.5); + border-radius: 16px; + position: static; + margin: auto; + width: 85%; + min-height: 95vh; + max-height: min-content; + padding: 25px; +} + +h1 { + font-size: 24px; +} +p{ + font-size: 12px; +} + +.pfp { + border-radius: 50%; + height: 128px; + width: 128px; +} + +button { + width: 95%; + height: 50px; + border: 2px solid white; + border-radius: 16px; + background-color: rgba(0, 0, 0, 0.2); + margin: 12px; + transition: 0.5s; +} + +button:hover { + background-color: rgba(0, 0, 0, 0.5); + scale: 1.05; +} + +footer { + background-color: transparent; + margin-top: -0.5em; + padding: 2em; + position: fixed; + left: 50%; + transform:translateX(-50%); + bottom: 0; +} + +a{ + text-decoration: none; + color: white; +} \ No newline at end of file