Sha256: 7b811fe4933cbb0a8117378191be25e542a5aea1348be4dd32310ea425788022

Contents?: true

Size: 784 Bytes

Versions: 2

Compression:

Stored size: 784 Bytes

Contents

/*  apply a natural box layout model to all elements  for more info: http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html, body {
	height: 100%;
}

body {
	padding-top: 55px;
	font-family: $f-lato;
	font-size: 16px;
	color: $c-text;
	background: $c-body-bg;

	@include transition(margin-left, .3s, cubic-bezier(0.250, 0.460, 0.450, 0.940)); // for mobile menu

	@include bp(large) {
		padding-top: 0;
	}
}

a {
	color: $c-custom-highlight;
	text-decoration: none;

	@include transition(color, .2s);

	&:hover {
		color: $c-text;
	}
}

h1 {
	font-size: 30px;
	color: $c-text-heavy;
}

h2 {
	font-size: 18px;
}

h3 {
	font-size: 14px;
}

img {
	max-width: 100%;
	height: auto;
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fae-rails-1.2.5 app/assets/stylesheets/fae/globals/_base.scss
fae-rails-1.2.4 app/assets/stylesheets/fae/globals/_base.scss