_courses.scss 2.18 KB
Newer Older
1
.find-courses, .university-profile {
2
  background: $course-profile-bg;
3
  padding-bottom: 60px;
4

5
  header.search {
6
    background: $course-profile-bg;
7
    background-size: cover;
8
    background-image: $homepage-bg-image;
9
    background-position: center top !important;
10
    border-bottom: 1px solid $border-color-3;
11
    box-shadow: inset 0 -1px 8px 0 rgba(0,0,0, 0.2), inset 0 1px 12px 0 rgba(0,0,0, 0.3);
12
    height: 430px;
13
    margin-top: $header_image_margin;
14 15 16 17 18 19
    width: 100%;

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

26
      > hgroup {
27
        background: #FFF;
28 29
        background: $course-header-bg;
        border: 1px solid $border-color-3;
30
        box-shadow: 0 4px 25px 0 rgba(0,0,0, 0.5);
31
        padding: 20px 30px;
32 33
        position: relative;
        z-index: 2;
Matthew Mongeau committed
34 35
      }

36
      &.main-search, &.university-search {
37
        text-align: center;
38 39

        hgroup {
40
          display: inline-block;
41 42 43
        }

        .logo {
44
          display: inline-block;
45
          @include border-right(1px solid $light-gray);
46
          height: 80px;
47 48
          @include margin-right(30px);
          @include padding-right(30px);
49 50 51 52 53 54
          position: relative;
          vertical-align: middle;

          &::after {
            content: "";
            display: block;
55
            height: 80px;
56 57 58 59 60 61 62 63 64 65 66 67
            position: absolute;
            right: 0px;
            top: 0px;
          }

          img {
            height: 100%;
          }
        }

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

        h1, h2 {
76
          display: inline-block;
77 78 79 80 81
          letter-spacing: 1px;
          margin-bottom: 0px;
          text-shadow: 0 1px rgba(255,255,255, 0.8);
          vertical-align: middle;
        }
Matthew Mongeau committed
82 83 84
      }
    }
  }
85 86

  section.message {
87
    border-top: 1px solid $border-color-2;
88 89 90 91 92
    @include clearfix;
    margin-top: 20px;
    padding-top: 60px;
    @include columns(2 20px);
  }
Matthew Mongeau committed
93
}