_courses.scss 2.07 KB
Newer Older
1 2 3
.find-courses, .university-profile {
  background: rgb(252,252,252);
  padding-bottom: 60px;
4

5
  header.search {
6
    background: rgb(240,240,240);
7 8 9
    background-size: cover;
    border-bottom: 1px solid rgb(100,100,100);
    @include box-shadow(inset 0 -1px 8px 0 rgba(0,0,0, 0.2), inset 0 1px 12px 0 rgba(0,0,0, 0.3));
10
    height: 430px;
11
    margin-top: -69px;
12 13 14 15 16 17
    width: 100%;

    .inner-wrapper {
      height: 120px;
      margin: 0 auto;
      max-width: 1200px;
18
      min-width: 760px;
19
      padding-top: 200px;
20
      position: relative;
21
      text-align: center;
22 23
      width: flex-grid(12);

24
      > hgroup {
25
        background: #FFF;
26
        background: rgba(255,255,255, 0.93);
27 28 29
        border: 1px solid rgb(100,100,100);
        @include box-shadow(0 4px 25px 0 rgba(0,0,0, 0.5));
        padding: 20px 30px;
30 31
        position: relative;
        z-index: 2;
Matthew Mongeau committed
32 33
      }

34
      &.main-search, &.university-search {
35
        text-align: center;
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65

        hgroup {
          @include inline-block;
        }

        .logo {
          @include inline-block;
          height: 80px;
          margin-right: 30px;
          padding-right: 30px;
          position: relative;
          vertical-align: middle;

          &::after {
            @extend .faded-vertical-divider;
            content: "";
            display: block;
            height: 80px;
            position: absolute;
            right: 0px;
            top: 0px;
          }

          img {
            height: 100%;
          }
        }

        h1 {
          color: $base-font-color;
66 67 68
          font-family: $sans-serif;
          font-style: italic;
          font-weight: 800;
69
          letter-spacing: 0px;
70 71 72 73 74 75 76 77 78 79
          text-transform: none;
        }

        h1, h2 {
          @include inline-block;
          letter-spacing: 1px;
          margin-bottom: 0px;
          text-shadow: 0 1px rgba(255,255,255, 0.8);
          vertical-align: middle;
        }
Matthew Mongeau committed
80 81 82
      }
    }
  }
83 84 85 86 87 88 89 90

  section.message {
    border-top: 1px solid rgb(220,220,220);
    @include clearfix;
    margin-top: 20px;
    padding-top: 60px;
    @include columns(2 20px);
  }
Matthew Mongeau committed
91
}