restructure for docker

This commit is contained in:
Ville Rantanen
2023-07-24 20:02:49 +03:00
parent 58abf04d2c
commit a0c0d69c5e
8 changed files with 213 additions and 146 deletions

View File

@@ -73,8 +73,6 @@ td > input[type=text], td > input[type=password] {
.logo {
margin: 0;
padding: 5px;
padding-left: 15px;
font-size: 3em;
font-weight: bold;
}
@@ -138,3 +136,81 @@ table.form > * > tr > td, th {
opacity: 1;
color: white;
}
/* Dropdown menu */
.navbar {
overflow: hidden;
background-color: #333;
font-family: inherit;
}
.navbar a {
float: left;
font-size: 16px;
color: white;
text-align: center;
text-decoration: none;
}
.dropdown {
float: left;
overflow: hidden;
}
.dropdown .dropbtn {
font-size: 16px;
border: none;
outline: none;
color: white;
padding: 0px 0px;
background-color: inherit;
font-family: inherit; /* Important for vertical align on mobile phones */
margin: 0; /* Important for vertical align on mobile phones */
}
.button_image {
height: 50px;
}
.navbar a:hover, .dropdown:hover .dropbtn {
background-color: black;
}
/* Dropdown content (hidden by default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #444;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content a {
float: none;
color: #F9F6EE;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
background-color: #555;
}
.dropdown-content a:visited {
color: #F9F6EE;
}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
display: block;
}
/* Admin */
.admin_h2 {
background-color: rgba(0,0,0,0.15);
}