updt=ate ollama indocker and add plugins

This commit is contained in:
southseact-3d
2026-02-09 18:09:12 +00:00
parent a52572ede1
commit a546eafc0b
39 changed files with 5239 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
/* --------------------------------------------------------------
Public Styles for Custom Login URL
-------------------------------------------------------------- */
.login-custom-form {
max-width: 400px;
margin: 50px auto;
padding: 30px;
background: #fff;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.login-custom-form h2 {
margin-top: 0;
color: #2c3e50;
text-align: center;
}
.login-custom-form label {
display: block;
margin-bottom: 12px;
font-weight: 600;
color: #34495e;
}
.login-custom-form input[type="submit"] {
width: 100%;
padding: 12px;
background: #2c3e50;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
transition: background 0.2s;
}
.login-custom-form input[type="submit"]:hover {
background: #1a252f;
}
.login-custom-form .forgot {
margin-top: 15px;
text-align: center;
}
.login-custom-form .forgot a {
color: #2c3e50;
text-decoration: underline;
}