Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
CaffeineOnIce committed Sep 16, 2024
1 parent 7f0a790 commit 681aa93
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 12 deletions.
File renamed without changes.
48 changes: 36 additions & 12 deletions general.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@font-face {
font-family: 'Iosevka';
src: url('Iosevka.ttf');
src: url('assets/Iosevka.ttf');
}

body {
Expand Down Expand Up @@ -81,8 +81,13 @@ img {
}

@keyframes fade {
from { opacity: .4; }
to { opacity: 1; }
from {
opacity: .4;
}

to {
opacity: 1;
}
}

.codes {
Expand All @@ -94,7 +99,9 @@ img {
left: 12px;
}

li { margin: 10px 0; }
li {
margin: 10px 0;
}

nav {
display: inline-block;
Expand All @@ -116,19 +123,36 @@ ul {
cursor: default;
}

ul:last-of-type { border-right: none; }
ul:last-of-type {
border-right: none;
}

ul:hover { color: #FFFFFF; }
ul:hover {
color: #FFFFFF;
}

ul > li:first-of-type { padding-top: 5px; }
ul>li:first-of-type {
padding-top: 5px;
}

ul > li > a {
ul>li>a {
text-decoration: none;
color: #adadad;
transition: color 0.8s;
}

ul.green > li > a:hover { color: #4FAE0F; }
ul.blue > li > a:hover { color: #0972D6; }
ul.red > li > a:hover { color: #ed3434; }
ul.yellow > li > a:hover { color: #edd934; }
ul.green>li>a:hover {
color: #4FAE0F;
}

ul.blue>li>a:hover {
color: #0972D6;
}

ul.red>li>a:hover {
color: #ed3434;
}

ul.yellow>li>a:hover {
color: #edd934;
}

0 comments on commit 681aa93

Please sign in to comment.