forked from blindsidenetworks-ps/moodle-mod_bigbluebuttonbn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
30 lines (27 loc) · 775 Bytes
/
styles.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
.recording-thumbnail {
border: 1px solid #ddd;
border-radius: 4px;
padding: 0 0 0 0;
transition: transform .2s; /* Animation */
width: 113px;
height: 64px;
}
.recording-thumbnail:hover {
box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
transform: scale(2.0); /* (200% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
-ms-transform: scale(2.0); /* Internet Explorer 9 */
-moz-transform: scale(2.0); /* Firefox */
-webkit-transform: scale(2.0); /* Safari and Chrome */
-o-transform: scale(2.0); /* Opera */
position: relative;
display: block;
z-index: 999;
}
.fa-disabled {
cursor: not-allowed;
opacity: 0.2;
}
.fa-invisible {
cursor: not-allowed;
visibility: hidden;
}