Skip to content

Commit

Permalink
templates/base: Use a font-style oblique on links
Browse files Browse the repository at this point in the history
  • Loading branch information
illume committed Sep 23, 2023
1 parent a4aa8f6 commit f64df7d
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions pygameweb/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@
text-transform: uppercase;
text-decoration: none;
font-weight: 700;
font-family: 'Press Start 2P', "Helvetica Neue",Helvetica,Arial,sans-serif;
font-family: 'Press Start 2P', "Helvetica Neue",Helvetica,Arial,sans-serif;
font-style: initial;
}

@media screen and (min-width: 768px) {
Expand Down Expand Up @@ -259,6 +260,7 @@
.dark-theme .dropdown-menu > .active > a:focus {
background-color: #080808;
color: #eee;
font-style: initial;
}

.dark-theme .dropdown-header {
Expand Down Expand Up @@ -286,6 +288,7 @@

.dark-theme .navbar-default .navbar-nav>li>a {
color: #fff;
font-style: initial;
}
.dark-theme .navbar-default .navbar-nav>li>a:hover,
.dark-theme .navbar-default .navbar-nav>li>a:focus {
Expand All @@ -298,16 +301,19 @@
.dark-theme .navbar-default .navbar-nav>.open>a:hover {
color: rgb(133, 255, 133);
background-color: #080808;
font-style: initial;
}


.dark-theme .navbar-default .navbar-nav .open .dropdown-menu > li > a {
background-color: #080808;
color: #eee;
font-style: initial;
}
.dark-theme .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
color: rgb(133, 255, 133);
background-color: #080808;
font-style: initial;
}

.dark-theme pre {
Expand Down Expand Up @@ -374,7 +380,8 @@

.dark-theme a {
color: rgb(47, 253, 47);
text-shadow: 1px 1px 1px rgba(0, 255, 0, 0.1);
/* text-shadow: 1px 1px 1px rgba(0, 255, 0, 0.1); */
font-style: oblique;
}

.dark-theme a:hover,
Expand Down

0 comments on commit f64df7d

Please sign in to comment.