-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add /attributions.html, restyle pages, add captions for image credits
- Loading branch information
1 parent
4cac160
commit 7953507
Showing
8 changed files
with
270 additions
and
26 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,71 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Attributions | NotEssential Gallery</title> | ||
<link rel="stylesheet" type="text/css" href="./css/attributions.css"> | ||
</head> | ||
<body> | ||
<h1>Attributions</h1> | ||
<p>This page lists the attributions and credits for contributors to the NotEssential gallery.</p> | ||
|
||
<div class="maintainer"> | ||
<h2>KTrain5369</h2> | ||
<p>Main maintainer of the gallery.</p> | ||
<div class="social-buttons"> | ||
<button onclick="toggleSocials('ktrain-bsky')">Bluesky</button> | ||
<button onclick="toggleSocials('ktrain-github')">GitHub</button> | ||
<button onclick="toggleSocials('ktrain-website')">Website</button> | ||
</div> | ||
<div class="social-info" id="ktrain-bsky"> | ||
<p>Bluesky: <a href="https://bsky.app/profile/ktrain5369.bsky.social" target="_blank">https://bsky.app/profile/ktrain5369.bsky.social</a></p> | ||
</div> | ||
<div class="social-info" id="ktrain-github"> | ||
<p>GitHub: <a href="https://github.com/KTrain5169" target="_blank">https://github.com/KTrain5169</a></p> | ||
</div> | ||
<div class="social-info" id="ktrain-website"> | ||
<p>Website: <a href="https://ktrain5169.github.io/" target="_blank">https://ktrain5169.github.io/</a></p> | ||
</div> | ||
</div> | ||
|
||
<div class="contributor"> | ||
<h2>maskers</h2> | ||
<div class="social-buttons"> | ||
<button onclick="toggleSocials('maskers-github')">GitHub</button> | ||
</div> | ||
<div class="social-info" id="maskers-github"> | ||
<p>GitHub: <a href="https://github.com/maskersss" target="_blank">https://github.com/maskersss</a></p> | ||
</div> | ||
</div> | ||
|
||
<div class="contributor"> | ||
<h2>blryface</h2> | ||
<p>A maintainer of the main NotEssential site</p> | ||
<div class="social-buttons"> | ||
<button onclick="toggleSocials('blryface-github')">GitHub</button> | ||
<button onclick="toggleSocials('blryface-website')">Website</button> | ||
</div> | ||
<div class="social-info" id="blryface-github"> | ||
<p>GitHub: <a href="https://github.com/maskersss" target="_blank">https://github.com/maskersss</a></p> | ||
</div> | ||
<div class="social-info" id="blryface-website"> | ||
<p>Website: <a href="https://blurry.gay/" target="_blank">https://blurry.gay/</a></p> | ||
</div> | ||
</div> | ||
|
||
<!-- Add more attributions similarly --> | ||
|
||
<script> | ||
// Function to toggle visibility of the social info boxes | ||
function toggleSocials(id) { | ||
var element = document.getElementById(id); | ||
if (element.style.display === "none" || element.style.display === "") { | ||
element.style.display = "block"; | ||
} else { | ||
element.style.display = "none"; | ||
} | ||
} | ||
</script> | ||
</body> | ||
</html> |
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
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,114 @@ | ||
/* General Page Styling */ | ||
body { | ||
font-family: 'Arial', sans-serif; | ||
background-color: #1c1c1c; /* Dark background to match site theme */ | ||
color: #f0f0f0; /* Light text color */ | ||
padding: 20px; | ||
margin: 0; | ||
} | ||
|
||
h1, h2 { | ||
text-align: center; | ||
color: #008cff; /* Blue accent color */ | ||
font-size: 2em; | ||
} | ||
|
||
p { | ||
line-height: 1.6; | ||
color: #cccccc; | ||
font-size: 1.1em; | ||
text-align: center; | ||
} | ||
|
||
/* Attribution section styling */ | ||
.maintainer { | ||
margin-bottom: 30px; | ||
padding: 20px; | ||
border: 1px solid #00F; | ||
background-color: #292929; /* Matching the dark theme */ | ||
border-radius: 10px; | ||
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6); | ||
max-width: 700px; | ||
margin: 20px auto; | ||
text-align: center; | ||
} | ||
|
||
.contributor { | ||
margin-bottom: 30px; | ||
padding: 20px; | ||
border: 1px solid #333; | ||
background-color: #292929; | ||
border-radius: 10px; | ||
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6); | ||
max-width: 700px; | ||
margin: 20px auto; | ||
text-align: center; | ||
} | ||
|
||
h2 { | ||
color: #008cff; /* Blue accent color for person names */ | ||
} | ||
|
||
.social-buttons { | ||
margin-top: 10px; | ||
} | ||
|
||
.social-buttons button { | ||
background-color: #008cff; /* Blue for buttons */ | ||
color: #fff; | ||
border: none; | ||
padding: 10px 20px; | ||
margin: 5px; | ||
cursor: pointer; | ||
border-radius: 5px; | ||
font-size: 1em; | ||
transition: background-color 0.3s ease; | ||
} | ||
|
||
.social-buttons button:hover { | ||
background-color: #0076d1; /* Slightly darker blue on hover */ | ||
} | ||
|
||
.social-info { | ||
display: none; | ||
background-color: #2f2f2f; | ||
padding: 15px; | ||
border-radius: 5px; | ||
margin-top: 10px; | ||
color: #cccccc; | ||
transition: opacity 0.3s ease; | ||
} | ||
|
||
.social-info a { | ||
color: #008cff; | ||
text-decoration: none; | ||
} | ||
|
||
.social-info a:hover { | ||
color: #0076d1; | ||
text-decoration: underline; | ||
} | ||
|
||
/* Mobile and responsive adjustments */ | ||
@media (max-width: 768px) { | ||
body { | ||
padding: 10px; | ||
} | ||
|
||
.person { | ||
padding: 15px; | ||
} | ||
|
||
h1 { | ||
font-size: 1.8em; | ||
} | ||
|
||
h2 { | ||
font-size: 1.5em; | ||
} | ||
|
||
.social-buttons button { | ||
font-size: 0.9em; | ||
padding: 8px 15px; | ||
} | ||
} |
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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