-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
30cca80
commit 4c24b77
Showing
4 changed files
with
325 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/*HIDING THE DESKTOP CODE ON MOBILE*/ | ||
@media (max-width: 767px) { | ||
#main { | ||
display:none; | ||
} | ||
#mainmobile{ | ||
display:revert; | ||
} | ||
#minicircle{ | ||
display:none; | ||
} | ||
|
||
.elem img{ | ||
display: none; | ||
} | ||
} | ||
|
||
/*MODIFYING THE DESKTOP ELEMENTS*/ | ||
@media (max-width: 767px) { | ||
.menu { | ||
font-size: 14px !important; | ||
} | ||
} | ||
|
||
/* CSS FOR MOBILE ONLY ELEMENTS */ | ||
|
||
.mobile-banner{ | ||
background-color: rgba(255,255,255,0.8); | ||
color:black; | ||
text-align: center; | ||
padding: 12px; | ||
margin-bottom: 10px; | ||
font-size: 14px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.