63 lines
1.9 KiB
CSS
63 lines
1.9 KiB
CSS
/* Favicon support (no CSS needed) */
|
|
|
|
/* BINS Project Header & Buttons */
|
|
.main-header {
|
|
background-color: #232F3E;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0.5rem 1rem;
|
|
position: fixed; top: 0; left: 0; right: 0;
|
|
width: 100%; z-index: 1000;
|
|
}
|
|
.main-header .logo {
|
|
height: 40px;
|
|
margin-right: 1rem;
|
|
}
|
|
.main-header .header-title {
|
|
color: #fff;
|
|
font-size: 1.2rem;
|
|
font-weight: bold;
|
|
margin-right: auto;
|
|
}
|
|
.main-header .nav-btn {
|
|
background-color: #FF9900;
|
|
color: #111;
|
|
border: none;
|
|
border-radius: 5px;
|
|
padding: 0.5rem 1rem;
|
|
margin-left: 0.5rem;
|
|
cursor: pointer;
|
|
font-weight: bold;
|
|
}
|
|
.main-header .nav-btn:hover {
|
|
background-color: #e48f00;
|
|
}
|
|
.page-container {
|
|
margin-top: 70px;
|
|
width: 95%; margin: 0 auto;
|
|
padding: 1rem;
|
|
background-color: #fff;
|
|
border-radius: 6px;
|
|
}
|
|
.form-input, .form-textarea {
|
|
width: 90%; margin: 0.5rem auto; display: block;
|
|
padding: 0.5rem; border: 1px solid #ccc; border-radius: 6px;
|
|
}
|
|
.big-button {
|
|
background-color: #28a745; color: white;
|
|
padding: 0.75rem 1.5rem; border: none; border-radius: 6px;
|
|
cursor: pointer; font-size: 1rem;
|
|
margin: 1rem auto; display: block;
|
|
}
|
|
.big-button:hover { background-color: #218838; }
|
|
.hidden { display: none; }
|
|
|
|
/* Diagram styling */
|
|
.diagram-container { width: 95%; margin: 0 auto; text-align: center; }
|
|
.dock-row { display: grid; grid-template-columns: repeat(83, 1fr); gap: 4px; margin-bottom: 8px; }
|
|
.dock-square { width: 100%; padding-top: 100%; position: relative; background: #ddd; border-radius: 2px; }
|
|
.dock-square::after { content: attr(data-door); position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.6); color: #333; }
|
|
.warehouse { width: 95%; height: 200px; margin: 0 auto; background: #ccc; border-radius: 6px; }
|
|
|
|
/* Existing element styles */
|
|
body { font-family: Arial, sans-serif; margin: 20px; } |