mirror of
https://github.com/danbee/my-images
synced 2025-03-04 08:49:05 +00:00
36 lines
660 B
SCSS
36 lines
660 B
SCSS
// Place all the styles related to the home controller here.
|
|
// They will automatically be included in application.css.
|
|
// You can use Sass (SCSS) here: http://sass-lang.com/
|
|
|
|
html {
|
|
background-color: #333333;
|
|
color: white;
|
|
font-size: 100%;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
|
|
Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
|
|
"Segoe UI Symbol";
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
font-weight: normal;
|
|
}
|
|
|
|
a {
|
|
color: #677b83;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
.container {
|
|
padding: 0.5rem 4%;
|
|
max-width: 80rem;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
header {
|
|
background-color: black;
|
|
text-align: right;
|
|
}
|