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

blank.scss « framework « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c0224d3bfa9654dde39dac84f5e9daecf2be6515 (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
.blank-state-parent-container {
  display: flex;

  .section-container {
    display: flex;
    flex: 1;
    padding: 10px;
  }

  .section-body {
    width: 100%;
    height: 100%;
    padding-bottom: 25px;
    border: 1px solid $border-color;
    border-radius: $border-radius-default;

    &.section-ee-trial {
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }
}

.blank-state-welcome {
  text-align: center;

  .blank-state-text {
    margin-bottom: 0;
  }
}

.blank-state {
  padding-top: 20px;
  padding-bottom: 20px;
}

.blank-state.ee-trial {
  padding: 20px;
  text-align: center;
}

.blank-state-no-icon {
  padding-top: 40px;
  padding-bottom: 40px;
}

.blank-state-icon {
  padding-bottom: 20px;
  font-size: 56px;

  svg {
    display: block;
    margin: auto;
  }
}

@media (min-width: $screen-sm-max) {
  .section-welcome .blank-state-icon svg {
    width: 130%;
  }
}

.blank-state-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
}

.blank-state-text {
  margin-top: 0;
  margin-bottom: $gl-padding;
  font-size: 14px;

  > strong {
    font-weight: 600;
  }
}

.blank-state-welcome-title {
  font-size: 24px;
}

@media (max-width: $screen-md-min) {
  .blank-state-parent-container {
    &,
    .section-container {
      display: block;
    }
  }

  .blank-state {
    text-align: center;
  }

  .blank-state-icon {
    padding-bottom: 0;
  }

  .blank-state-body {
    margin-top: 15px;
  }
}