diff options
| author | 2023-12-03 04:34:10 +0800 | |
|---|---|---|
| committer | 2023-12-03 04:34:10 +0800 | |
| commit | c6a085edd4a4206918c8d9470c8b389b90679fb0 (patch) | |
| tree | 08613502ac6553a8ecd0642d465c8d778aad7843 /assets/css | |
| parent | aab1125476bae9e058ca06971449cb0dc28419e5 (diff) | |
| download | conference-c6a085edd4a4206918c8d9470c8b389b90679fb0.tar.gz conference-c6a085edd4a4206918c8d9470c8b389b90679fb0.zip | |
feat: add LaTeX
Diffstat (limited to 'assets/css')
| -rw-r--r-- | assets/css/style.css | 156 |
1 files changed, 156 insertions, 0 deletions
diff --git a/assets/css/style.css b/assets/css/style.css new file mode 100644 index 0000000..881c1b3 --- /dev/null +++ b/assets/css/style.css @@ -0,0 +1,156 @@ +@font-face { + font-family: CMR; + src: url(../fonts/cmuserif_roman_macroman/cmunrm-webfont.woff); + } + @font-face { + font-family: CMB; + src: url(../fonts/cmuserif_bold_macroman/cmunbx-webfont.woff); + } + + +.LatexTitle{ + font-family: CMR; + font-size: 40px; + padding-top: 40vh; + text-align: center; + margin-bottom: 20px; +} + +.LatexName{ + font-family: CMR; + font-size: 27px; + text-align: center; + margin-bottom: 13px; +} +.LatexDate{ + font-family: CMR; + font-size: 27px; + text-align: center; + margin-top: 13px; + margin-bottom: 45px; +} + +.LatexAbstract{ + font-family: CMB; + font-weight: bold; + font-size: 25px; + text-align: center; + margin-bottom: 10px; +} + +.LatexAbstractText{ + margin-top:10px; + font-family: CMR; + font-size: 21px; + text-align: center; + text-align: justify; + text-indent: 20px +} + +.Margins{ + padding-left: 21%; + width: 58%; +} + +.AbstractMargins{ + padding-left: 6%; + width: 88%; + padding-bottom: 15px; +} + +.Section{ + font-family: CMB; + font-size: 33px; + text-align: Left; + margin-top: 13px; + margin-bottom: 20px; +} + + +.SubSection{ + font-family: CMB; + font-size: 29px; + text-align: Left; + margin-top: 13px; + margin-bottom: 20px; +} + +.BodyText{ + font-family: CMR; + font-size: 23px; + text-align: Left; + margin-top: 13px; + margin-bottom: 45px; + line-height: 125%; + column-count: 1; +} + +.BodyText2Col{ + font-family: CMR; + font-size: 23px; + text-align: Left; + margin-top: 13px; + margin-bottom: 45px; + line-height: 125%; + column-count: 2; +} + +.BodyText3Col{ + font-family: CMR; + font-size: 23px; + text-align: Left; + margin-top: 13px; + margin-bottom: 45px; + line-height: 125%; + column-count: 3; +} + +.Justified{ + text-align: justify; + text-justify: inter-word; +} + +.footerSize{ + height: 30vh; + width: 100%; +} + +.tiny{ + font-size: 8px; +} + +.scriptsize{ + font-size: 11px; +} + +.footnotesize{ + font-size: 13px; +} + +.small{ + font-size: 15px; +} + +.normalsize{ + font-size: 18px; +} + +.large{ + font-size: 19px; +} + +.Large{ + font-size: 23px; +} + +.LARGE{ + font-size: 28px; +} + +.huge{ + font-size: 33px; +} + +.HUGE{ + font-size: 33px; +}
\ No newline at end of file |
