_export-git.scss 1.48 KB
Newer Older
1
// studio - views - export to git
Carson Gee committed
2 3
// ====================

4
.view-export-git {
Carson Gee committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25

  // UI: basic layout
  .content-primary, .content-supplementary {
    @include box-sizing(border-box);
    float: left;
  }

  .content-primary {
    width: flex-grid(9,12);
    margin-right: flex-gutter();
  }

  .content-supplementary {
    width: flex-grid(3,12);
  }

  .error-text {
    color: $error-red;
  }

  h3 {
26
    @extend %t-title5;
27
    @extend %t-strong;
Carson Gee committed
28 29
  }

30
  .export-git-info-block {
Carson Gee committed
31 32

    dt {
33
      @extend %t-copy-lead1;
34
      @extend %t-strong;
35
      margin-top: 12px;
Carson Gee committed
36 37 38
    }

    dd {
39
      @extend %t-copy-base;
40
      margin-bottom: $baseline;
Carson Gee committed
41
    }
42

Carson Gee committed
43
    .course_text {
44
        color: $green;
Carson Gee committed
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
    }
    .giturl_text {
      color: $blue;
    }
  }

   // UI: introduction
  .introduction {

    .title {
      @extend %cont-text-sr;
    }
  }

 // UI: export controls
60
  .export-git-controls {
Carson Gee committed
61 62 63 64 65 66 67 68
    @include box-sizing(border-box);
    @extend %ui-window;
    padding: $baseline ($baseline*1.5) ($baseline*1.5) ($baseline*1.5);

    .title {
      @extend %t-title4;
    }

69
    .action-export-git {
Carson Gee committed
70 71 72 73 74 75 76 77 78
      @extend %btn-primary-blue;
      @extend %t-action1;
      display: block;
      margin: $baseline 0;
      padding: ($baseline*0.75) $baseline;
    }

    .action {

79
      .icon {
Carson Gee committed
80 81 82 83 84 85 86 87 88 89
        @extend %t-icon2;
        display: inline-block;
        vertical-align: middle;
        margin-right: ($baseline/4);
      }

      .copy {
        display: inline-block;
        vertical-align: middle;
      }
90
    }
Carson Gee committed
91 92
  }
}