1
0
mirror of https://github.com/danbee/my-images synced 2025-03-04 08:49:05 +00:00
my-images/app/assets/stylesheets/home.css.scss
Dan Barber 6936911880
Looks of things to make it pretty
* Convert SASS to SCSS
* Dark mode! (no light mode anymore though)
* Pretty GitHub login button
* Media queries to keep thumbnail sizes consistent by changing the
number of grid columns
2018-08-08 10:13:23 -04:00

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;
}