|
|
|
|
|
body { |
|
|
background-color: #000; |
|
|
color: #fff; |
|
|
font-family: Arial, sans-serif; |
|
|
margin: 0; |
|
|
padding: 0; |
|
|
line-height: 1.6; |
|
|
} |
|
|
.container { |
|
|
width: 70%; |
|
|
margin: 0 auto; |
|
|
padding: 20px; |
|
|
} |
|
|
section { |
|
|
margin: 50px 0; |
|
|
border-bottom: 1px solid #555; |
|
|
padding-bottom: 20px; |
|
|
} |
|
|
section:last-child { |
|
|
border-bottom: none; |
|
|
} |
|
|
h1 { |
|
|
font-size: 3.6rem; |
|
|
line-height: 1.2; |
|
|
text-align: center; |
|
|
color: #fff; |
|
|
text-shadow: 0 0 2px #ff9900, 0 0 4px #ff9900, 0 0 6px #ffdd00; |
|
|
margin-bottom: 40px; |
|
|
} |
|
|
h2 { |
|
|
font-size: 2.0rem; |
|
|
text-align: center; |
|
|
} |
|
|
p { |
|
|
font-size: 1.2rem; |
|
|
} |
|
|
.highlight { |
|
|
font-weight: bold; |
|
|
color: #00ffc8; |
|
|
background-color: #333; |
|
|
padding: 3px 3px; |
|
|
border-radius: 5px; |
|
|
} |
|
|
|
|
|
.authors { |
|
|
color: #67f19e; |
|
|
text-align: center; |
|
|
margin: 5px 0; |
|
|
} |
|
|
|
|
|
.institute { |
|
|
color: #82cff3; |
|
|
text-align: center; |
|
|
margin: 5px 0; |
|
|
} |
|
|
|
|
|
.accept { |
|
|
font-size: 1.6rem; |
|
|
color: #ffffff; |
|
|
text-align: center; |
|
|
margin: 5px 0; |
|
|
} |
|
|
|
|
|
|
|
|
.links { |
|
|
text-align: center; |
|
|
margin-top: 60px; |
|
|
} |
|
|
.links a { |
|
|
display: inline-flex; |
|
|
align-items: center; |
|
|
margin: 0 10px; |
|
|
text-decoration: none; |
|
|
font-size: 1.2rem; |
|
|
color: #8be4e3; |
|
|
border: 1px solid #8be4e3; |
|
|
padding: 5px 10px; |
|
|
border-radius: 5px; |
|
|
} |
|
|
.links a:link { |
|
|
color: #8be4e3; |
|
|
} |
|
|
.links a:visited { |
|
|
color: #8be4e3; |
|
|
} |
|
|
.links a:hover { |
|
|
background-color: #8be4e3; |
|
|
color: #000; |
|
|
} |
|
|
.links a .icon { |
|
|
margin-right: 5px; |
|
|
} |
|
|
.links a .custom-icon { |
|
|
width: 16px; |
|
|
height: 16px; |
|
|
} |
|
|
|
|
|
|
|
|
.highlight a { |
|
|
color: #00ffc8; |
|
|
background-color: #333; |
|
|
padding: 3px 5px; |
|
|
border-radius: 5px; |
|
|
text-decoration: underline; |
|
|
} |
|
|
.highlight a:visited { |
|
|
color: #00ffc8; |
|
|
} |
|
|
|
|
|
|
|
|
#acknowledgements .highlight a, |
|
|
#training-data .highlight a { |
|
|
color: #00ffc8; |
|
|
background-color: #333; |
|
|
padding: 3px 5px; |
|
|
border-radius: 5px; |
|
|
text-decoration: underline; |
|
|
} |
|
|
#acknowledgements .highlight a:visited, |
|
|
#training-data .highlight a:visited { |
|
|
color: #00ffc8; |
|
|
} |
|
|
|
|
|
|
|
|
.video-container { |
|
|
width: 100%; |
|
|
display: flex; |
|
|
flex-direction: column; |
|
|
align-items: center; |
|
|
position: relative; |
|
|
} |
|
|
|
|
|
.video-wrapper-16-9 { |
|
|
width: 100%; |
|
|
margin: 20px 0; |
|
|
position: relative; |
|
|
background-color: black; |
|
|
overflow: hidden; |
|
|
padding: 0; |
|
|
} |
|
|
.video-wrapper-16-9 iframe { |
|
|
width: 100%; |
|
|
height: 100%; |
|
|
border: none; |
|
|
aspect-ratio: 16 / 9; |
|
|
} |
|
|
|
|
|
.video-wrapper-1-1 { |
|
|
width: 50%; |
|
|
margin: 0; |
|
|
position: relative; |
|
|
background-color: white; |
|
|
overflow: visible; |
|
|
border: 5px solid white; |
|
|
box-sizing: border-box; |
|
|
} |
|
|
.video-wrapper-1-1 video { |
|
|
width: 100%; |
|
|
height: auto; |
|
|
display: block; |
|
|
} |
|
|
|
|
|
.video-mesh-container { |
|
|
position: relative; |
|
|
width: 100%; |
|
|
padding-top: 50%; |
|
|
overflow: hidden; |
|
|
} |
|
|
|
|
|
|
|
|
.video-mesh-container video { |
|
|
position: absolute; |
|
|
top: 0; |
|
|
left: 0; |
|
|
width: 100%; |
|
|
height: 100%; |
|
|
object-fit: cover; |
|
|
} |
|
|
|
|
|
.controls { |
|
|
position: absolute; |
|
|
top: 50%; |
|
|
left: 0; |
|
|
right: 0; |
|
|
width: 100%; |
|
|
display: flex; |
|
|
justify-content: space-between; |
|
|
transform: translateY(-50%); |
|
|
z-index: 10; |
|
|
padding: 0 60px; |
|
|
box-sizing: border-box; |
|
|
} |
|
|
.button { |
|
|
width: 0; |
|
|
height: 0; |
|
|
border-style: solid; |
|
|
cursor: pointer; |
|
|
z-index: 1; |
|
|
opacity: 0.7; |
|
|
transition: opacity 0.3s; |
|
|
position: absolute; |
|
|
top: 50%; |
|
|
transform: translateY(-50%); |
|
|
} |
|
|
.button:hover { |
|
|
opacity: 1; |
|
|
} |
|
|
.button.left { |
|
|
border-width: 60px 30px 60px 0; |
|
|
border-color: transparent #ffffff transparent transparent; |
|
|
left: -60px; |
|
|
} |
|
|
.button.right { |
|
|
border-width: 60px 0 60px 30px; |
|
|
border-color: transparent transparent transparent #ffffff; |
|
|
right: -60px; |
|
|
} |
|
|
.thumbnail { |
|
|
width: 15vh; |
|
|
height: 15vh; |
|
|
object-fit: cover; |
|
|
cursor: pointer; |
|
|
background-color: #ddd; |
|
|
} |
|
|
.video-thumbnails { |
|
|
display: flex; |
|
|
justify-content: center; |
|
|
flex-wrap: wrap; |
|
|
gap: 0; |
|
|
} |
|
|
#reference-thumbnail { |
|
|
cursor: pointer; |
|
|
width: 15vh; |
|
|
height: 15vh; |
|
|
object-fit: cover; |
|
|
} |
|
|
.subtitle { |
|
|
font-size: 1rem; |
|
|
margin-top: -10px; |
|
|
margin-bottom: 20px; |
|
|
text-align: center; |
|
|
} |
|
|
|
|
|
.video-wrapper-other { |
|
|
width: 90%; |
|
|
max-width: 2048px; |
|
|
position: relative; |
|
|
background-color: white; |
|
|
overflow: visible; |
|
|
border: 5px solid white; |
|
|
box-sizing: border-box; |
|
|
} |
|
|
.video-wrapper-other video { |
|
|
width: 100%; |
|
|
height: 100%; |
|
|
object-fit: contain; |
|
|
} |
|
|
|
|
|
#title { |
|
|
position: relative; |
|
|
overflow: hidden; |
|
|
display: flex; |
|
|
align-items: center; |
|
|
justify-content: center; |
|
|
height: 100vh; |
|
|
width: 100%; |
|
|
padding: 0; |
|
|
margin: 0; |
|
|
} |
|
|
#background-video { |
|
|
position: absolute; |
|
|
top: 50%; |
|
|
left: 50%; |
|
|
transform: translate(-50%, -50%); |
|
|
width: 100%; |
|
|
height: auto; |
|
|
object-fit: cover; |
|
|
object-position: center; |
|
|
opacity: 0.9; |
|
|
z-index: -1; |
|
|
background-color: black; |
|
|
} |
|
|
.title-content { |
|
|
position: relative; |
|
|
z-index: 1; |
|
|
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7); |
|
|
max-width: 90%; |
|
|
margin: 0 auto; |
|
|
text-align: center; |
|
|
padding: 0 20px; |
|
|
box-sizing: border-box; |
|
|
} |
|
|
|
|
|
|
|
|
#abstract { |
|
|
background-color: #000000; |
|
|
color: #ffcc00; |
|
|
} |
|
|
#abstract h2 { |
|
|
color: #ffcc00; |
|
|
} |
|
|
#abstract p, |
|
|
#abstract a { |
|
|
color: #ffffff; |
|
|
} |
|
|
|
|
|
#training-data { |
|
|
background-color: #000000; |
|
|
} |
|
|
#training-data h2 { |
|
|
color: #ffcc00; |
|
|
} |
|
|
#training-data p, |
|
|
#training-data a { |
|
|
color: #ffffff; |
|
|
} |
|
|
|
|
|
#relevant-work { |
|
|
background-color: #000000; |
|
|
} |
|
|
#relevant-work h2 { |
|
|
color: #8be4e3; |
|
|
} |
|
|
#relevant-work p, |
|
|
#relevant-work a, |
|
|
#relevant-work span { |
|
|
color: #ffffff; |
|
|
} |
|
|
|
|
|
#acknowledgements { |
|
|
background-color: #000000; |
|
|
} |
|
|
#acknowledgements h2 { |
|
|
color: #8be4e3; |
|
|
} |
|
|
#acknowledgements p, |
|
|
#acknowledgements a, |
|
|
#acknowledgements span { |
|
|
color: #ffffff; |
|
|
} |
|
|
|