-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
206 lines (177 loc) · 3.9 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
#main-content {
position: fixed;
top: 0;
left:0;
color:aliceblue;
}
#info {
position: absolute;
top: 10px;
width: 100%;
text-align: center;
z-index: 100;
display:block;
}
#canvas {
position: absolute;
top: 0;
left: 0;
}
header{
margin-bottom: 300px;
}
main {
width: 100vw;
position: absolute;
width: 100%;
margin: 0px;
z-index: 99;
padding: 100px 0px;
color: rgb(32, 24, 99);
font-family: 'Audiowide', sans-serif;
}
h1 {
font-family: 'Audiowide', sans-serif;
text-align: center;
color: rgb(221 218 241);
margin-top: 20%;
font-size: 5em;
}
h2 {
text-align: center;
color: rgb(221 218 241);
}
header {
margin-bottom: 300px;
}
blockquote {
text-align: center;
color: rgb(0, 0, 0);
font-family: 'Audiowide', sans-serif;
}
section {
width: 60%;
padding: 20px;
margin: 200px auto;
color:rgb(236, 226, 164);
background-image: linear-gradient(rgba(154, 154, 170, 0.411), rgba(241, 212, 114, 0.349));
box-shadow:
3px 3px 0 #000,
-1px -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000,
1px 1px 0 #000;
}
blockquote {
margin-bottom: 100px;
color: gold;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size: 12px;
}
/* Style the video: 100% width and height to cover the entire window */
#myVideo {
width: 100%;
height: 100%;
right: 0;
bottom: 0;
border: #000;
border-radius: 10px;
}
/* Add some content at the bottom of the video/page */
.content {
position: relative;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
color: #f1f1f1;
padding: 20px;
}
/* Style the button used to pause/play the video */
#myBtn {
width: 148px;
font-size: 10px;
padding: 10px;
border: none;
background: #000;
color: #fff;
cursor: pointer;
position: relative;
}
#myBtn:hover {
background: #ddd;
color: black;
}
#myMute {
width: 148px;
font-size: 10px;
padding: 10px;
border: none;
background: #000;
color: #fff;
cursor: pointer;
position: relative;
}
#myMute:hover {
background: #ddd;
color: black;
}
.card {
/* Add shadows to create the "card" effect */
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
}
/* On mouse-over, add a deeper shadow */
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
/* Add some padding inside the card container */
.container {
padding: 2px 16px;
}
/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
background-color: transparent;
width: 300px;
height: 200px;
perspective: 1000px; /* Remove this if you don't want the 3D effect */
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
border-radius: 5px;
}
/* This container is needed to position the front and back side */
.flip-card-inner {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 0.8s;
transform-style: preserve-3d;
}
/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
transform: rotateY(180deg);
}
/* Position the front and back side */
.flip-card-front, .flip-card-back {
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden; /* Safari */
backface-visibility: hidden;
}
/* Style the front side (fallback if image is missing) */
.flip-card-front {
background-color:none;
align-items: center;
color: black;
}
/* Style the back side */
.flip-card-back {
background-color:#0a1aa8a8;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: small;
color: gold;
filter: grayscale(100%);
align-items: stretch;
transform: rotateY(180deg);
}
#VRButton{ bottom: auto !important; top: 10px; }