Welcome to mirror list, hosted at ThFree Co, Russian Federation.

terms.scss « page_bundles « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 727cdcf0627943319cdd7903fdb0765344c9533d (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
@import 'mixins_and_variables_and_functions';

.terms {
  .with-system-header &,
  .with-system-header.with-performance-bar &,
  .with-performance-bar & {
    margin-top: 0;
  }

  .terms-fade {
    background: linear-gradient(rgba($white, 0), $white);

    .gl-dark & {
      background: linear-gradient(rgba($gray-900, 0), $gray-900);
    }
  }

  .content {
    padding-top: $gl-padding;
  }

  .gl-card {
    .gl-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      line-height: $line-height-base;

      .nav li {
        float: none;
      }
    }

    .panel-content {
      padding: $gl-padding;

      *:first-child {
        margin-top: 0;
      }

      *:last-child {
        margin-bottom: 0;
      }
    }

    .footer-block {
      margin: 0;
    }
  }
}