Sha256: 5f8980adc82002394c9682a66eb2f27d94e1dbedaf1faee7ddcf5c5be2c55394

Contents?: true

Size: 1.33 KB

Versions: 2

Compression:

Stored size: 1.33 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;

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
sail-1.0.1 app/assets/stylesheets/sail/application.scss
sail-1.0.0 app/assets/stylesheets/sail/application.scss