Skip to content

Commit 3fe0219

Browse files
New background, add text shadows and tweak ThatStella7922 text opacity
1 parent b514f8c commit 3fe0219

4 files changed

Lines changed: 20 additions & 14 deletions

File tree

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# [Stella's Landing Site](https://thatstel.la)
2-
- Index HTML v2025.0510.0
2+
- Index HTML v2025.0726.0
33
- Main page structure
4-
- Stylesheet v2025.0510.0
4+
- Stylesheet v2025.0726.0
55
- Styling, dark mode, layouts
66
- Quotes JavaScript v2025.0502.0
77
- Handles quotes text under the nav buttons, sometimes does other messages
@@ -13,8 +13,6 @@
1313
- Allows the user to switch between the different views on the site
1414
- NTAS JavaScript v2024.0829.0
1515
- Shows NTAS widget when query string is present (see source)
16-
- BloomRainbow.jpg
17-
- Background image, processed by me & sourced from Windows 11 24H2. Bloom into a new, more colorful tomorrow.
1816

1917
As always, file history in the commits.
2018

index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!DOCTYPE html>
22
<!-- Stella's Landing Site
3-
v2025.0510.0
3+
v2025.0726.0
44
55
https://github.com/ThatStella7922/landing
66
@@ -16,7 +16,7 @@
1616
You can do this by uncommenting the line linking to the local landing-styleshit.css
1717
and then commenting out the link to the remote one!
1818
-->
19-
<link rel="stylesheet" href="//files.thatstel.la/hidden/css/landing-styleshit.css?version=202505100"/>
19+
<link rel="stylesheet" href="//files.thatstel.la/hidden/css/landing-styleshit.css?version=202507260"/>
2020
<!--<link rel="stylesheet" href="landing-styleshit.css">-->
2121

2222
<link rel="shortcut icon" href="landing-assets/favicon.ico" type="image/x-icon"/>
@@ -140,7 +140,7 @@
140140

141141
<footer>
142142
<div id="footer-sidebyside">
143-
<p onclick="manualSetQuotesText()">ThatStella7922 - v2025.0510.0</p>
143+
<p onclick="manualSetQuotesText()">ThatStella7922 - v2025.0726.0</p>
144144
</div>
145145
</footer>
146146

landing-assets/MS-Sapphic.jpg

58.8 KB
Loading

landing-styleshit.css

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ThatStella7922 Landing Website Stylesheet
33
44
mreowww :3
55
6-
v2025.0504.0
6+
v2025.0726.0
77
*/
88

99
/* small css reset because something was causing issues and im too dumb to figure out what it was */
@@ -44,8 +44,8 @@ body:before {
4444
left: -2vw;
4545
width: 104vw;
4646
height: 104vh;
47-
background-image: url('http://thatstel.la/landing-assets/tree.jpg');
48-
background-image: url('//thatstel.la/landing-assets/tree.jpg');
47+
background-image: url('http://thatstel.la/landing-assets/MS-Sapphic.jpg');
48+
background-image: url('//thatstel.la/landing-assets/MS-Sapphic.jpg');
4949
background-size: 100% 100%; /* for older browsers to scale the bg to the viewport */
5050
-webkit-background-size: cover;
5151
-moz-background-size: cover;
@@ -77,11 +77,12 @@ body:before {
7777
padding: 0 env(safe-area-inset-right) 0 env(safe-area-inset-left);
7878
}
7979

80-
/* Move the ThatStella7922 text down */
80+
/* Style the entire thatstella7922 text and profile picture container */
8181
#master #verticalcontainer #abovelinks {
8282
display: block;
83-
margin-top: 15vh;
83+
margin-top: 15vh; /* Move the ThatStella7922 text down */
8484
font-size: 49px;
85+
text-shadow: 0.03em 0.03em 0.1em rgb(79, 64, 77);
8586
}
8687

8788
/* Styling for the main ThatStella7922 text */
@@ -113,6 +114,7 @@ Links Styling
113114
#master #horizontalcontainer .social-links {
114115
max-width: 600px;
115116
display: inline-block;
117+
text-shadow: 0.1em 0.1em 0.4em #000000; /* Shadow for all social link div text */
116118
}
117119
/* Arrangement for the social links */
118120
#master #horizontalcontainer .social-links .social-link-buttons p {
@@ -170,6 +172,7 @@ Contentview Styling
170172
*/
171173
#master #verticalcontainer #contentview-container {
172174
display: grid;
175+
text-shadow: 0.1em 0.1em 0.4em #000000; /* Shadow for all contentview div text */
173176
}
174177
/* Maximum width for the contentview div */
175178
/* This is done so that the contentview section doesn't span across the entire width of the viewport in the case of a wide viewport */
@@ -293,7 +296,7 @@ img.emoji {
293296
@supports (mix-blend-mode: color-dodge) {
294297
#master #verticalcontainer #abovelinks #displayname {
295298
mix-blend-mode: color-dodge;
296-
color: #d9d9d9;
299+
color: #b3b3b3;
297300
}
298301

299302
#backdrop-warning {
@@ -425,12 +428,17 @@ img.emoji {
425428
filter: brightness(0.3);
426429
}
427430

431+
/* Style the entire thatstella7922 text and profile picture container */
432+
#master #verticalcontainer #abovelinks {
433+
text-shadow: 0.03em 0.03em 0.13em rgba(255, 210, 247, 0.407);
434+
}
435+
428436
/* Media query for checking if blending modes are supported
429437
This sets a different color in dark mode if blending is supported*/
430438
@supports (mix-blend-mode: color-dodge) {
431439
#master #verticalcontainer #abovelinks #displayname {
432440
mix-blend-mode: color-dodge;
433-
color: #ededed;
441+
color: #d8d8d8;
434442
}
435443
}
436444
}

0 commit comments

Comments
 (0)