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

media.less « src - github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 02c7be513500bce0ffa7360dd87da0fad85b0ea3 (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
// Media
.img-responsive {
  display: block;
  height: auto;
  max-width: 100%;
}

.video-responsive {
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;

  &::before {
    content: "";
    display: block;
    padding-bottom: 56.25%; /* Default 16:9, you can calculate this value by dividing 9 by 16 */
  }

  iframe,
  object,
  embed {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
  }
  video {
    height: auto;
    max-width: 100%;
    width: 100%;
  }
}

.video-responsive-4-3 {
  &::before {
    padding-bottom: 75%; /* 4:3 */
  }
}

.video-responsive-1-1 {
  &::before {
    padding-bottom: 100%; /* 1:1 */
  }
}

.figure {
  margin: 0 0 @layout-padding 0;

  .figure-caption {
    color: @gray-color-dark;
    margin-top: @layout-padding;
  }
}