Skip to content

Commit

Permalink
Adjusted stats number sizes and added parsley comment fix
Browse files Browse the repository at this point in the history
  • Loading branch information
clash99 committed Nov 2, 2016
1 parent 3615447 commit 8e09f12
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 4 deletions.
19 changes: 17 additions & 2 deletions cadasta/core/static/css/main.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 22 additions & 1 deletion cadasta/core/static/css/single.scss
Original file line number Diff line number Diff line change
Expand Up @@ -204,15 +204,36 @@
border-right: solid 1px $table-border-color;
text-align: center;
.num {
font-size: 48px;
font-size: 28px;
font-size: 2.4vw;
font-weight: 600;
font-family: $font-family-sans-serif-alt;
letter-spacing: -1px;
}
&:last-child {
border-right: none;
}
}
}

@media (max-width: $screen-md-min) {
.stats li .num {
font-size: 36px;
}
}

@media (max-width: $screen-sm-min) {
.stats li .num {
font-size: 28px;
}
}

@media (max-width: $screen-xs-min) {
.stats li .num {
font-size: 21px;
}
}

/* =Map location details in right column
-------------------------------------------------------------- */

Expand Down
2 changes: 1 addition & 1 deletion cadasta/core/static/js/parsley.js
Original file line number Diff line number Diff line change
Expand Up @@ -2352,4 +2352,4 @@ function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr

return parsley;
});
//# sourceMappingURL=parsley.js.map
// sourceMappingURL=parsley.js.map

0 comments on commit 8e09f12

Please sign in to comment.