tracks/app/assets/stylesheets/tracks-logo.scss
Dan Rice d7d86446c0 Upgrade to Rails 4.2
* Update boilerplate with `bin/rake rails:upgrade`
* Use test instead of test:all rake task
* Change stylesheet extensions from .css.scss to .scss
* Update docs to use localhost instead of 0.0.0.0 because Rails 4.2
  no longer listens on all addresses by default.
2016-05-22 21:58:52 -04:00

24 lines
557 B
SCSS

$logo_color: rgb(214, 55, 64);
.tracks-icon {
font-size: 6.5em;
color: black;
border-radius: 10%;
border: 4px solid $logo_color;
height: 150px;
width: 150px;
padding: 5px;
margin: auto;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.24), 0 2px 3px rgba(0, 0, 0, 0.4);
background: linear-gradient(to bottom, rgb(255, 255, 255), $logo_color 40%);
font-weight: 700;
text-shadow: rgba(255, 255, 255, 0.24) 1px 1px;
position: relative;
}
.tracks-icon-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}