Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix missing class rule for main image and charcoal menus for mobile view #6

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
10 changes: 8 additions & 2 deletions i2p2www/static/styles/duck/mobile.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
--i2plightgreen: #709fa6;
--i2pctablue: #00ffff;
--i2pgrey: #333333;
--i2pbggrey: #9e9e9e;
--i2pcharcoal: #4c4c4c
}

#topbar .title {
Expand All @@ -19,7 +21,7 @@
#cssmenu > ul {
width: 100%;
float: none;
background-color: #abcc71; /* change the menu color */
background-color: var(--i2pcharcoal); /* change the menu color */
background-image: -webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,.2));
background-image: -moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,.2));
background-image: -ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,.2));
Expand Down Expand Up @@ -120,7 +122,7 @@ div#content .main {
padding: 4em 10%
}

.main img.routerconsole {
.main img.home_splash_image {
float: left;
left: 10%;
margin-bottom: 1em;
Expand Down Expand Up @@ -164,3 +166,7 @@ div#content .inner {
#global-footer .aside.fifth {
margin-left: 0
}

#footermenu ul {
list-style: none;
}