44 lines
849 B
SCSS
44 lines
849 B
SCSS
$primary-color: #ff7473;
|
|
$secondary-color: #ffc952;
|
|
$tertiary-color: #47b8e0;
|
|
$quaternary-color: #34314c;
|
|
$background-color: #fff;
|
|
$darker-background-color: #e3dede;
|
|
$text-color: #333030;
|
|
$lighter-text-color: #8b8687;
|
|
|
|
@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: $background-color image-url('background-pattern.png');
|
|
font-size: 13px;
|
|
line-height: 18px;
|
|
color: $text-color;
|
|
}
|
|
|
|
.container {
|
|
width: 800px;
|
|
margin: 0 auto;
|
|
margin-top: 40px;
|
|
}
|
|
|
|
.footer {
|
|
text-align: center;
|
|
padding: 100px 0;
|
|
font-size: 12px;
|
|
color: $text-color;
|
|
|
|
.mastodon-link {
|
|
color: $quaternary-color;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
|
|
@import 'home';
|
|
@import 'profile';
|