_about_pages.scss 5.46 KB
Newer Older
1
.container.about {
2
  padding: 20px 30px 120px;
3 4 5 6 7 8 9 10 11 12 13 14 15 16

  > nav {
    margin-bottom: 80px;
    text-align: center;
    width: flex-grid(12);

    &::after {
      @extend .faded-hr-divider;
      content: "";
      display: block;
    }

    a {
      border-bottom: 3px solid transparent;
17
      color: $lighter-base-font-color;
18 19
      font-family: $serif;
      font-style: italic;
20 21
      @include inline-block;
      letter-spacing: 1px;
22
      margin: 0px 15px;
23
      padding: 20px 10px;
24
      @include transition(all 0.15s linear 0s);
25
      text-transform: lowercase;
26 27 28 29

      &:hover, &.active {
        border-color: rgb(200,200,200);
        color: $base-font-color;
30
        text-decoration: none;
31 32 33 34 35 36 37 38 39
      }
    }
  }

  .vision {
    h1 + hr {
      margin-bottom: 80px;
    }

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 66 67 68 69 70 71
    .our-mission {
      border-bottom: 1px solid rgb(220,220,220);
      @include clearfix;
      margin: 0 auto 100px;
      padding-bottom: 40px;

      .logo {
        border-right: 1px solid rgb(200,200,200);
        @include box-sizing(border-box);
        float: left;
        height: 115px;
        margin-right: flex-gutter();
        text-align: center;
        width: flex-grid(3);

        > img {
          @include inline-block;
          margin-top: 26px;
          max-height: 60px;
        }
      }

      h2.mission-quote {
        @include box-sizing(border-box);
        float: right;
        font-style: italic;
        line-height: 1.4;
        margin: 0px;
        padding: 5px 0px 5px 20px;
        text-transform: none;
        width: flex-grid(9);
      }
72 73
    }

74
    .message {
75
      border-bottom: 1px solid rgb(220,220,220);
76
      @include clearfix;
77 78
      margin-bottom: 80px;
      padding-bottom: 80px;
79 80 81 82
      position: relative;

      hr {
        bottom: 0px;
83
        display: none;
84 85 86 87 88
        margin: 0px;
        position: absolute;
        width: 100%;
      }

89 90 91 92 93
      h2 {
        border-bottom: 1px solid rgb(200,200,200);
        padding-bottom: 15px;
      }

94
      .photo {
95
        @include box-sizing(border-box);
96 97
        background: rgb(255,255,255);
        border: 1px solid rgb(210,210,210);
98
        margin-top: 37px;
99
        padding: 1px;
100
        width: flex-grid(3);
101 102 103 104 105 106 107 108

        img {
          background: rgb(245,245,245);
          display: block;
          width: 100%;
        }
      }

109
      > article {
110
        @include box-sizing(border-box);
111
        float: left;
112 113
        padding-left: 20px;
        width: flex-grid(9);
114 115
      }

116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
      &.left {
        .photo {
          float: left;
          margin-right: flex-gutter();
        }
      }

      &.right {
        .photo {
          float: right;
          margin-left: flex-gutter();
        }
      }

      &:last-child {
        margin-bottom: 0px;
      }
    }
134 135 136 137 138 139 140 141 142 143 144 145 146

    .partners {
      @include clearfix;

      > article {
        float: left;
        width: flex-grid(6);

        &:first-child {
          margin-right: flex-gutter();
        }
      }
    }
147 148
  }

149 150

  .faq {
151 152 153
    @include clearfix;

    nav.categories {
154
      border: 1px solid rgb(220,220,220);
155 156
      @include box-sizing(border-box);
      float: left;
157 158
      margin-left: flex-gutter();
      padding: 20px;
159 160 161 162 163
      width: flex-grid(3);

      a {
        display: block;
        letter-spacing: 1px;
164
        margin: 0px -20px;
165
        padding: 12px 0px 12px 20px;
166
        text-align: left;
167 168 169

        &:hover {
          background: rgb(245,245,245);
170
          text-decoration: none;
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
        }
      }
    }

    .responses {
      float: left;
      width: flex-grid(9);

      .category {
        padding-top: 40px;

        &:first-child {
          padding-top: 0px;
        }

        > h2 {
          border-bottom: 1px solid rgb(220,220,220);
          margin-bottom: 40px;
          padding-bottom: 20px;
        }
      }

      .response {
        margin-bottom: 40px;

        h3 {
          font-family: $sans-serif;
198
          font-weight: 700;
199
          margin-bottom: 15px;
200
        }
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
      }
    }
  }

  .press {
    .press-story {
      border-bottom: 1px solid rgb(220,220,220);
      @include clearfix;
      margin-bottom: 40px;
      padding-bottom: 40px;

      &:last-child {
        border: none;
        margin: 0px;
        padding: 0px;
      }

      .article-cover {
        background: rgb(255,255,255);
        border: 1px solid rgb(120,120,120);
        @include box-sizing(border-box);
        float: left;
223
        height: 140px;
224 225 226 227 228 229
        margin-right: flex-gutter();
        overflow: hidden;
        width: flex-grid(2);

        img {
          display: block;
230 231
          //min-height: 100%;
          //width: 100%;
232 233 234 235 236 237 238 239
        }
      }

      .press-info {
        float: left;
        width: flex-grid(10);

        header {
240
          margin-bottom: 10px;
241 242 243

          h3 {
            font-family: $sans-serif;
244 245
            font-weight: 700;
            margin-bottom: 5px;
246 247
          }

248 249 250
          span.post-date {
            color: $lighter-base-font-color;
            margin-right: 10px;
251 252 253 254 255 256 257 258 259 260
          }
        }
      }
    }
  }

  .contact {
    @include clearfix;
    margin: 0 auto;

261 262 263 264 265
    .photo {
      @include box-sizing(border-box);
      background: rgb(255,255,255);
      border: 1px solid rgb(210,210,210);
      padding: 1px;
266
      float: left;
267
      width: flex-grid(3);
268 269 270 271

      img {
        max-width: 100%;
      }
272 273
    }

274 275
    .contacts {
      @include box-sizing(border-box);
276
      float: left;
277
      padding-left: 40px;
278
      width: flex-grid(9);
279 280 281 282 283 284 285 286 287 288

      ul {
        list-style: none;
        margin: 0px;
        padding: 0px;

        li {
          margin-bottom: 10px;
        }
      }
289 290
    }
  }
291
}