Skip to content

Commit 293b6a4

Browse files
committed
feature: update html page
0 parents  commit 293b6a4

27 files changed

+3596
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.DS_Store

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# OpenWebAgent
2+
3+
This is the repository that contains source code for the OpenWebAgent website.
4+
5+
The design of this website is based on [Nerfies](https://github.com/nerfies/nerfies.github.io).
6+
# Website License
7+
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.

index.html

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

static/css/bulma-carousel.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/css/bulma-slider.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/css/bulma.css.map.txt

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

static/css/bulma.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/css/fontawesome.all.min.css

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/css/index.css

Lines changed: 157 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,157 @@
1+
body {
2+
font-family: 'Noto Sans', sans-serif;
3+
}
4+
5+
6+
.footer .icon-link {
7+
font-size: 25px;
8+
color: #000;
9+
}
10+
11+
.link-block a {
12+
margin-top: 5px;
13+
margin-bottom: 5px;
14+
}
15+
16+
.dnerf {
17+
font-variant: small-caps;
18+
}
19+
20+
21+
.teaser .hero-body {
22+
padding-top: 0;
23+
padding-bottom: 3rem;
24+
}
25+
26+
.teaser {
27+
font-family: 'Google Sans', sans-serif;
28+
}
29+
30+
31+
.publication-title {
32+
}
33+
34+
.publication-banner {
35+
max-height: parent;
36+
37+
}
38+
39+
.publication-banner video {
40+
position: relative;
41+
left: auto;
42+
top: auto;
43+
transform: none;
44+
object-fit: fit;
45+
}
46+
47+
.publication-header .hero-body {
48+
}
49+
50+
.publication-title {
51+
font-family: 'Google Sans', sans-serif;
52+
}
53+
54+
.publication-authors {
55+
font-family: 'Google Sans', sans-serif;
56+
}
57+
58+
.publication-venue {
59+
color: #555;
60+
width: fit-content;
61+
font-weight: bold;
62+
}
63+
64+
.publication-awards {
65+
color: #ff3860;
66+
width: fit-content;
67+
font-weight: bolder;
68+
}
69+
70+
.publication-authors {
71+
}
72+
73+
.publication-authors a {
74+
color: hsl(204, 86%, 53%) !important;
75+
}
76+
77+
.publication-authors a:hover {
78+
text-decoration: underline;
79+
}
80+
81+
.author-block {
82+
display: inline-block;
83+
}
84+
85+
.publication-banner img {
86+
}
87+
88+
.publication-authors {
89+
/*color: #4286f4;*/
90+
}
91+
92+
.publication-video {
93+
position: relative;
94+
width: 100%;
95+
height: 0;
96+
padding-bottom: 56.25%;
97+
98+
overflow: hidden;
99+
border-radius: 10px !important;
100+
}
101+
102+
.publication-video iframe {
103+
position: absolute;
104+
top: 0;
105+
left: 0;
106+
width: 100%;
107+
height: 100%;
108+
}
109+
110+
.publication-body img {
111+
}
112+
113+
.results-carousel {
114+
overflow: hidden;
115+
}
116+
117+
.results-carousel .item {
118+
margin: 5px;
119+
overflow: hidden;
120+
border: 1px solid #bbb;
121+
border-radius: 10px;
122+
padding: 0;
123+
font-size: 0;
124+
}
125+
126+
.results-carousel video {
127+
margin: 0;
128+
}
129+
130+
131+
.interpolation-panel {
132+
background: #f5f5f5;
133+
border-radius: 10px;
134+
}
135+
136+
.interpolation-panel .interpolation-image {
137+
width: 100%;
138+
border-radius: 5px;
139+
}
140+
141+
.interpolation-video-column {
142+
}
143+
144+
.interpolation-panel .slider {
145+
margin: 0 !important;
146+
}
147+
148+
.interpolation-panel .slider {
149+
margin: 0 !important;
150+
}
151+
152+
#interpolation-image-wrapper {
153+
width: 100%;
154+
}
155+
#interpolation-image-wrapper img {
156+
border-radius: 5px;
157+
}

static/images/demo1.png

729 KB
Loading

0 commit comments

Comments
 (0)