-
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.
- Loading branch information
1 parent
365d4f5
commit 01fbc5d
Showing
22 changed files
with
203 additions
and
21 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<body> | ||
<section class="hero is-fullheight has-text-centered has-background-black-ter"> | ||
<div class="hero-body"> | ||
<div class="container"> | ||
<h1 class="title is-1 is-uppercase has-text-weight-bold has-text-white"> | ||
{{page.title}} | ||
</h1> | ||
<h3 class="is-uppercase has-text-weight-medium is-marginless has-text-grey-light"> | ||
{{content}} | ||
</h3> | ||
<hr> | ||
<div class="columns is-marginless is-inline-flex-desktop"> | ||
<a href="{{site.url}}{{site.baseurl}}/" | ||
class="button is-white column is-rounded is-outlined is-uppercase has-text-weight-normal">Home</a> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
</body> |
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,39 @@ | ||
<body> | ||
{% include navbar.html %} | ||
<section class="hero is-fullheight"> | ||
<div class="hero-body"> | ||
<div class="container has-text-centered" id="page-section"> | ||
<div class="section"> | ||
<h1 class="title is-1 is-uppercase has-text-weight-bold"> | ||
{{page.title}} | ||
</h1> | ||
<hr class="has-background-black"> | ||
<div class="content is-marginless"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" href="https://api.scyted.tv/links/page-code/style.css"> | ||
<script src="https://api.scyted.tv/links/page-code/script.js"></script> | ||
<script> | ||
const username = "@loydosborne" | ||
</script> | ||
<title>User Page</title> | ||
</head> | ||
<body> | ||
<div id="pagetitle"></div> | ||
<div class="your-mom"> | ||
<div class="header"> | ||
<div class="profile-pic"></div> | ||
<div id="displaytitle"></div> | ||
</div> | ||
<div id="displaylinks"></div> | ||
</div> | ||
</body> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
<!--Footer begins here--> | ||
{% include footer-alt.html %} | ||
</body> |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,26 @@ | ||
--- | ||
layout: links | ||
--- | ||
|
||
<body> | ||
|
||
<link rel="stylesheet" href="https://api.scyted.tv/links/page-code/style.css"> | ||
<script src="https://api.scyted.tv/links/page-code/script.js"></script> | ||
|
||
<div id="pagetitle"></div> | ||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<div id="gfontlink"></div> | ||
|
||
<div class="your-mom"> | ||
|
||
<div class="header"> | ||
<div class="profile-pic"></div> | ||
<div id="displaytitle"></div> | ||
</div> | ||
|
||
<div id="displaylinks"></div> | ||
|
||
</div> | ||
|
||
</body> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 @@ | ||
const username = "@loydosborne" |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,111 @@ | ||
/* Reset default browser styles */ | ||
* { | ||
box-sizing: border-box; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
/* Set body background color */ | ||
body { | ||
background-color: var(--bodybgcolour); | ||
} | ||
|
||
/* Style header section */ | ||
.header { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
margin-top: 20px; | ||
} | ||
|
||
.profile-pic { | ||
width: 80px; | ||
height: 80px; | ||
border-radius: 50%; | ||
background-color: var(--pfpbgcolour); | ||
margin-bottom: 10px; | ||
background-image: var(--profilepic); | ||
background-size: cover; | ||
background-position: center; | ||
} | ||
|
||
.your-mom h1, | ||
.your-mom h2, | ||
.your-mom .link-box { | ||
font-family: 'var(--googlefont)', sans-serif; | ||
color: var(--boldtextcolour); | ||
text-align: center; | ||
} | ||
|
||
.your-mom h1 { | ||
font-size: 24px; | ||
font-weight: bold; | ||
text-align: center; | ||
} | ||
|
||
.your-mom h2 { | ||
font-size: 20px; | ||
font-weight: bold; | ||
text-align: center; | ||
} | ||
|
||
/* Style links section */ | ||
.links { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
gap: 20px; | ||
margin: 20px; | ||
} | ||
|
||
.link-box { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
width: 100%; | ||
height: 120px; | ||
background-color: var(--boxcolour); | ||
border-radius: 10px; | ||
text-align: center; | ||
transition: background-color 0.2s ease; | ||
} | ||
|
||
.link-box:hover { | ||
background-color: var(--boxhovercolour); | ||
} | ||
|
||
.link-icon { | ||
font-size: 36px; | ||
margin-bottom: 10px; | ||
} | ||
|
||
h2 { | ||
font-size: 18px; | ||
font-weight: bold; | ||
text-decoration: none; | ||
text-align: center; | ||
} | ||
|
||
p { | ||
font-size: 15px; | ||
font-family: 'var(--googlefont)', sans-serif; | ||
color: var(--normaltextcolour); | ||
text-align: center; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
} | ||
|
||
title { | ||
display: "test"; | ||
} | ||
|
||
hr.has-background-black { | ||
display: none; | ||
} | ||
|
||
h1.title { | ||
display: none; | ||
} |
File renamed without changes.