Skip to content

Commit 1157124

Browse files
authored
Merge pull request #20 from nianticlabs/mohameds/fmvs_website
Website works
2 parents ed9a142 + f096e8c commit 1157124

24 files changed

+536
-0
lines changed

mvsanywhere/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Webpage for MVSAnywhere.
2+
3+
Code release at https://github.com/nianticlabs/mvsanywhere

mvsanywhere/index.html

Lines changed: 461 additions & 0 deletions
Large diffs are not rendered by default.

mvsanywhere/resources/MVSAnywhere.pdf

24.7 MB
Binary file not shown.

mvsanywhere/resources/favi_1.png

49.2 KB
Loading

mvsanywhere/resources/favi_1.psd

239 KB
Binary file not shown.
804 KB
Loading
556 KB
Loading
Loading
Loading
Loading
Loading
Loading
1.81 MB
Loading

mvsanywhere/resources/paper_thumb.jpg

378 KB
Loading

mvsanywhere/resources/social_card.jpg

347 KB
Loading

mvsanywhere/resources/social_card.psd

3.2 MB
Binary file not shown.

mvsanywhere/resources/teaser copy.psd

2.3 MB
Binary file not shown.

mvsanywhere/resources/teaser.jpg

394 KB
Loading

mvsanywhere/resources/teaser.psd

2.3 MB
Binary file not shown.
47.5 MB
Binary file not shown.
25.8 MB
Binary file not shown.
4.27 MB
Binary file not shown.
40.2 MB
Binary file not shown.

mvsanywhere/style.css

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
h1 {
2+
margin-bottom: 2rem;
3+
}
4+
5+
6+
a {
7+
color: teal;
8+
}
9+
10+
a:hover {
11+
color: rgb(1, 97, 97);
12+
text-decoration: none;
13+
}
14+
15+
hr {
16+
margin-top: 1rem;
17+
margin-bottom: 1rem;
18+
border: 0;
19+
border-top: 3px solid teal;
20+
}
21+
22+
p {
23+
text-align: justify;
24+
/* font-size: 13px; */
25+
font-size:1.2em;
26+
}
27+
28+
td {
29+
font-size: 10px;
30+
padding: 2px;
31+
text-align: center;
32+
}
33+
34+
table {
35+
border-collapse: collapse;
36+
margin-bottom: 1.3em;
37+
width:80%;
38+
}
39+
40+
.current_tab{font-weight: bold;}
41+
42+
.subdued_text{
43+
color: #999999;
44+
margin: 0px 1em 1em 0px;
45+
}
46+
47+
.blank{
48+
height: 2em;
49+
clear: both;
50+
}
51+
52+
.label-info {
53+
background-color: teal;
54+
}
55+
56+
.label-info[href]:hover {
57+
background-color: rgb(1, 97, 97);
58+
}
59+
60+
.video-container {
61+
position: relative;
62+
padding-bottom: calc(56.25% * 0.75); /* 16:9 */
63+
width: 95%;
64+
height: 0;
65+
}
66+
.video-container iframe {
67+
position: absolute;
68+
top: 0%;
69+
left: 2.6%;
70+
width: 100%;
71+
height: 100%;
72+
}

0 commit comments

Comments
 (0)