blob: bb2c391117fc27d10d732d8300c6e8bcab986ea6 (
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
|
@use '../../../mixins.scss' as *;
.cw-block-iframe {
.cw-block-content {
iframe {
border: solid thin var(--color--courseware-border-default);
width: calc(100% - 2px);
}
.cw-block-iframe-cc-data {
border: solid thin var(--color--courseware-border-default);
border-top: none;
margin-top: -6px;
padding-top: 10px;
height: 75px;
.cw-block-iframe-cc {
width: 120px;
height: 50px;
margin-left: 4px;
display: inline-block;
background-repeat: no-repeat;
&.cw-block-iframe-cc-by {
background-image: url('#{$image-path}/cc/by.svg');
}
&.cw-block-iframe-cc-by-nc {
background-image: url('#{$image-path}/cc/by-nc.eu.svg');
}
&.cw-block-iframe-cc-by-nc-nd {
background-image: url('#{$image-path}/cc/by-nc-nd.eu.svg');
}
&.cw-block-iframe-cc-by-nc-sa {
background-image: url('#{$image-path}/cc/by-nc-sa.svg');
}
&.cw-block-iframe-cc-by-nd {
background-image: url('#{$image-path}/cc/by-nd.svg');
}
&.cw-block-iframe-cc-by-sa {
background-image: url('#{$image-path}/cc/by-sa.svg');
}
}
.cw-block-iframe-cc-infos {
display: inline-block;
vertical-align: top;
padding-left: 1em;
p {
margin: 0;
}
}
}
}
}
|