First commit of the new Insider version on docker
This commit is contained in:
15
public/css/acces-denied.css
Normal file
15
public/css/acces-denied.css
Normal file
@@ -0,0 +1,15 @@
|
||||
body{
|
||||
background-color: black;
|
||||
color: white;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: red;
|
||||
}
|
||||
|
||||
h6{
|
||||
color: red;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
|
||||
54
public/css/auth.css
Normal file
54
public/css/auth.css
Normal file
@@ -0,0 +1,54 @@
|
||||
body {
|
||||
background-color: #36393f;
|
||||
color: #ffffff;
|
||||
font-family: Arial, sans-serif;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 100vh;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.title-container {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.container {
|
||||
width: 300px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.tittle {
|
||||
font-size: 24px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
input[type="text"],
|
||||
input[type="password"] {
|
||||
width: 100%;
|
||||
padding: 10px;
|
||||
margin-bottom: 15px;
|
||||
background-color: #40444b;
|
||||
border: none;
|
||||
color: #ffffff;
|
||||
border-radius: 5px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
button {
|
||||
background-color: #7289da;
|
||||
color: #ffffff;
|
||||
border: none;
|
||||
padding: 10px 20px;
|
||||
border-radius: 5px;
|
||||
cursor: pointer;
|
||||
transition: background-color 0.3s;
|
||||
font-size: 16px;
|
||||
margin: 0 auto;
|
||||
display: block;
|
||||
}
|
||||
|
||||
button:hover {
|
||||
background-color: #677bc4;
|
||||
}
|
||||
49
public/css/login.css
Normal file
49
public/css/login.css
Normal file
@@ -0,0 +1,49 @@
|
||||
body {
|
||||
background-color: #f8f9fa;
|
||||
}
|
||||
|
||||
.container {
|
||||
background-color: #f8f9fa;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||
padding: 20px;
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
.form-group label,
|
||||
.form-group small {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.form-control,
|
||||
.btn {
|
||||
border-radius: 20px;
|
||||
}
|
||||
|
||||
.form-group {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
/* Dark Mode */
|
||||
body.dark-mode {
|
||||
background-color: #151a1e;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.dark-mode .container {
|
||||
background-color: #262636;
|
||||
box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
|
||||
.dark-mode .form-control {
|
||||
background-color: #343a40; /* Nouvelle couleur pour les boutons en mode sombre */
|
||||
border-color: #343a40; /* Nouvelle couleur de bordure pour les boutons en mode sombre */
|
||||
color: #fff; /* Couleur du texte pour les boutons en mode sombre */
|
||||
}
|
||||
|
||||
.dark-mode .form-group label,
|
||||
.dark-mode .form-group small {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
|
||||
169
public/css/styles.css
Normal file
169
public/css/styles.css
Normal file
@@ -0,0 +1,169 @@
|
||||
.btn-round {
|
||||
border-radius: 20px;
|
||||
}
|
||||
|
||||
.btn-link {
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
.dark-mode {
|
||||
background-color: #151a1e;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.dark-mode table {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.dark-mode .navbar-light .navbar-toggler-icon {
|
||||
background-color: #0b0d0f;
|
||||
}
|
||||
|
||||
.dark-mode .navbar-light .navbar-toggler {
|
||||
border-color: #0b0d0f;
|
||||
}
|
||||
|
||||
.dark-mode .header {
|
||||
background-color: #0b0d0f !important;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.dark-mode .navbar-brand {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.header-form {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.header-form button {
|
||||
background-color: #007bff;
|
||||
border-radius: 20px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.table {
|
||||
border-radius: 10px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.table th,
|
||||
.table td {
|
||||
border: none;
|
||||
background-color: #f8f9fa;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.table th {
|
||||
background-color: #9798a1;
|
||||
}
|
||||
|
||||
.table-bordered th,
|
||||
.table-bordered td {
|
||||
border: 1px solid #dee2e6;
|
||||
}
|
||||
|
||||
.dark-mode .table {
|
||||
border-radius: 10px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.dark-mode .table th,
|
||||
.dark-mode .table td {
|
||||
border: none;
|
||||
background-color: #262636;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.dark-mode .table th {
|
||||
background-color: #0b0d0f;
|
||||
}
|
||||
|
||||
.dark-mode .table-bordered th,
|
||||
.dark-mode .table-bordered td {
|
||||
border: 1px solid #dee2e6;
|
||||
}
|
||||
|
||||
.table-container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.dark-mode .modal-content {
|
||||
background-color: #262636;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.light-mode .modal-content {
|
||||
background-color: #ffffff;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
.modal-content {
|
||||
border-radius: 15px;
|
||||
}
|
||||
|
||||
.custom-breadcrumb {
|
||||
font-size: 14px;
|
||||
max-width: 800px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
margin: 10px auto 0;
|
||||
}
|
||||
|
||||
.table-hover tbody tr:hover {
|
||||
background-color: #5b5b82;
|
||||
}
|
||||
|
||||
body.dark-theme .navbar-toggler-icon {
|
||||
filter: invert(1);
|
||||
}
|
||||
|
||||
#logoutLink {
|
||||
transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
|
||||
color: #007BFF;
|
||||
background-color: transparent;
|
||||
padding: 8px 16px;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 14px;
|
||||
margin: 4px 2px;
|
||||
border-radius: 50px;
|
||||
cursor: pointer;
|
||||
box-shadow: 0 2px 5px rgba(0,0,0,0.25);
|
||||
border: 2px solid #007BFF;
|
||||
}
|
||||
|
||||
#logoutLink:hover {
|
||||
transform: scale(1.15);
|
||||
background-color: #007BFF;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.custom-btn {
|
||||
transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
|
||||
color: #007BFF;
|
||||
background-color: transparent;
|
||||
padding: 8px 16px;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 14px;
|
||||
margin: 4px 2px;
|
||||
border-radius: 50px;
|
||||
cursor: pointer;
|
||||
box-shadow: 0 2px 5px rgba(0,0,0,0.25);
|
||||
border: 2px solid #007BFF;
|
||||
}
|
||||
|
||||
.custom-btn:hover {
|
||||
transform: scale(1.15);
|
||||
background-color: #007BFF;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.btn-icon {
|
||||
border-radius: 50%;
|
||||
padding: 0.5em;
|
||||
}
|
||||
104
public/css/upload.css
Normal file
104
public/css/upload.css
Normal file
@@ -0,0 +1,104 @@
|
||||
body {
|
||||
background-color: #f8f9fa;
|
||||
}
|
||||
|
||||
.container {
|
||||
background-color: #f8f9fa;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||
padding: 20px;
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
.progress {
|
||||
height: 25px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
#progressBar {
|
||||
background-color: #007bff;
|
||||
}
|
||||
|
||||
.progress-info {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
#progressText {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.form-group label,
|
||||
.form-group small {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.form-control,
|
||||
.btn {
|
||||
border-radius: 20px;
|
||||
}
|
||||
|
||||
.form-group {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
body.dark-mode {
|
||||
background-color: #151a1e;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.dark-mode .container{
|
||||
background-color: #262636;
|
||||
box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
|
||||
.progress-bar.dark-mode {
|
||||
background-color: #007bff;
|
||||
}
|
||||
|
||||
#progressText.dark-mode,
|
||||
#estimatedTime.dark-mode {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.form-group label.dark-mode,
|
||||
.form-group small.dark-mode {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.dark-mode .form-control.dark-mode,
|
||||
.btn.dark-mode {
|
||||
background-color: #0b0d0f;
|
||||
border-color: #0b0d0f;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.dark-mode .form-group label{
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.dark-mode text-muted{
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.custom-btn {
|
||||
transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
|
||||
color: #007BFF;
|
||||
background-color: transparent;
|
||||
padding: 8px 16px;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 14px;
|
||||
margin: 4px 2px;
|
||||
border-radius: 50px;
|
||||
cursor: pointer;
|
||||
box-shadow: 0 2px 5px rgba(0,0,0,0.25);
|
||||
border: 2px solid #007BFF;
|
||||
}
|
||||
|
||||
.custom-btn:hover {
|
||||
transform: scale(1.15);
|
||||
background-color: #007BFF;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user