-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (64 loc) · 1.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
/*myVideo css to make vid cover whole screen */
#myVideo {
object-fit: cover;
width: 100vw;
height: 100vh;
position: absolute;
top: 0;
left: 0;
}
/*container is centering and displaying text placing it on top of video*/
.container {
position: absolute;
text-align: center;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
color: black;
top: 20%;
left: 50%;
transform: translate(-50%, -20%);
}
h1 {
font-size: 58px;
font-weight:600;
}
h2 {
font-size: 40px;
font-style: italic;
text-shadow: 2px 2px brown;
color: #ff8300;
}
#extras, p {
font-size: 20px;
font-style:normal;
text-shadow: none;
color: black;
}
input, #searchBox {
box-sizing: border-box;
border: 4px solid #ff8300;
border-radius: 4px;
background-position: 2px 2px;
background-repeat: no-repeat;
padding: 10px 10px 10px 10px;
}
.button {
background-color: #ff8300;
border: none;
border-radius: 4px;
color: white;
padding: 10px 10px 10px 10px;
text-decoration: none;
display: inline-block;
font-size: 15px;
margin: 4px 2px;
transition-duration: 0.4s;
cursor: pointer;
}
.button:hover {
background-color: #ff8300;
color: black;
}
.msg404 {
font-weight: bolder;
color: yellow;
}