This commit is contained in:
@@ -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,
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@@ -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);
|
||||||
}
|
}
|
||||||
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user