fathom/assets/sass/_util.scss

48 lines
464 B
SCSS
Raw Normal View History

2016-11-23 20:29:54 +00:00
.pull-right {
float: right;
}
.pull-left {
float: left;
}
.cf:before,
.cf:after {
content: " "; /* 1 */
display: table; /* 2 */
}
.cf:after {
clear: both;
}
.small-margin {
margin-top: 20px;
margin-bottom: 20px;
}
.medium-margin {
margin-top: 40px;
margin-bottom: 40px;
}
.no-margin {
margin: 0 !important;
}
.clear {
clear: both;
}
2016-11-24 15:47:33 +00:00
.big {
font-size: 32px;
}
2016-11-24 15:47:33 +00:00
.muted {
color: #888;
}
.center-text {
text-align: center;
}