finished beginnings of site
This commit is contained in:
127
css/main.css
127
css/main.css
@@ -1,3 +1,128 @@
|
||||
nav {
|
||||
background-color: #87CBB9;
|
||||
}
|
||||
border-radius: 4px;
|
||||
border: 1px solid black;
|
||||
padding: 1.5rem;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
|
||||
body {
|
||||
background-color: #bcc5c3;
|
||||
}
|
||||
|
||||
.nav-button {
|
||||
background-color: #B9EDDD;
|
||||
border-radius: 5px;
|
||||
border: 1px solid black;
|
||||
padding: 0.5rem 1.2rem;
|
||||
}
|
||||
|
||||
.nav-button:hover {
|
||||
background-color: aqua;
|
||||
}
|
||||
|
||||
.rounded_border {
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.bordered {
|
||||
border: 1px solid black;
|
||||
}
|
||||
.bordered_left {
|
||||
border-left: 1px solid black;
|
||||
}
|
||||
|
||||
.bordered_right {
|
||||
border-right: 1px solid black;
|
||||
}
|
||||
|
||||
.content_area {
|
||||
/*
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
*/
|
||||
display: table;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.menu_button {
|
||||
width: 100%;
|
||||
height: 2rem;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.double_width_menu_bar {
|
||||
display: flexbox;
|
||||
background-color: #569DAA;
|
||||
padding: 1rem;
|
||||
width: 30rem;
|
||||
margin-right: 1rem;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
width: 100%;
|
||||
background-color: #577D86;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.wrapper:not(:last-child){
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
.log_table {
|
||||
display: table;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.table_header {
|
||||
display: table-cell;
|
||||
text-align: center;
|
||||
background-color: #bcc5c3;
|
||||
}
|
||||
|
||||
.table_header:not(:last-child){
|
||||
border-right: 1px solid black;
|
||||
}
|
||||
|
||||
.center_text {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.table_row {
|
||||
width: 100%;
|
||||
display: table-row;
|
||||
}
|
||||
|
||||
.table_row:not(:last-child){
|
||||
border-bottom: 1px solid black;
|
||||
}
|
||||
|
||||
.table_cell {
|
||||
display: table-cell;
|
||||
}
|
||||
|
||||
.table_cell:not(:last-child){
|
||||
border-right: 1px solid black;
|
||||
}
|
||||
|
||||
.menu_bar {
|
||||
display: flexbox;
|
||||
background-color: #569DAA;
|
||||
padding: 1rem;
|
||||
width: 10rem;
|
||||
margin-right: 1rem;
|
||||
}
|
||||
|
||||
.cell {
|
||||
display: table-cell;
|
||||
}
|
||||
|
||||
.content {
|
||||
background-color: #B9EDDD;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
|
||||
.content_area::after {
|
||||
clear: both;
|
||||
}
|
||||
|
Reference in New Issue
Block a user