-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
149 lines (133 loc) · 2.31 KB
/
style.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
html {
height: 100%;
}
body {
height: 100%;
margin: 0;
font-family: 'Roboto';
}
.page {
min-height: 100%;
display: flex;
flex-direction: column;
}
.page-body {
margin-top: 20px;
display: flex;
flex-flow: row wrap;
align-items: flex-start;
justify-content: space-around;
flex: 1 0 auto;
}
.page-header a {
display: flex;
align-items: center;
text-decoration: none;
font-family: 'Roboto';
color: black;
}
.page-logo img{
width: 30px;
height: 30px;
margin-right: 5px;
}
.page-header {
display: flex;
flex-flow: row ;
align-items: center;
padding: 1em;
background-color: rgba(93, 103, 94, 0.29);
max-width: 100%;
justify-content: space-between;
}
.page-footer {
padding-top: 1em;
text-align: center;
width: 100%;
}
.header-section {
display: flex;
flex-direction: row;
align-items: center;
padding: 5px 15px;
}
.search-box {
margin-left: 30px;
}
.search-box input {
width: 160px;
font-size: 1em;
border: 1px solid #eeeeee;
border-radius: 5px;
}
.video-player {
margin-left: 1%;
width: 100%;
max-width: 560px;
}
.video-list-container {
min-width: 50%;
margin-left: 1%;
}
.video-list {
display: flex;
flex-flow: column wrap;
align-items: flex-start;
}
.video-row {
width: 100%;
margin-bottom: 3px;
}
.tag-list #title {
font-weight: bold;
margin-right: 2px;
}
.speaker-list #title {
font-weight: bold;
margin-right: 2px;
}
.speaker-list {
display: flex;
align-items: flex-start;
flex-flow: row wrap;
}
.video-row#selected {
font-weight: bold;
}
.video-row:hover {
cursor: pointer;
border-bottom: 1px solid #eeeeee;
}
.videowrapper {
float: none;
clear: both;
width: 100%;
position: relative;
padding-bottom: 56.25%;
padding-top: 25px;
height: 0;
margin-bottom: 5px;
}
.tag, .speaker {
cursor: pointer;
}
.video-selection {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: flex-start;
}
.video-selection h3 {
margin-bottom: 0;
}
.video-selection, .video-player h3 {
margin-bottom: 2em;
}
.videowrapper iframe {
border: 1px solid #eeeeee;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}