initial commit

This commit is contained in:
2024-11-04 22:41:42 -05:00
commit 6f1785b814
85 changed files with 1874 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
* vendor/assets/stylesheets directory can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
* compiled file so the styles you add here take precedence over styles defined in any other CSS
* files in this directory. Styles in this file should be added after the last require_* statement.
* It is generally better to create a new file per style scope.
*
*= require_tree .
*= require_self
*/
html, body {
margin: 0;
padding: 0;
height: 100%;
}
#container {
background-color: darkseagreen;
height: 100%;
}
#navbar > ul {
list-style-type: none;
}
#navbar > ul > li {
float: left;
font-size: 1.25em;
margin-top: 16px;
margin-left: 30px;
color: cornsilk;
}
#logo {
font-size: 1.5em;
padding: 12px 20px;
float: left;
color: cornsilk;
}
.nav-column-member {
float: left;
font-size: 1.25em;
padding: 16px 30px;
}
#main-content {
clear: left;
background-color: cornsilk;
height: 100%;
}