_help.scss 762 Bytes
Newer Older
1 2 3
section.help.main-content {
  padding: lh();

4
  h1 {
5
    border-bottom: 1px solid #ddd;
6
    margin-bottom: lh();
7
    margin-top: 0;
8 9 10
    padding-bottom: lh();
  }

11 12 13 14
  p {
    max-width: 700px;
  }

15 16 17 18 19
  h2 {
    margin-top: 0;
  }

  section.self-help {
20
    float: left;
21
    margin-bottom: lh();
22 23
    margin-right: flex-gutter();
    width: flex-grid(6);
24

25 26 27 28 29 30
    ul {
      margin-left: flex-gutter(6);

      li {
        margin-bottom: lh(.5);
      }
31
    }
32 33 34 35 36 37 38 39
  }

  section.help-email {
    float: left;
    width: flex-grid(6);

    dl {
      display: block;
40
      margin-bottom: lh();
41 42 43 44

      dd {
        margin-bottom: lh();
      }
45

46 47
      dt {
        clear: left;
48 49
        float: left;
        font-weight: bold;
50 51
        width: flex-grid(2, 6);
      }
52 53 54
    }
  }
}