Sha256: 81fc08092621e222873996c45b339e770ab5a0f7f636678258b29d4956f0cf3e

Contents?: true

Size: 1.41 KB

Versions: 1

Compression:

Stored size: 1.41 KB

Contents

/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 *= require_tree .
 *= require_self
 */

@import "colors";

html, body {
  height: 100vh;
  margin: 0;
  padding: 0;
  background-color: $cerulean;
  font-family: 'Roboto', sans-serif;
}

.title {
  text-align: center;
}

.clearfix {
  clear: both;
}

#nav-bar {
  background-color: $lead;
  color: white;
  padding: 25px;

  .title {
    margin: 0;
  }
}

#pagination {
  text-align: center;

  a {
    color: $main_black;
    text-decoration: none;
    background-color: white;
    padding: 15px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);

    &.active {
      background-color: $tangerine;
      color: white;
    }
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sail-1.1.0 app/assets/stylesheets/sail/application.scss