From a2638bbdd1e952320e2607e854dd41f4951b73c5 Mon Sep 17 00:00:00 2001 From: Ethan Uppal <113849268+ethanuppal@users.noreply.github.com> Date: Sat, 27 Apr 2024 13:27:34 -0400 Subject: [PATCH] less --- .gitignore | 1 - src/css/style.less | 61 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+), 1 deletion(-) create mode 100644 src/css/style.less diff --git a/.gitignore b/.gitignore index 4b7b188..a440935 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,4 @@ # Copyright (C) 2024 CEV Autonomy and Ethan Uppal. All rights reserved. *.DS_Store -*.less *~ diff --git a/src/css/style.less b/src/css/style.less new file mode 100644 index 0000000..cf2f204 --- /dev/null +++ b/src/css/style.less @@ -0,0 +1,61 @@ +/*Copyright (C) 2024 CEV Autonomy and Ethan Uppal. All rights reserved.*/ + +body, +html { + top: 0; + margin-top: 0; + font-family: sans-serif; +} + +h1 { + margin-top: 1em; + font-size: 24pt; +} + +h2 { + font-size: 20pt; +} + +h3 { + font-size: 18pt; +} + +p, +a, +li, +td, +span { + font-size: 14pt; +} + +#container { + max-width: 800px; + margin: auto; + padding: 1em; +} + +#copyright { + font-size: 10pt; +} + +nav { + max-width: 100%; + width: 100%; +} + +#nav-list { + max-width: 100%; + width: 100%; + float: left; + background-color: rgb(255, 205, 205); + padding: 0.5em; + border-radius: 0.1em; + + a { + text-decoration: none; + } +} + +.reset-float { + float: none; +}