aboutsummaryrefslogtreecommitdiff
path: root/app/assets/sass/_common.scss
blob: 647e9d9b9b92fa12f10fa92d29b667990a5163d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
html {
	height: 100%;
}

body {
	font-size: $font-size-base;
	font-weight: 300;
	color: $text-color;
	height: 100%;
	width: 100%;
	background-color: $bg-color;
	line-height: $line-height-base;
}

strong {
	font-weight: 600;
}

body, input, a, button, textarea {
	font-family: $font-family-sans-serif;
	font-weight: 300;
}

.text-muted {
	color: $text-color-light;
}

.hero-container {
   margin: $padding-lg * 3;
   font-size: $font-size-xl;
   text-align: center;
}

.pull-right {
	float: right;
}

.align-right {
   text-align: right;
}

a {
	color: $link-color;
	text-decoration: none;
}

.fa {
	margin-right: $padding-sm;
}

.clickable {
   cursor: pointer;
}


code {
   font-family: $font-family-mono;
   font-weight: 600;
}