This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
redstoner.com/app/assets/stylesheets/mobi.css.scss
2014-04-28 03:01:33 +02:00

53 lines
786 B
SCSS

/* CSS for Phones only */
@media only screen
and (max-width: 999px)
{
#mobile-info {
background: none repeat scroll 0 0 #ab0000;
color: #fff;
text-align: center;
display: block;
font-size: 0.7em;
}
th, td {
// force tables into line-mode
// it's a bit ugly, but probably the best
// solution for small screens
display: block;
}
#head {
text-align: left;
}
#main-content {
padding: 30px 5px;
}
.editlink {
float: right;
opacity: 1;
margin-right: 0;
}
.item-group {
margin: 30px 0;
&.with-avatar {
margin-left: 0;
.avatar {
float: none;
margin: 0;
border: none;
height: 32px;
width: 32px;
vertical-align: middle;
}
}
}
}