-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommon.css
More file actions
61 lines (51 loc) · 756 Bytes
/
common.css
File metadata and controls
61 lines (51 loc) · 756 Bytes
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
* {
margin: 0;
padding: 0;
}
.text-centre {
text-align: center;
}
.header-text {
font-size: 50;
}
.floating-panel {
position: fixed;
margin-left: 20px;
margin-top: 20px;
}
.container {
max-width: 800px;
margin: auto;
padding-left: 20px;
padding-right: 20px;
}
.container img {
margin: auto;
display: block;
max-width: 90%;
}
.video-embed {
width: 100%;
padding-bottom: 56.25%;
height: 0;
position: relative;
}
.video-embed iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.horizontal-bar {
width: 90%;
border-top: 2px solid black;
margin: 10px auto;
}
.grow-on-hover {
transition:transform 0.25s ease;
}
.grow-on-hover:hover {
-webkit-transform:scale(1.03);
transform:scale(1.03);
}