-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
52 lines (52 loc) · 906 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
html {
box-sizing: border-box;
font-size: 15px;
font-family: Roboto, 'Helvetica Neue', sans-serif;
}
.videoChoice {
cursor: pointer;
height: 20px;
width: 190px;
border: 1px solid black;
padding: 5px;
}
.videoChoice:hover {
background-color: #bcf5bc;
}
.completedVideo:after {
content:'\2713';
display:inline-block;
vertical-align: top;
color:green;
padding:0 6px 0 6px;
}
#noVideoMessage {
font-size: 1.5em;
width:488px;
height:400px;
border: 2px solid black;
display: flex;
align-items: center;
}
#noVideoMessage div {
margin-left:80px;
text-align:center
}
h4 {
margin-bottom: 7px;
}
#videoChoices {
display:flex;
justify-content:space-between;
width:700px;
margin-bottom: 30px;
}
#videoChoices div div {
margin-bottom: 10px;
}
#videoDiv {
margin-left:100px;
}
#video {
display:none;
}