cycle_analytics.scss 2.0 KB
Newer Older
F
Fatih Acet 已提交
1
#cycle-analytics {
F
Fatih Acet 已提交
2
  margin: 24px auto 0;
3
  max-width: 800px;
F
Fatih Acet 已提交
4
  position: relative;
F
Fatih Acet 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25

  .panel {

    .content-block {
      padding: 24px 0;
      border-bottom: none;
      position: relative;
    }

    .column {
      text-align: center;

      .header {
        font-size: 30px;
        line-height: 38px;
        font-weight: normal;
        margin: 0;
      }

      .text {
        color: $layout-link-gray;
26
        margin: 0;
F
Fatih Acet 已提交
27
      }
F
Fatih Acet 已提交
28 29 30 31

      &:last-child {
        text-align: right;
      }
F
Fatih Acet 已提交
32 33 34
    }

    .dropdown {
F
Fatih Acet 已提交
35
      top: 13px;
36 37 38 39 40
      
      @media (max-width: $screen-sm-min) {
        right: 15px;
        top: 30px;
      }
F
Fatih Acet 已提交
41 42 43 44 45 46
    }
  }

  .bordered-box {
    border: 1px solid $border-color;
    @include border-radius($border-radius-default);
47
  
F
Fatih Acet 已提交
48 49 50 51 52
  }

  .content-list {
    li {
      padding: 18px $gl-padding $gl-padding;
F
Fatih Acet 已提交
53 54 55 56

      .container-fluid {
        padding: 0;
      }
F
Fatih Acet 已提交
57 58
    }

F
Fatih Acet 已提交
59
    .title-col {
60 61 62 63
      p {
        margin: 0;

        &.title {
F
Fatih Acet 已提交
64 65 66 67
          line-height: 19px;
          font-size: 15px;
          font-weight: 600;
        }
68
        &:text {
69
          color: $cycle-analytics-box-text-color;
F
Fatih Acet 已提交
70 71 72 73
        }
      }
    }

F
Fatih Acet 已提交
74 75
    .value-col {
      text-align: right;
F
Fatih Acet 已提交
76

F
Fatih Acet 已提交
77 78 79
      span {
        line-height: 42px;
      }
F
Fatih Acet 已提交
80
    }
F
Fatih Acet 已提交
81
  }
F
Fatih Acet 已提交
82

F
Fatih Acet 已提交
83
  .landing {
84
    margin-bottom: $cycle-analytics-box-margin-bottom;
F
Fatih Acet 已提交
85
    overflow: hidden;
F
Fatih Acet 已提交
86

F
Fatih Acet 已提交
87 88
    .dismiss-icon {
      position: absolute;
89
      right: $cycle-analytics-box-padding;
F
Fatih Acet 已提交
90
      cursor: pointer;
91
      color: #b2b2b2;
F
Fatih Acet 已提交
92 93
    }

94 95 96 97 98 99 100
    .svg-container {
      text-align: center;
      
      svg {
        width: 136px;
        height: 136px;
      }
F
Fatih Acet 已提交
101
    }
102
    
F
Fatih Acet 已提交
103
    .inner-content {
104 105 106 107 108
      text-align: center;
      
      @media (max-width: $screen-sm-min) {
        padding: 0 28px;
      }
F
Fatih Acet 已提交
109

F
Fatih Acet 已提交
110 111 112 113
      h4 {
        color: $gl-text-color;
        font-size: 17px;
      }
F
Fatih Acet 已提交
114

F
Fatih Acet 已提交
115
      p {
116 117
        color: $cycle-analytics-box-text-color;
        margin-bottom: $cycle-analytics-box-margin-bottom;
F
Fatih Acet 已提交
118
      }
F
Fatih Acet 已提交
119
    }
F
Fatih Acet 已提交
120
  }
F
Fatih Acet 已提交
121

F
Fatih Acet 已提交
122 123 124 125 126 127
  .fa-spinner {
    font-size: 28px;
    position: relative;
    margin-left: -20px;
    left: 50%;
    margin-top: 36px;
F
Fatih Acet 已提交
128
  }
F
Fatih Acet 已提交
129

F
Fatih Acet 已提交
130
}