summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/pages/cycle_analytics.scss
blob: 16a9b0eebfcbfcfc96af64be30b6aeece75732d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#cycle-analytics {
  margin-top: 24px;

  .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;
      }
    }

    .dropdown {
      position: relative;
      top: 13px;
    }
  }

  .bordered-box {
    border: 1px solid $border-color;
    @include border-radius($border-radius-default);
    position: relative;
  }

  .content-list {
    li {
      padding: 18px $gl-padding $gl-padding;
    }

    .col-md-10 {
      span {
        &:first-child {
          line-height: 19px;
          font-size: 15px;
          font-weight: 600;
        }
        &:last-child {
          color: #8C8C8C;
        }
      }
    }

    .col-md-2 span {
      line-height: 42px;
    }
  }

  .inner-content {
    width: 450px;
    text-align: center;
    margin: 0 auto;
    padding: 62px 0;

    .btn-block {
      max-width: 130px;
      margin: 0 auto;
    }

    h4 {
      color: $gl-text-color;
      font-size: 17px;
    }

    p {
      color: #8C8C8C;
      margin-bottom: $gl-padding;
    }
  }

  &.waiting {
    .panel .header {
      width: 35px;
      height: 35px;
      margin-bottom: 3px;
    }

    span {
      background-color: #F8F8F8;
      color: #F8F8F8 !important;
      display: inline-block;
      line-height: 13px !important;
    }

    .dropdown {
      opacity: .33;
    }

    .col-md-2 span {
      position: relative;
      top: 11px;
    }

    .fa-spinner {
      font-size: 32px;
      position: absolute;
      left: 50%;
      top: 50%;
      margin: -16px 0 0 -16px;
    }
  }
}