mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-16 15:20:13 +01:00
* Update boilerplate with `bin/rake rails:upgrade` * Use test instead of test:all rake task * Change stylesheet extensions from .css.scss to .scss * Update docs to use localhost instead of 0.0.0.0 because Rails 4.2 no longer listens on all addresses by default.
41 lines
611 B
SCSS
41 lines
611 B
SCSS
.navbar {
|
|
/* Shows the number of undone next action */
|
|
.badge {
|
|
color: #fff;
|
|
background: #f00;
|
|
display: inline;
|
|
padding: 3px 5px;
|
|
font-size: 12pt;
|
|
height:26px;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.fa {
|
|
line-height: inherit;
|
|
}
|
|
}
|
|
|
|
.footer {
|
|
@include make-xs-column(12);
|
|
@include make-sm-column(10);
|
|
@include make-sm-column-offset(1);
|
|
font-size: 85%;
|
|
text-align: center;
|
|
color: #999;
|
|
margin: 20px 0 5px;
|
|
}
|
|
|
|
.footer-line {
|
|
display: block;
|
|
}
|
|
|
|
form {
|
|
border: 0px none;
|
|
padding: 0;
|
|
}
|
|
|
|
@media screen and (min-width: 1170px) {
|
|
.footer-line {
|
|
display: inline;
|
|
}
|
|
}
|