Skip to content

Commit 21f3712

Browse files
committed
QOL layout adjustments
1 parent 7633ea6 commit 21f3712

File tree

4 files changed

+20
-7
lines changed

4 files changed

+20
-7
lines changed

RyanMorrisGroupPhoto.jpg

360 KB
Loading

black-paper.png

-79.6 KB
Binary file not shown.

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<meta name="robots" content="index, follow">
1414
<meta property="og:title" content="Ryan Morris - Stand-up Comedy">
1515
<meta property="og:description" content="Ryan Morris is a Niagara based stand-up comedian performing across Southern Ontario. He tracks every set, records everything, and treats comedy like a craft instead of a lottery.">
16-
<meta property="og:image" content="./RyanMorrisHorizontal.jpg">
16+
<meta property="og:image" content="./RyanMorrisGroupPhoto.jpg">
1717
<meta name="twitter:card" content="summary_large_image">
1818
<meta name="twitter:site" content="@RyanMorrisComedy">
1919

@@ -27,7 +27,7 @@
2727

2828
<div class="marquee-container">
2929
<div class="marquee-text">
30-
⚡ RYAN MORRIS COMEDY ⚡ NIAGARA FALLS ⚡ SET COUNT: 80 ⚡ NO CLICKBAIT ⚡ JUST GROWTH ⚡ BUFFALO FAN BILL ⚡SUPPORT LOCAL COMEDY ⚡
30+
⚡ RYAN MORRIS COMEDY ⚡ SET COUNT: 80 ⚡ NO CLICKBAIT ⚡ JUST GROWTH ⚡ LIVE COMEDY ⚡ NIAGARA FALLS ⚡ BUFFALO FAN BILL ⚡ STILL GETTING IT ⚡ SUPPORT LOCAL COMEDY ⚡ CAN I GET A HOYA ⚡ COMICS SUPPORTING FELLOW COMICS
3131
</div>
3232
</div>
3333

style.css

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,36 +6,49 @@ html {
66

77
body {
88
background-color: #008080;
9-
background-image: url('./black-paper.png');
9+
/*background-image: url('./black-paper.png');*/
1010
font-family: "MS Sans Serif", "Courier New", monospace;
1111
padding-bottom: 100px;
1212
/* Extra room for taskbar */
1313
color: #000;
1414
display: flex;
1515
flex-direction: column;
1616
align-items: center;
17+
margin: 0;
1718
}
1819

1920

2021
/* TOP MARQUEE */
2122

2223
.marquee-container {
2324
background: #ff0000;
24-
color: #fff;
25-
padding: 5px;
25+
color: #FFFF00; /* Neon yellow text for contrast */
26+
padding: 10px 0;
2627
font-weight: bold;
2728
border-bottom: 2px solid #000;
2829
width: 100%;
2930
overflow: hidden;
3031
white-space: nowrap;
32+
font-family: 'Comic Sans MS', cursive, sans-serif; /* very 90s vibe */
33+
text-shadow: 1px 1px 2px #000; /* subtle glow/shadow for retro feel */
34+
box-sizing: border-box;
3135
}
3236

3337
.marquee-text {
3438
display: inline-block;
35-
animation: scroll 15s linear infinite;
39+
animation: scrollMarquee 15s linear infinite;
40+
}
41+
42+
@keyframes scrollMarquee {
43+
0% {
44+
transform: translateX(0%);
45+
}
46+
100% {
47+
transform: translateX(-100%);
48+
}
3649
}
3750

38-
@keyframes scroll {
51+
@keyframes scrollLeftRight {
3952
0% {
4053
transform: translateX(100%);
4154
}

0 commit comments

Comments
 (0)