forked from uche-chi/SceneSelect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EarlyInsights.css
114 lines (98 loc) · 1.72 KB
/
EarlyInsights.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
@import url('https://fonts.googleapis.com/css?family=Raleway|Martel+Sans');
html {
scroll-behavior: smooth;
height: 100%;
margin: 0;
}
.headingsContainer {
position: fixed;
top: 15%;
left: 50%;
transform: translate(-50%, -50%);
}
h1 {
font-family: 'Martel Sans', sans-serif;
font-size: 280%;
color: #fff;
text-align: center;
margin-bottom: 18px;
}
h1:hover {
transform: scale(1.05);
color: #44A8DB;
}
h2 {
font-weight: 200;
font-family: 'Raleway', sans-serif;
font-size: 120%;
margin-bottom: 40px;
color: #fff;
text-align: center;
}
h2:hover {
transform: scale(1.005);
color: #b8771d;
}
body {
font-family: "Benton Sans", "Helvetica Neue", sans-serif;
background-color: #1B232F;
background-image: linear-gradient(to bottom, #1B232F 50%, #222222 50%);
text-align: center;
margin: 0px;
padding: 0px;
width: 100%;
height: 100%;
animation: fadein 2s;
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
* {
box-sizing: border-box;
}
.navbarForm {
position: absolute;
top: 15px;
right: 16px;
}
.navbarForm input[type=text] {
padding: 10px;
font-size: 17px;
border: 1px solid grey;
float: left;
width: 80%;
background: #f1f1f1;
}
.navbarForm button {
padding: 10px;
float: right;
width: 20%;
background: #FFA728;
color: white;
font-size: 17px;
border: 1px solid grey;
border-left: none;
cursor: pointer;
}
.navbarForm button:hover {
background: #b8771d;
opacity: 1;
}
.search {
transition: 0.3s;
}
.videoWrapper {
background-color: black;
width: 100%;
position: absolute;
top: 25%;
left: 50%;
transform:translateX(-50%);
}
.bottomCreds {
position: fixed;
top: 95%;
left: 50%;
transform: translate(-50%, -50%);
}