-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
38 changed files
with
526 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* Homepage Font */ | ||
|
||
/* latin-ext */ | ||
@font-face { | ||
font-family: 'Lato'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: local('Lato Regular'), local('Lato-Regular'), url(https://fonts.gstatic.com/s/lato/v16/S6uyw4BMUTPHjxAwXjeu.woff2) format('woff2'); | ||
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; | ||
} | ||
|
||
/* latin */ | ||
@font-face { | ||
font-family: 'Lato'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: local('Lato Regular'), local('Lato-Regular'), url(https://fonts.gstatic.com/s/lato/v16/S6uyw4BMUTPHjx4wXg.woff2) format('woff2'); | ||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | ||
} | ||
|
||
/* latin-ext */ | ||
@font-face { | ||
font-family: 'Lato'; | ||
font-style: normal; | ||
font-weight: 700; | ||
src: local('Lato Bold'), local('Lato-Bold'), url(https://fonts.gstatic.com/s/lato/v16/S6u9w4BMUTPHh6UVSwaPGR_p.woff2) format('woff2'); | ||
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; | ||
} | ||
|
||
/* latin */ | ||
@font-face { | ||
font-family: 'Lato'; | ||
font-style: normal; | ||
font-weight: 700; | ||
src: local('Lato Bold'), local('Lato-Bold'), url(https://fonts.gstatic.com/s/lato/v16/S6u9w4BMUTPHh6UVSwiPGQ.woff2) format('woff2'); | ||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
/* Body */ | ||
body { | ||
background: #e3e5e8; | ||
color: #ffffff; | ||
font-family: 'Lato', Verdana, Helvetica, sans-serif; | ||
font-weight: 300; | ||
font-size: 14pt; | ||
} | ||
|
||
/* Hyperlinks */ | ||
a {text-decoration: none;} | ||
a:link {color: #1772d0;} | ||
a:visited {color: #1772d0;} | ||
a:active {color: red;} | ||
a:hover {color: #f09228;} | ||
|
||
/* Pre-formatted Text */ | ||
pre { | ||
margin: 5pt 0; | ||
border: 0; | ||
font-size: 12pt; | ||
background: #fcfcfc; | ||
} | ||
|
||
/* Project Page Style */ | ||
/* Section */ | ||
.section { | ||
width: 968pt; | ||
min-height: 100pt; | ||
margin: 15pt auto; | ||
padding: 20pt 30pt; | ||
border: 1pt hidden #000; | ||
text-align: justify; | ||
color: #000000; | ||
background: #ffffff; | ||
} | ||
|
||
/* Header (Title and Logo) */ | ||
.section .header { | ||
min-height: 80pt; | ||
margin-top: 30pt; | ||
} | ||
.section .header .logo { | ||
width: 80pt; | ||
margin-left: 10pt; | ||
float: left; | ||
} | ||
.section .header .logo img { | ||
width: 80pt; | ||
object-fit: cover; | ||
} | ||
.section .header .title { | ||
margin: 0 120pt; | ||
text-align: center; | ||
font-size: 22pt; | ||
} | ||
|
||
/* Author */ | ||
.section .author { | ||
margin: 5pt 0; | ||
text-align: center; | ||
font-size: 16pt; | ||
} | ||
|
||
/* Institution */ | ||
.section .institution { | ||
margin: 5pt 0; | ||
text-align: center; | ||
font-size: 16pt; | ||
} | ||
|
||
/* Hyperlink (such as Paper and Code) */ | ||
.section .link { | ||
margin: 5pt 0; | ||
text-align: center; | ||
font-size: 16pt; | ||
} | ||
|
||
/* Teaser */ | ||
.section .teaser { | ||
margin: 20pt 0; | ||
text-align: left; | ||
} | ||
.section .teaser img { | ||
width: 95%; | ||
} | ||
|
||
/* Section Title */ | ||
.section .title { | ||
text-align: center; | ||
font-size: 22pt; | ||
margin: 5pt 0 15pt 0; /* top right bottom left */ | ||
} | ||
|
||
/* Section Body */ | ||
.section .body { | ||
margin-bottom: 15pt; | ||
text-align: justify; | ||
font-size: 14pt; | ||
} | ||
|
||
/* BibTeX */ | ||
.section .bibtex { | ||
margin: 5pt 0; | ||
text-align: left; | ||
font-size: 22pt; | ||
} | ||
|
||
/* Related Work */ | ||
.section .ref { | ||
margin: 20pt 0 10pt 0; /* top right bottom left */ | ||
text-align: left; | ||
font-size: 18pt; | ||
font-weight: bold; | ||
} | ||
|
||
/* Citation */ | ||
.section .citation { | ||
min-height: 60pt; | ||
margin: 10pt 0; | ||
} | ||
.section .citation .image { | ||
width: 120pt; | ||
float: left; | ||
} | ||
.section .citation .image img { | ||
max-height: 60pt; | ||
width: 120pt; | ||
object-fit: cover; | ||
} | ||
.section .citation .comment{ | ||
margin-left: 0pt; | ||
text-align: left; | ||
font-size: 14pt; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.