Skip to content

Commit

Permalink
less
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanuppal committed Apr 27, 2024
1 parent e6691d5 commit a2638bb
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Copyright (C) 2024 CEV Autonomy and Ethan Uppal. All rights reserved.

*.DS_Store
*.less
*~
61 changes: 61 additions & 0 deletions src/css/style.less
Original file line number Diff line number Diff line change
@@ -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;
}

0 comments on commit a2638bb

Please sign in to comment.