about summary refs log tree commit diff
path: root/app/assets/stylesheets/application.scss
blob: 91b0d12fe7459b30f8085b06b07e5e570aa1cf37 (plain) (blame)
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
$primary-color: #ff7473;
$secondary-color: #ffc952;
$tertiary-color: #47b8e0;
$quaternary-color: #34314c;
$background-color: #fff;

@import url("https://fonts.googleapis.com/css?family=Noto+Sans:400,700,400italic");
@import "font-awesome-sprockets";
@import "font-awesome";

body {
  font-family: 'Noto Sans', sans-serif;
  background: $secondary-color;
  font-size: 13px;
  line-height: 18px;
  color: $quaternary-color;
}

.container {
  width: 800px;
  margin: 0 auto;
}

.footer {
  text-align: center;
  padding: 100px 0;
  font-size: 12px;
  color: lighten($quaternary-color, 15%);

  .mastodon-link {
    color: $quaternary-color;
    text-decoration: none;
    font-weight: bold;
  }
}


@import 'home';
@import 'profile';