Compare commits

...

3 Commits

Author SHA1 Message Date
Moss Limpert 8baa1d24fb start working on sass for support page 2023-12-06 21:22:12 -05:00
Moss Limpert 832f025300 adjust git settings (enable lfs?) 2023-12-06 21:21:58 -05:00
Moss Limpert 111b2153cf add links and images to support page 2023-12-06 21:21:37 -05:00
3 changed files with 115 additions and 106 deletions

4
.gitattributes vendored
View File

@ -1,2 +1,2 @@
*.woff2 filter=lfs diff=lfs merge=lfs -text *.woff2 filter=lfs diff=lfs merge=lfs -text
*.webp filter=lfs diff=lfs merge=lfs -text *.webp filter=lfs diff=lfs merge=lfs -text

View File

@ -1,94 +1,97 @@
body body
background-color: #10011f background-color: #10011f
grid-template-columns: 500px 1fr grid-template-columns: 500px 1fr
display: grid display: grid
color: white color: white
font-family: "Sitka Small" font-family: "Sitka Small"
padding-top: 30px padding-top: 30px
padding-right: 50px padding-right: 50px
header header
display: grid display: grid
grid-template-rows: 0fr 0fr 1fr grid-template-rows: 0fr 0fr 1fr
text-align: center text-align: center
justify-items: center justify-items: center
padding: 0 40px padding: 0 40px
.subtitle .subtitle
text-transform: uppercase text-transform: uppercase
font-family: "Starstreak" font-family: "Starstreak"
font-size: 16px font-size: 16px
margin-top: 10px margin-top: 10px
nav nav
background-color: #332044 background-color: #332044
display: flex display: flex
flex-direction: column flex-direction: column
gap: 15px gap: 15px
margin-top: 30px margin-top: 30px
width: 100% width: 100%
align-items: center align-items: center
font-size: 1.2em font-size: 1.2em
h3 h3
text-align: center text-align: center
a a
text-align: left text-align: left
width: 180px width: 180px
color: #dbb7ff color: #dbb7ff
&::before &::before
content: "> " content: "> "
main main
padding: 0 40px padding: 0 40px
#panels #panels
display: grid display: grid
grid-template-columns: 1fr 1fr grid-template-columns: 1fr 1fr
gap: 30px gap: 30px
img img
width: 100% width: 100%
nav nav
display: flex display: flex
flex-direction: row flex-direction: row
justify-content: center justify-content: center
gap: 24px gap: 24px
margin: 20px 0 margin: 20px 0
.navsec .navsec
display: flex display: flex
flex-direction: row flex-direction: row
gap: 24px gap: 24px
background-color: #332044 background-color: #332044
padding: 10px 20px padding: 10px 20px
a a
font-size: 2em font-size: 2em
color: #dbb7ff color: #dbb7ff
text-decoration: none text-decoration: none
section section
margin-bottom: 50px margin-bottom: 50px
#description #description
// margin-top: 50px // margin-top: 50px
& > :first-child & > :first-child
font-size: 1.3em font-size: 1.3em
strong strong
color: #dbb7ff color: #dbb7ff
#about #about
background-color: #332044 background-color: #332044
padding: 10px 20px padding: 10px 20px
@font-face img
font-family: Starstreak max-width: 50px
src: url("starstreak.woff2") format("woff2")
@font-face
@font-face font-family: Starstreak
font-family: "Sitka Small" src: url("starstreak.woff2") format("woff2")
@font-face
font-family: "Sitka Small"
src: url("sitka-small.woff2") format("woff2") src: url("sitka-small.woff2") format("woff2")

View File

@ -1,12 +1,18 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<title>Support Me</title> <title>Support Me</title>
<link rel="stylesheet" href="style.css"/> <link rel="stylesheet" href="style.css"/>
<link rel="preload" href="starstreak.woff2" as="font"/> <link rel="preload" href="starstreak.woff2" as="font"/>
<link rel="preload" href="general-station.woff2" as="font"/> <link rel="preload" href="general-station.woff2" as="font"/>
</head> </head>
<body> <body>
<section name="links" id="links">
</body> <span><img src="media/patreon.png" alt="patreon logo">
<a href="https://www.patreon.com/ANANTASHESHA">Patreon</a></span>
<span><img src="media/Bluesky_App_Icon.png" alt="bluesky logo"><a href="https://bsky.app/profile/anantashesha.bsky.social">Bluesky</a></span>
<span><img src="media/X_logo.svg" alt="twitter logo"><a href="https://x.com/_anantashesha_/status/1719637759424385209?s=46">Twitter</a></span>
<span><img src="media/mail-line.svg" alt="email icon"></span>
</section>
</body>
</html> </html>