This commit is contained in:
amolinae 2025-05-13 20:30:14 -06:00
parent 447a2fb668
commit c2bdc95400
3 changed files with 7 additions and 5 deletions

View file

@ -1,7 +1,8 @@
:root {
--primary-color: #feb938;
--secondary-color: #a3741d;
--card-bg-color: #050505;
--background-color: #000000;
--card-bg-color: #080808;
}
* {
@ -29,7 +30,7 @@
}
body {
background: linear-gradient(0deg, #00020F 0%, #030416 50%, #020322 100%) no-repeat center fixed;
background: var(--background-color);
color: var(--primary-color);
text-shadow: 1px 1px 10px var(--primary-color);
display: flex;
@ -77,6 +78,5 @@ a:hover { color: var(--primary-color); text-shadow: 1px 1px 10px var(--primary-c
.list li { margin-top: 8px; }
@media only screen and (max-width: 600px) {
.card { border: none; box-shadow: none; background: none; }
.card img { width: 150px; height: auto; }
}