multimodalart/ctrl-x
8
1/* Body */2body {3 background: #e3e5e8;4 color: #ffffff;5 font-family: 'Lato', Verdana, Helvetica, sans-serif;6 font-weight: 300;7 font-size: 14pt;8}9 10/* Hyperlinks */11a {text-decoration: none;}12a:link {color: #1772d0;}13a:visited {color: #1772d0;}14a:active {color: red;}15a:hover {color: #f09228;}16 17/* Pre-formatted Text */18pre {19 margin: 5pt 0;20 border: 0;21 font-size: 12pt;22 background: #fcfcfc;23}24 25/* Project Page Style */26/* Section */27.section {28 width: 768pt;29 min-height: 100pt;30 margin: 15pt auto;31 padding: 20pt 30pt;32 border: 1pt hidden #000;33 text-align: justify;34 color: #000000;35 background: #ffffff;36}37 38/* Header (Title and Logo) */39.section .header {40 min-height: 80pt;41 margin-top: 30pt;42}43.section .header .logo {44 width: 80pt;45 margin-left: 10pt;46 float: left;47}48.section .header .logo img {49 width: 80pt;50 object-fit: cover;51}52.section .header .title {53 margin: 0 120pt;54 text-align: center;55 font-size: 22pt;56}57 58/* Author */59.section .author {60 margin: 5pt 0;61 text-align: center;62 font-size: 16pt;63}64 65/* Institution */66.section .institution {67 margin: 5pt 0;68 text-align: center;69 font-size: 16pt;70}71 72/* Note */73.section .note {74 margin: 5pt 0;75 text-align: center;76 font-size: 12pt;77}78 79/* Hyperlink (such as Paper and Code) */80.section .link {81 margin: 5pt 0;82 text-align: center;83 font-size: 16pt;84}85 86/* Teaser */87.section .teaser {88 margin: 20pt 0;89 text-align: center;90}91 92/* Section Title */93.section .title {94 text-align: center;95 font-size: 22pt;96 margin: 5pt 0 15pt 0; /* top right bottom left */97}98 99/* Section Body */100.section .body {101 margin-bottom: 15pt;102 text-align: justify;103 font-size: 14pt;104}105 106/* BibTeX */107.section .bibtex {108 margin: 5pt 0;109 text-align: left;110 font-size: 22pt;111}112 113/* Related Work */114.section .ref {115 margin: 20pt 0 10pt 0; /* top right bottom left */116 text-align: left;117 font-size: 18pt;118 font-weight: bold;119}120 121/* Citation */122.section .citation {123 min-height: 60pt;124 margin: 10pt 0;125}126.section .citation .image {127 width: 120pt;128 float: left;129}130.section .citation .image img {131 max-height: 60pt;132 width: 120pt;133 object-fit: cover;134}135.section .citation .comment{136 margin-left: 130pt;137 text-align: left;138 font-size: 14pt;139}140 