Remove "screen" from @media rules
This commit is contained in:
parent
fb97c2d813
commit
8e33fa9e98
2
dist/style.css
vendored
2
dist/style.css
vendored
File diff suppressed because one or more lines are too long
@ -1,16 +1,16 @@
|
|||||||
@media screen and (max-width: 768px){
|
@media (max-width: 768px){
|
||||||
.tablet-hide{
|
.tablet-hide{
|
||||||
display:none;
|
display:none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 480px){
|
@media (max-width: 480px){
|
||||||
.mobile-hide{
|
.mobile-hide{
|
||||||
display:none;
|
display:none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 768px){
|
@media (max-width: 768px){
|
||||||
#content{
|
#content{
|
||||||
margin-left:0;
|
margin-left:0;
|
||||||
}
|
}
|
||||||
@ -29,7 +29,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 1400px){
|
@media (min-width: 1400px){
|
||||||
#content{
|
#content{
|
||||||
background:rgba(0,0,0,0.05);
|
background:rgba(0,0,0,0.05);
|
||||||
}
|
}
|
||||||
@ -39,7 +39,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 768px){
|
@media (max-width: 768px){
|
||||||
#copyright{
|
#copyright{
|
||||||
width:85%;
|
width:85%;
|
||||||
display:none;
|
display:none;
|
||||||
@ -50,7 +50,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 480px){
|
@media (max-width: 480px){
|
||||||
#content .sidebar{
|
#content .sidebar{
|
||||||
width:100%;
|
width:100%;
|
||||||
}
|
}
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Small screens
|
// Small screens
|
||||||
@media screen and (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
color: $color-primary-background;
|
color: $color-primary-background;
|
||||||
|
@ -71,7 +71,7 @@
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
display: none;
|
display: none;
|
||||||
width: 60%;
|
width: 60%;
|
||||||
box-shadow: -25px 0px 10px 32px $black;
|
box-shadow: -25px 0px 10px 32px $black;
|
||||||
@ -231,7 +231,7 @@ li ul li a{
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@media screen and (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
#copyright, #postamble {
|
#copyright, #postamble {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user