This commit is contained in:
@@ -2,6 +2,7 @@ $themes: (
|
||||
dark: (
|
||||
background: #1e1e1e,
|
||||
background-line: #2e2e2e,
|
||||
background-fore: #0f0f10,
|
||||
border-color: #5a5a5a,
|
||||
text: #ffffff,
|
||||
link: #ff7d74,
|
||||
@@ -9,6 +10,7 @@ $themes: (
|
||||
light: (
|
||||
background: #ffffff,
|
||||
background-line: #f0f0f0,
|
||||
background-fore: #ffffff,
|
||||
border-color: #e0e0e0,
|
||||
text: #1e1e1e,
|
||||
link: #ff7d74,
|
||||
@@ -22,13 +24,9 @@ $themes: (
|
||||
}
|
||||
|
||||
:root {
|
||||
@include theme-vars(map-get($themes, light));
|
||||
}
|
||||
|
||||
[data-theme="dark"] {
|
||||
@include theme-vars(map-get($themes, dark));
|
||||
}
|
||||
|
||||
[data-theme="ocean"] {
|
||||
@include theme-vars(map-get($themes, ocean));
|
||||
[data-theme="light"] {
|
||||
@include theme-vars(map-get($themes, light));
|
||||
}
|
||||
@@ -12,6 +12,8 @@ body {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
|
||||
|
||||
* {
|
||||
color: var(--color-text);
|
||||
font-family: 'Hurmit';
|
||||
@@ -26,8 +28,9 @@ body {
|
||||
|
||||
ul {
|
||||
list-style: none; /* Remove default bullets */
|
||||
margin: 8px 0;
|
||||
}
|
||||
ul > li {padding: 10px 25px} /* Stretching li elements a little so it looks prettier */
|
||||
ul > li {padding: 0px 25px} /* Stretching li elements a little so it looks prettier */
|
||||
li {
|
||||
position: relative;
|
||||
}
|
||||
@@ -37,7 +40,7 @@ li::before {
|
||||
height: 8px;
|
||||
background-color: var(--color-text);
|
||||
position: absolute;
|
||||
top: 16px;
|
||||
top: 6px;
|
||||
left: 4px;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user