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

cards.less « src - github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b0fe376fe4a0030a313029323e0c2ac1e35bb3e2 (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
// Cards
.card {
  background: #fff;
  border: .1rem solid @core-border-color;
  border-radius: @border-radius;
  display: block;
  margin: 0;
  padding: 0;
  text-align: left;

  .card-header,
  .card-body,
  .card-footer {
    padding: 1.5rem 1.5rem 0 1.5rem;

    &:last-child {
      padding-bottom: 1.5rem;
    }
  }
  .card-image {
    padding-top: 1.5rem;

    &:first-child {
      padding-top: 0;

      img {
        border-top-left-radius: @border-radius;
        border-top-right-radius: @border-radius;
      }
    }

    &:last-child {
      img {
        border-bottom-left-radius: @border-radius;
        border-bottom-right-radius: @border-radius;
      }
    }
  }
  .card-title {
    font-size: 2rem;
    line-height: 1;
  }
  .card-meta {
    color: @core-meta-color;
    font-size: 1.3rem;
  }
}