forked from h5p/moodle-mod_hvp
-
Notifications
You must be signed in to change notification settings - Fork 3
/
view.css
77 lines (77 loc) · 1.74 KB
/
view.css
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
.content-hub-icon {
font-family: h5p!important;
speak: none;
font-style: normal;
font-weight: 400;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.content-hub-icon:before {
content: "\e93b";
}
.content-hub-options {
font-size: 14px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
align-items: baseline;
color: #333333;
box-shadow: 0 4px 4px -4px #e0e0e0;
z-index: 1;
position: relative;
padding: 1em 0;
}
.content-hub-options > div {
margin-left: 2em;
white-space: nowrap;
}
.content-hub-options > div:first-child {
margin-left: 0;
font-weight: bold;
}
.content-hub-options > div.content-hub-share {
font-weight: normal;
}
.content-hub-options > div:first-child > i {
margin-right: 0.5em;
font-size: 1.25em;
vertical-align: middle;
display: inline-block;
}
.content-hub-options a {
color: #186df7;
}
.content-hub-options a span {
text-decoration: underline;
}
.content-hub-options form {
margin: 0;
}
.content-hub-options .content-hub-sharing {
font-size: 0.917em;
color: #186df7;
}
.content-hub-options .content-hub-sync a:before,
.content-hub-options .content-hub-unshare a:before,
.content-hub-options .content-hub-sharing:before {
font-family: "h5p";
margin-right: 0.5em;
font-size: 0.7em;
line-height: 1;
content: "\e917";
}
.content-hub-options .content-hub-unshare a:before {
content: "\e916";
}
.content-hub-options .content-hub-sharing:before {
content: "\e917";
display: inline-block;
animation: spin 2s linear infinite;
}
@keyframes spin {
from {transform:rotate(0deg);}
to {transform:rotate(360deg);}
}