mirror of
https://github.com/SophiaAtkinson/steamwidgets-web.git
synced 2025-06-27 03:57:41 -07:00
Improvements
This commit is contained in:
@ -13,6 +13,37 @@ body {
|
||||
background-color: rgb(25, 40, 55);
|
||||
}
|
||||
|
||||
.navbar {
|
||||
background-color: rgba(255, 255, 255, 0.0);
|
||||
}
|
||||
|
||||
a.navbar-item:hover, a.navbar-item.is-active, .navbar-link:hover, .navbar-link.is-active {
|
||||
background-color: rgba(255, 255, 255, 0.0) !important;
|
||||
color: rgb(180, 180, 180) !important;
|
||||
}
|
||||
|
||||
.navbar-item, .navbar-burger, .navbar-link {
|
||||
color: rgb(190, 190, 190);
|
||||
}
|
||||
|
||||
.navbar-dropdown {
|
||||
background-color: rgb(50, 50, 48);
|
||||
}
|
||||
|
||||
.navbar-item.has-dropdown:hover .navbar-link, .navbar-item.has-dropdown.is-active .navbar-link {
|
||||
background-color: rgba(0, 0, 0, 0.0);
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1087px) {
|
||||
.navbar-menu {
|
||||
background-color: rgb(50, 50, 48);
|
||||
}
|
||||
}
|
||||
|
||||
a.navbar-burger:hover {
|
||||
color: rgb(200, 200, 200);
|
||||
}
|
||||
|
||||
.navbar-start {
|
||||
@media screen and (min-width: 1088px) {
|
||||
flex-grow: 1;
|
||||
@ -41,6 +72,7 @@ body {
|
||||
|
||||
.content-section {
|
||||
padding: 20px;
|
||||
color: rgb(150, 150, 150);
|
||||
}
|
||||
|
||||
.content-centered {
|
||||
|
@ -13,23 +13,23 @@
|
||||
|
||||
<div id="navbarBasicExample" class="navbar-menu">
|
||||
<div class="navbar-start">
|
||||
<a class="navbar-item" href="{{ url('/#steam-app') }}" onclick="document.getElementById('burger-button').click(); return true;">
|
||||
<a class="navbar-item" href="{{ url('/#steam-app') }}" onclick="document.getElementById('burger-button').click(); document.querySelector('[name=steam-app]').scrollIntoView({behavior: 'smooth'}); return false;">
|
||||
Steam App
|
||||
</a>
|
||||
|
||||
<a class="navbar-item" href="{{ url('/#steam-server') }}" onclick="document.getElementById('burger-button').click(); return true;">
|
||||
<a class="navbar-item" href="{{ url('/#steam-server') }}" onclick="document.getElementById('burger-button').click(); document.querySelector('[name=steam-server]').scrollIntoView({behavior: 'smooth'}); return false;">
|
||||
Steam Server
|
||||
</a>
|
||||
|
||||
<a class="navbar-item" href="{{ url('/#steam-user') }}" onclick="document.getElementById('burger-button').click(); return true;">
|
||||
<a class="navbar-item" href="{{ url('/#steam-user') }}" onclick="document.getElementById('burger-button').click(); document.querySelector('[name=steam-user]').scrollIntoView({behavior: 'smooth'}); return false;">
|
||||
Steam User
|
||||
</a>
|
||||
|
||||
<a class="navbar-item" href="{{ url('/#steam-workshop') }}" onclick="document.getElementById('burger-button').click(); return true;">
|
||||
<a class="navbar-item" href="{{ url('/#steam-workshop') }}" onclick="document.getElementById('burger-button').click(); document.querySelector('[name=steam-workshop]').scrollIntoView({behavior: 'smooth'}); return false;">
|
||||
Steam Workshop
|
||||
</a>
|
||||
|
||||
<a class="navbar-item" href="{{ url('/#steam-group') }}" onclick="document.getElementById('burger-button').click(); return true;">
|
||||
<a class="navbar-item" href="{{ url('/#steam-group') }}" onclick="document.getElementById('burger-button').click(); document.querySelector('[name=steam-group]').scrollIntoView({behavior: 'smooth'}); return false;">
|
||||
Steam Group
|
||||
</a>
|
||||
</div>
|
||||
|
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user