Spaces:
Running
Running
change all black text to bright neon green
Browse files- components/comments-section.js +4 -3
- components/footer.js +4 -4
- components/friend-list.js +2 -2
- components/navbar.js +4 -4
- components/profile-card.js +4 -4
- components/profile-editor.js +2 -2
- style.css +5 -5
components/comments-section.js
CHANGED
|
@@ -8,7 +8,8 @@ class CustomCommentsSection extends HTMLElement {
|
|
| 8 |
padding: 20px;
|
| 9 |
border-radius: 10px;
|
| 10 |
margin-top: 20px;
|
| 11 |
-
|
|
|
|
| 12 |
.comments-header {
|
| 13 |
font-size: 1.2rem;
|
| 14 |
margin-bottom: 15px;
|
|
@@ -55,8 +56,8 @@ class CustomCommentsSection extends HTMLElement {
|
|
| 55 |
}
|
| 56 |
.comment-date {
|
| 57 |
font-size: 0.8rem;
|
| 58 |
-
color: #
|
| 59 |
-
|
| 60 |
}
|
| 61 |
.comment-text {
|
| 62 |
line-height: 1.4;
|
|
|
|
| 8 |
padding: 20px;
|
| 9 |
border-radius: 10px;
|
| 10 |
margin-top: 20px;
|
| 11 |
+
color: #00ff00;
|
| 12 |
+
}
|
| 13 |
.comments-header {
|
| 14 |
font-size: 1.2rem;
|
| 15 |
margin-bottom: 15px;
|
|
|
|
| 56 |
}
|
| 57 |
.comment-date {
|
| 58 |
font-size: 0.8rem;
|
| 59 |
+
color: #00ff00;
|
| 60 |
+
margin-bottom: 5px;
|
| 61 |
}
|
| 62 |
.comment-text {
|
| 63 |
line-height: 1.4;
|
components/footer.js
CHANGED
|
@@ -5,8 +5,8 @@ class CustomFooter extends HTMLElement {
|
|
| 5 |
<style>
|
| 6 |
footer {
|
| 7 |
background-color: #2c3e50;
|
| 8 |
-
color:
|
| 9 |
-
|
| 10 |
margin-top: 2rem;
|
| 11 |
}
|
| 12 |
.footer-container {
|
|
@@ -31,8 +31,8 @@ class CustomFooter extends HTMLElement {
|
|
| 31 |
margin-bottom: 0.5rem;
|
| 32 |
}
|
| 33 |
.footer-section a {
|
| 34 |
-
color: #
|
| 35 |
-
|
| 36 |
}
|
| 37 |
.footer-section a:hover {
|
| 38 |
color: white;
|
|
|
|
| 5 |
<style>
|
| 6 |
footer {
|
| 7 |
background-color: #2c3e50;
|
| 8 |
+
color: #00ff00;
|
| 9 |
+
padding: 2rem 0;
|
| 10 |
margin-top: 2rem;
|
| 11 |
}
|
| 12 |
.footer-container {
|
|
|
|
| 31 |
margin-bottom: 0.5rem;
|
| 32 |
}
|
| 33 |
.footer-section a {
|
| 34 |
+
color: #00ff00;
|
| 35 |
+
text-decoration: none;
|
| 36 |
}
|
| 37 |
.footer-section a:hover {
|
| 38 |
color: white;
|
components/friend-list.js
CHANGED
|
@@ -39,8 +39,8 @@ border-radius: 10px;
|
|
| 39 |
font-weight: bold;
|
| 40 |
}
|
| 41 |
.view-all {
|
| 42 |
-
color: #
|
| 43 |
-
|
| 44 |
cursor: pointer;
|
| 45 |
}
|
| 46 |
.view-all:hover {
|
|
|
|
| 39 |
font-weight: bold;
|
| 40 |
}
|
| 41 |
.view-all {
|
| 42 |
+
color: #00ff00;
|
| 43 |
+
font-size: 0.9rem;
|
| 44 |
cursor: pointer;
|
| 45 |
}
|
| 46 |
.view-all:hover {
|
components/navbar.js
CHANGED
|
@@ -5,8 +5,8 @@ class CustomNavbar extends HTMLElement {
|
|
| 5 |
<style>
|
| 6 |
.navbar {
|
| 7 |
background: linear-gradient(to right, #3b5998, #4a6ea9);
|
| 8 |
-
color:
|
| 9 |
-
|
| 10 |
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
| 11 |
}
|
| 12 |
.nav-container {
|
|
@@ -30,8 +30,8 @@ class CustomNavbar extends HTMLElement {
|
|
| 30 |
gap: 1.5rem;
|
| 31 |
}
|
| 32 |
.nav-links a {
|
| 33 |
-
color:
|
| 34 |
-
|
| 35 |
font-weight: 500;
|
| 36 |
display: flex;
|
| 37 |
align-items: center;
|
|
|
|
| 5 |
<style>
|
| 6 |
.navbar {
|
| 7 |
background: linear-gradient(to right, #3b5998, #4a6ea9);
|
| 8 |
+
color: #00ff00;
|
| 9 |
+
padding: 1rem 2rem;
|
| 10 |
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
| 11 |
}
|
| 12 |
.nav-container {
|
|
|
|
| 30 |
gap: 1.5rem;
|
| 31 |
}
|
| 32 |
.nav-links a {
|
| 33 |
+
color: #00ff00;
|
| 34 |
+
text-decoration: none;
|
| 35 |
font-weight: 500;
|
| 36 |
display: flex;
|
| 37 |
align-items: center;
|
components/profile-card.js
CHANGED
|
@@ -38,8 +38,8 @@ border-radius: 10px;
|
|
| 38 |
margin-bottom: 0.5rem;
|
| 39 |
}
|
| 40 |
.profile-title {
|
| 41 |
-
color: #
|
| 42 |
-
|
| 43 |
margin-bottom: 1rem;
|
| 44 |
}
|
| 45 |
.profile-stats {
|
|
@@ -56,8 +56,8 @@ border-radius: 10px;
|
|
| 56 |
}
|
| 57 |
.stat-label {
|
| 58 |
font-size: 0.8rem;
|
| 59 |
-
color: #
|
| 60 |
-
|
| 61 |
.profile-actions {
|
| 62 |
display: flex;
|
| 63 |
flex-direction: column;
|
|
|
|
| 38 |
margin-bottom: 0.5rem;
|
| 39 |
}
|
| 40 |
.profile-title {
|
| 41 |
+
color: #00ff00;
|
| 42 |
+
font-size: 0.9rem;
|
| 43 |
margin-bottom: 1rem;
|
| 44 |
}
|
| 45 |
.profile-stats {
|
|
|
|
| 56 |
}
|
| 57 |
.stat-label {
|
| 58 |
font-size: 0.8rem;
|
| 59 |
+
color: #00ff00;
|
| 60 |
+
}
|
| 61 |
.profile-actions {
|
| 62 |
display: flex;
|
| 63 |
flex-direction: column;
|
components/profile-editor.js
CHANGED
|
@@ -7,8 +7,8 @@ class CustomProfileEditor extends HTMLElement {
|
|
| 7 |
background: rgba(0,0,0,0.7);
|
| 8 |
padding: 20px;
|
| 9 |
border-radius: 10px;
|
| 10 |
-
color:
|
| 11 |
-
|
| 12 |
}
|
| 13 |
.editor-tabs {
|
| 14 |
display: flex;
|
|
|
|
| 7 |
background: rgba(0,0,0,0.7);
|
| 8 |
padding: 20px;
|
| 9 |
border-radius: 10px;
|
| 10 |
+
color: #00ff00;
|
| 11 |
+
margin: 20px 0;
|
| 12 |
}
|
| 13 |
.editor-tabs {
|
| 14 |
display: flex;
|
style.css
CHANGED
|
@@ -14,8 +14,8 @@ body {
|
|
| 14 |
background-image: url('https://huggingface.co/spaces/mrdreamers/retrospace-blastoff/resolve/main/images/space_disco_bg_by_neonlover.png');
|
| 15 |
background-size: cover;
|
| 16 |
background-attachment: fixed;
|
| 17 |
-
color: #
|
| 18 |
-
|
| 19 |
}
|
| 20 |
/* Custom scrollbar */
|
| 21 |
::-webkit-scrollbar {
|
|
@@ -63,8 +63,8 @@ body {
|
|
| 63 |
.retro-mode .comments-section {
|
| 64 |
background-color: rgba(0, 0, 0, 0.7) !important;
|
| 65 |
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSJyZ2JhKDAsMCwwLDAuNykiPjwvcmVjdD4KPHBhdGggZD0iTTAgNUw1IDBaTTYgNEw0IDZaTS0xIDFMMSAtMVoiIHN0cm9rZT0ibGltZSIgc3Ryb2tlLXdpZHRoPSIxIj48L3BhdGg+Cjwvc3ZnPg==') !important;
|
| 66 |
-
border: 2px solid #
|
| 67 |
-
|
| 68 |
}
|
| 69 |
.retro-mode .profile-banner {
|
| 70 |
background: linear-gradient(to right, #000, #333) !important;
|
|
@@ -77,7 +77,7 @@ background-color: rgba(0, 0, 0, 0.7) !important;
|
|
| 77 |
.retro-mode .footer-section a,
|
| 78 |
.retro-mode .profile-title,
|
| 79 |
.retro-mode .text-gray-500 {
|
| 80 |
-
|
| 81 |
}
|
| 82 |
|
| 83 |
.retro-mode .view-all {
|
|
|
|
| 14 |
background-image: url('https://huggingface.co/spaces/mrdreamers/retrospace-blastoff/resolve/main/images/space_disco_bg_by_neonlover.png');
|
| 15 |
background-size: cover;
|
| 16 |
background-attachment: fixed;
|
| 17 |
+
color: #00ff00;
|
| 18 |
+
background-blend-mode: overlay;
|
| 19 |
}
|
| 20 |
/* Custom scrollbar */
|
| 21 |
::-webkit-scrollbar {
|
|
|
|
| 63 |
.retro-mode .comments-section {
|
| 64 |
background-color: rgba(0, 0, 0, 0.7) !important;
|
| 65 |
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSJyZ2JhKDAsMCwwLDAuNykiPjwvcmVjdD4KPHBhdGggZD0iTTAgNUw1IDBaTTYgNEw0IDZaTS0xIDFMMSAtMVoiIHN0cm9rZT0ibGltZSIgc3Ryb2tlLXdpZHRoPSIxIj48L3BhdGg+Cjwvc3ZnPg==') !important;
|
| 66 |
+
border: 2px solid #00ff00;
|
| 67 |
+
color: #0f0;
|
| 68 |
}
|
| 69 |
.retro-mode .profile-banner {
|
| 70 |
background: linear-gradient(to right, #000, #333) !important;
|
|
|
|
| 77 |
.retro-mode .footer-section a,
|
| 78 |
.retro-mode .profile-title,
|
| 79 |
.retro-mode .text-gray-500 {
|
| 80 |
+
color: #00ff00 !important;
|
| 81 |
}
|
| 82 |
|
| 83 |
.retro-mode .view-all {
|