aboutsummaryrefslogblamecommitdiffhomepage
path: root/app.scss
blob: da6271d63822d960574b0ce5f6061335f1e2ab88 (plain) (tree)
1
2
3
4
5
6
7
8
9


                          

                      


                                     
                   













                                    
                      
                         






































                                       
             
                    










                              





                                         
                       





















                                                            


                              

     
                

























                                                  
                   
























                                                        

                    
















































                                                        
















                               
 
$primary-color: #3367d6;
$secondary-color: #4285f4;

html { height: 100%; }

body {
  font-family: 'Raleway', sans-serif;
  background-color: #F5F5F5;
  min-height: 100%;

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
    margin-top: 3rem;
    margin-bottom: 1rem;

    .fas, .fab, .far {
      margin-right: 10px;
    }

    span {
      font-weight: bold;
      color: $secondary-color;
    }
  }

  [v-cloak] {
    display: none
  }

  #bighead {
    color: #ffffff;

    .dashboard-title {
      padding: 6px 0 0 80px;
    }

    .first-line {
      height: 100px;
      vertical-align: center;
      background-color: $primary-color;

      h1 {
        margin-top: -12px;
        font-size: 2rem;
      }

      .headline {
        margin-top: 5px;
        font-size: 0.9rem;
      }

      .container {
        height: 80px;
        padding: 10px 0;
      }

      .logo {
        float: left;
        i {
          vertical-align: top;
          padding: 8px 15px;
          font-size: 50px
        }

        img {
          padding: 10px;
          max-height: 70px;
          max-width: 70px;
        }
      }
    }
    .navbar {
      background-color: $secondary-color;

      a {
        color: #ffffff;
        &:hover {
          background-color: lighten( $secondary-color, 5% );
        }
      }
    }
  }

  #main-section {
    margin-bottom: 3rem;
    padding: 0;

    h2 {
      border-bottom: 1px dashed #ccc;
      padding-bottom: 10px;
    }

    .title {
      font-size: 1.1em;
    }

    .subtitle {
      font-size: .9em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .container {
      padding: 1.2rem .75rem;
    }

    .message {
      margin-top: 45px;
      box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1);

      .message-header {
        font-weight: bold;
      }

      .message-body {
        border: none;
      }
    }
  }

  .media-content {
    overflow: inherit;
  }

  .tag {
    color: $secondary-color;
    background-color: $secondary-color;
    position: absolute;
    top: 1rem;
    right: -0.2rem;
    width: 3px;
    overflow: hidden;
    transition: all 0.2s ease-out;
    padding: 0;
  }

  .card {
    border-radius: 5px;
    border: none;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1);
    transition: cubic-bezier(0.165, 0.84, 0.44, 1) 300ms
  }

  .card:hover {
    background-color: #FFFFFF;
    transform: translate(0, -3px);

    .tag {
      width: auto;
      color: #ffffff;
      padding: 0 0.75em;
    }
  }

  .card-content {
    height: 85px;
    padding: 1.3rem;
  }

  .footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 0.5rem;
    text-align: left;
    background-color: #fafafa;
    border-top: 1px solid #F5F5F5;
  }

  .search-bar {
    position: relative;
    #search {
      border: none;
      background-color: lighten( $secondary-color, 6% );
      border-radius: 5px;
      padding: 2px 12px 2px 30px;
      margin: 10px 0;
      transition: all 100ms linear;
      color: #ffffff;
      height: 30px;
      width: 100px;


      &:focus {
        color: #000000;
        width: 250px;
        background-color: #ffffff;
      }
    }

    .search-label::before {
      font-family: 'FontAwesome';
      position: absolute;
      top: 12px;
      left: 8px;
      content: "\f002";
      width: 20px;
      height: 20px;
    }

      &:focus-within .search-label::before {
          color: #4a4a4a;
      }
  }

  .offline-message {
      text-align: center;
      margin: 35px 0;

      i {
        font-size: 2rem;
      }

      i.fa-redo-alt {
        font-size: 1.3rem;
        line-height: 1rem;
        vertical-align: middle;
        cursor: pointer;
        color: #3273dc;
      }
  }

}