-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchives.css
83 lines (71 loc) · 1.35 KB
/
archives.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
78
79
80
81
82
.archiveName {
text-align: center;
}
#interviewButton {
margin-top: 2%;
}
audio {
width: 50%;
margin-left: 25%;
margin-right: 25%;
}
.collapsible {
background-color: #efe1b3;
color: #ad4345;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-family: 'Julius Sans One', sans-serif;
font-size: 1.5em;
}
.active, .collapsible:hover {
background-color: #525b73;
}
.content {
padding-left: 1%;
padding-right: 1%;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
background-color: #efe1b3;
}
.collapsible:after {
content: '\02795'; /* Unicode character for "plus" sign (+) */
font-size: 13px;
color: white;
float: right;
margin-left: 5px;
margin-top: 5px;
}
.active:after {
content: "\2796"; /* Unicode character for "minus" sign (-) */
}
#leftVidCol {
width: 49.5%;
float: left;
margin-top: 1.5%;
margin-bottom: 1.5%;
}
#rightVidCol {
width: 49.5%;
float: right;
margin-top: 1.5%;
margin-bottom: 1.5%;
}
.vidContainer {
position: relative;
overflow: hidden;
height: 0;
padding-bottom: 56.25%;
}
.vidContainer iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
max-width: 100%;
}