Better now
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 1m12s

This commit is contained in:
2026-03-12 00:51:08 +01:00
parent 4c561738c4
commit 81d72aba1c
3 changed files with 16 additions and 4 deletions

View File

@@ -4,12 +4,14 @@ $themes: (
background-line: #2e2e2e, background-line: #2e2e2e,
border-color: #5a5a5a, border-color: #5a5a5a,
text: #ffffff, text: #ffffff,
link: #ff7d74,
), ),
light: ( light: (
background: #ffffff, background: #ffffff,
background-line: #f0f0f0, background-line: #f0f0f0,
border-color: #e0e0e0, border-color: #e0e0e0,
text: #1e1e1e, text: #1e1e1e,
link: #ff7d74,
) )
); );

View File

@@ -28,9 +28,19 @@ ul {
list-style: none; /* Remove default bullets */ list-style: none; /* Remove default bullets */
} }
ul > li {padding: 10px 25px} /* Stretching li elements a little so it looks prettier */ ul > li {padding: 10px 25px} /* Stretching li elements a little so it looks prettier */
li {
position: relative;
}
li::before { li::before {
content: ""; content: "";
width: 16px; width: 8px;
height: 16px; height: 8px;
background-color: #d050ff; background-color: var(--color-text);
position: absolute;
top: 16px;
left: 4px;
}
a {
color: var(--color-link);
} }

View File

@@ -6,7 +6,7 @@
<p>Hi, I'm Aran!</p> <p>Hi, I'm Aran!</p>
<p>Welcome to my website! It is still under construction, so come back later!</p> <p>Welcome to my website! It is still under construction, so come back later!</p>
<ul> <ul>
<li>Hello</li> <li>You can view my resume <a href="https://cv.aranroig.com">here</a></li>
</ul> </ul>
</Container> </Container>
</template> </template>