style help button and help modal

This commit is contained in:
Ezra 2021-04-30 15:23:48 -05:00
parent 7fb92e4b6b
commit b90c3cc458
2 changed files with 70 additions and 0 deletions

View File

@ -7,6 +7,8 @@
@import "components/table";
@import "components/help";
#page_header {
margin-bottom: 0;
/* background-image: url("/assets/images/banner_bkg.png"); */

View File

@ -0,0 +1,68 @@
#help-button-desktop {
background-color: lightgray;
margin: 10px;
width: 1.5em;
height: 1.5em;
border-radius: 100%;
text-align: center;
float: right;
font-weight: 900;
font-size:1.5em;
display:block;
cursor:pointer;
}
#help-button-desktop:hover {
background-color: white;
}
#help-button-mobile:hover {
background-color:darkgrey;
}
@media only screen and (min-width: 991.97px) {
a #help-button-mobile {
display:none;
visibility: hidden;
}
.desktop-img {
background-image: url(desk.jpg);
width:100%;
height:851px;
max-height:100%;
background-repeat: no-repeat;
background-size: contain;
}
}
@media only screen and (max-width: 991.98px) {
a #help-button-mobile {
background-color: lightgray;
margin: 10px;
width: 1.5em;
height: 1.5em;
border-radius: 100%;
text-align: center;
float: right;
font-weight: 900;
font-size:1.5em;
display:block;
}
a #help-button-desktop {
display:none;
visibility: hidden;
}
.mobile-img {
background-image: url(mobile.png);
width:100%;
height:1348px;
background-repeat: no-repeat;
background-size: contain;
}
}