Ajouts de la maquette web sur le nouveau git (suite au bug de l'ancien répertoire git
This commit is contained in:
221
MaquetteWEB/css/PROF/enseignant_permanent.css
Normal file
221
MaquetteWEB/css/PROF/enseignant_permanent.css
Normal file
@@ -0,0 +1,221 @@
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
background-color: #f4f4f4;
|
||||
}
|
||||
.dashboard-container {
|
||||
max-width: 1200px;
|
||||
margin: auto;
|
||||
padding: 20px;
|
||||
}
|
||||
.header {
|
||||
background-color: #a17b12;
|
||||
color: white;
|
||||
padding: 10px 0;
|
||||
text-align: center;
|
||||
}
|
||||
.section-header {
|
||||
background-color: #f8f8f8;
|
||||
padding: 10px;
|
||||
border-left: 5px solid #a17b12;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.card {
|
||||
background-color: white;
|
||||
padding: 15px;
|
||||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.table-container {
|
||||
overflow-x: auto;
|
||||
}
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
table th, table td {
|
||||
padding: 12px;
|
||||
text-align: left;
|
||||
border-bottom: 1px solid #ddd;
|
||||
}
|
||||
table th {
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
.alert {
|
||||
padding: 10px;
|
||||
margin-bottom: 20px;
|
||||
background-color: #f44336;
|
||||
color: white;
|
||||
position: relative;
|
||||
}
|
||||
.alert .close {
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
font-weight: bold;
|
||||
font-size: 18px;
|
||||
}
|
||||
.success {
|
||||
padding: 10px;
|
||||
margin-bottom: 20px;
|
||||
background-color: #4CAF50;
|
||||
color: white;
|
||||
position: relative;
|
||||
}
|
||||
.success .close {
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
font-weight: bold;
|
||||
font-size: 18px;
|
||||
}
|
||||
.btn {
|
||||
padding: 10px 15px;
|
||||
background-color: #a17b12;
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
border-radius: 5px;
|
||||
display: inline-block;
|
||||
}
|
||||
.btn:hover {
|
||||
background-color: #644c08;
|
||||
}
|
||||
.input-group {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.input-group label {
|
||||
display: block;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
.input-group input, .input-group select {
|
||||
width: 100%;
|
||||
padding: 10px;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 5px;
|
||||
}
|
||||
/* Styling for the modern schedule */
|
||||
.schedule-container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-top: 20px;
|
||||
}
|
||||
.schedule-table {
|
||||
width: 100%;
|
||||
max-width: 1200px;
|
||||
border-collapse: collapse;
|
||||
border: 1px solid #ddd;
|
||||
background-color: white;
|
||||
}
|
||||
.schedule-table th,
|
||||
.schedule-table td {
|
||||
border: 1px solid #ddd;
|
||||
padding: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
.schedule-table th {
|
||||
background-color: #4CAF50;
|
||||
color: white;
|
||||
}
|
||||
.time-slot {
|
||||
background-color: #f9f9f9;
|
||||
font-weight: bold;
|
||||
width: 70px;
|
||||
}
|
||||
.class {
|
||||
background-color: #e3f2fd;
|
||||
color: #333;
|
||||
border-left: 5px solid #2141f3;
|
||||
text-align: left;
|
||||
padding-left: 10px;
|
||||
font-weight: bold;
|
||||
position: relative;
|
||||
}
|
||||
.class span {
|
||||
font-size: 0.9em;
|
||||
color: #555;
|
||||
}
|
||||
.no-class {
|
||||
background-color: #f9f9f9;
|
||||
}
|
||||
.week-navigation {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.week-navigation button {
|
||||
padding: 10px 15px;
|
||||
background-color: #a17b12;
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.week-navigation button:hover {
|
||||
background-color: #a17b12;
|
||||
}
|
||||
.footer {
|
||||
text-align: center;
|
||||
padding: 10px 0;
|
||||
margin-top: 20px;
|
||||
background-color: #a17b12;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.dashboard-container {
|
||||
max-width: 1200px;
|
||||
margin: auto;
|
||||
padding: 20px;
|
||||
}
|
||||
.header {
|
||||
background-color: #a17b12;
|
||||
color: white;
|
||||
padding: 10px 0;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.logo-container img {
|
||||
width: 200px;
|
||||
height: 50px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.categories {
|
||||
display: flex;
|
||||
gap: 15px;
|
||||
margin-left: 50px;
|
||||
}
|
||||
.categories a {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
}
|
||||
.categories a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
.user-section {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-right: 20px;
|
||||
}
|
||||
.user-name {
|
||||
margin-right: 15px;
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
}
|
||||
.logout-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.logout-container img {
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
margin-left: 10px;
|
||||
cursor: pointer;
|
||||
}
|
299
MaquetteWEB/css/PROF/mes-heures.css
Normal file
299
MaquetteWEB/css/PROF/mes-heures.css
Normal file
@@ -0,0 +1,299 @@
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
background-color: #f4f4f4;
|
||||
}
|
||||
.dashboard-container {
|
||||
max-width: 1500px;
|
||||
margin: auto;
|
||||
padding: 20px;
|
||||
}
|
||||
.header {
|
||||
background-color: #a17b12;
|
||||
color: white;
|
||||
padding: 10px 0;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
}
|
||||
.logo-container img {
|
||||
width: 200px;
|
||||
height: 50px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.categories {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
margin-left: 50px;
|
||||
}
|
||||
.categories a {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
}
|
||||
.categories a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
.user-section {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-right: 20px;
|
||||
}
|
||||
.user-name {
|
||||
margin-right: 15px;
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
}
|
||||
.logout-container img {
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.section-header {
|
||||
background-color: #f8f8f8;
|
||||
padding: 10px;
|
||||
border-left: 5px solid #a17b12;
|
||||
margin-top: 20px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.card {
|
||||
background-color: white;
|
||||
padding: 15px;
|
||||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.table-container {
|
||||
overflow-x: auto;
|
||||
}
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
table th, table td {
|
||||
padding: 12px;
|
||||
text-align: left;
|
||||
border-bottom: 1px solid #ddd;
|
||||
}
|
||||
table th {
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
.status-valide {
|
||||
color: green;
|
||||
font-weight: bold;
|
||||
}
|
||||
.status-attente {
|
||||
color: red;
|
||||
font-weight: bold;
|
||||
}
|
||||
/* Styles pour les graphiques */
|
||||
.chart-container {
|
||||
width: 100%;
|
||||
margin: 20px 0;
|
||||
}
|
||||
/* Styles pour le formulaire */
|
||||
.contact-form {
|
||||
margin-top: 30px;
|
||||
padding: 20px;
|
||||
background-color: #fff;
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 5px;
|
||||
}
|
||||
.contact-form h3 {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.contact-form select, .contact-form input {
|
||||
width: 100%;
|
||||
padding: 10px;
|
||||
margin: 10px 0;
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 5px;
|
||||
}
|
||||
.contact-form button {
|
||||
background-color: #a17b12;
|
||||
color: white;
|
||||
border: none;
|
||||
padding: 10px 20px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.contact-form button:hover {
|
||||
background-color: #5f490b;
|
||||
}
|
||||
.footer {
|
||||
text-align: center;
|
||||
padding: 10px 0;
|
||||
margin-top: 20px;
|
||||
background-color: #a17b12;
|
||||
color: white;
|
||||
}
|
||||
/* Styles pour le popup */
|
||||
.popup {
|
||||
display: none;
|
||||
position: fixed;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
background-color: #fff; /* Blanc */
|
||||
padding: 20px;
|
||||
border: 2px solid #a17b12; /* Bordure couleur thème */
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
|
||||
z-index: 1000;
|
||||
border-radius: 10px;
|
||||
text-align: center;
|
||||
width: 300px; /* Largeur fixe */
|
||||
}
|
||||
.popup h4 {
|
||||
margin: 0 0 15px 0;
|
||||
font-size: 1.5em;
|
||||
color: #a17b12; /* Couleur de texte */
|
||||
}
|
||||
.popup p {
|
||||
font-size: 1.2em;
|
||||
margin: 5px 0; /* Espacement entre les lignes */
|
||||
color: #333; /* Couleur de texte */
|
||||
}
|
||||
.popup button {
|
||||
background-color: #a17b12;
|
||||
color: white;
|
||||
border: none;
|
||||
padding: 10px;
|
||||
cursor: pointer;
|
||||
border-radius: 5px; /* Arrondir les coins */
|
||||
margin-top: 15px; /* Espacement au-dessus du bouton */
|
||||
}
|
||||
.popup button:hover {
|
||||
background-color: #5f490b;
|
||||
}
|
||||
/* Style pour le détail du cours */
|
||||
.details-button {
|
||||
cursor: pointer;
|
||||
color: #a17b12;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.proposition-container {
|
||||
margin-top: 30px;
|
||||
padding: 20px;
|
||||
background-color: #fff;
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 5px;
|
||||
}
|
||||
.proposition-table th, .proposition-table td {
|
||||
padding: 12px;
|
||||
text-align: left;
|
||||
border-bottom: 1px solid #ddd;
|
||||
}
|
||||
.proposition-table th {
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
|
||||
.refuse-button{
|
||||
background-color: #a61414;
|
||||
color: white;
|
||||
border: none;
|
||||
padding: 10px 15px;
|
||||
cursor: pointer;
|
||||
margin-right: 10px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.refuse-button:hover{
|
||||
background-color: #590505;
|
||||
}
|
||||
|
||||
.accept-button {
|
||||
background-color: #077712;
|
||||
color: white;
|
||||
border: none;
|
||||
padding: 10px 15px;
|
||||
cursor: pointer;
|
||||
margin-right: 10px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
.accept-button:hover {
|
||||
background-color: #0d5905;
|
||||
}
|
||||
/* Styles pour le formulaire de pièces justificatives */
|
||||
.justificatif-form {
|
||||
display: none; /* Cacher par défaut */
|
||||
margin-top: 20px;
|
||||
padding: 20px;
|
||||
background-color: #f8f8f8;
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
/* Styles pour la popup de confirmation */
|
||||
.confirmation-popup {
|
||||
display: none; /* Cacher par défaut */
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
.confirmation-content {
|
||||
background-color: white;
|
||||
padding: 20px;
|
||||
border-radius: 5px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.validated-hours {
|
||||
margin-top: 20px;
|
||||
border-top: 1px solid #ccc;
|
||||
padding-top: 20px;
|
||||
}
|
||||
.validated-hours h3 {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.status-valide {
|
||||
color: green; /* Pour le statut validé */
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.status-attente {
|
||||
color: rgb(255, 136, 0); /* Pour le statut en attente */
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* Style général pour le conteneur de pagination */
|
||||
#pagination {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin: 20px 0;
|
||||
}
|
||||
|
||||
/* Style pour les boutons Précédent et Suivant */
|
||||
#pagination button {
|
||||
background-color: #a17b12; /* Couleur de fond verte */
|
||||
color: white; /* Couleur du texte */
|
||||
border: none;
|
||||
padding: 10px 20px;
|
||||
margin: 0 5px; /* Espacement entre les boutons */
|
||||
border-radius: 5px; /* Coins arrondis */
|
||||
font-size: 16px;
|
||||
cursor: pointer;
|
||||
transition: background-color 0.3s ease;
|
||||
}
|
||||
|
||||
/* Hover effect pour les boutons */
|
||||
#pagination button:hover {
|
||||
background-color: #5f490b; /* Couleur plus foncée au survol */
|
||||
}
|
||||
|
||||
/* Style du texte de la page actuelle */
|
||||
#pagination span {
|
||||
font-size: 18px;
|
||||
margin: 0 10px;
|
||||
}
|
||||
|
||||
/* Désactivation des boutons si nécessaire */
|
||||
#pagination button:disabled {
|
||||
background-color: #cccccc; /* Couleur gris clair si désactivé */
|
||||
cursor: not-allowed;
|
||||
}
|
205
MaquetteWEB/css/PROF/paiements.css
Normal file
205
MaquetteWEB/css/PROF/paiements.css
Normal file
@@ -0,0 +1,205 @@
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
background-color: #f4f4f4;
|
||||
}
|
||||
.dashboard-container {
|
||||
max-width: 1500px;
|
||||
margin: auto;
|
||||
padding: 20px;
|
||||
}
|
||||
.header {
|
||||
background-color: #a17b12;
|
||||
color: white;
|
||||
padding: 10px 0;
|
||||
text-align: center;
|
||||
}
|
||||
.section-header {
|
||||
background-color: #f8f8f8;
|
||||
padding: 10px;
|
||||
border-left: 5px solid #a17b12;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.card {
|
||||
background-color: white;
|
||||
padding: 15px;
|
||||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.table-container {
|
||||
overflow-x: auto;
|
||||
}
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
table th, table td {
|
||||
padding: 12px;
|
||||
text-align: left;
|
||||
border-bottom: 1px solid #ddd;
|
||||
}
|
||||
table th {
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
.status-valide {
|
||||
color: green;
|
||||
font-weight: bold;
|
||||
}
|
||||
.status-attente {
|
||||
color: red;
|
||||
font-weight: bold;
|
||||
}
|
||||
/* Styles pour les graphiques */
|
||||
.chart-container {
|
||||
width: 100%;
|
||||
margin: 20px 0;
|
||||
}
|
||||
/* Styles pour le formulaire */
|
||||
.contact-form {
|
||||
margin-top: 30px;
|
||||
padding: 20px;
|
||||
background-color: #fff;
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 5px;
|
||||
}
|
||||
.contact-form h3 {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.contact-form select, .contact-form input, .contact-form textarea {
|
||||
width: 100%;
|
||||
padding: 10px;
|
||||
margin: 10px 0;
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 5px;
|
||||
}
|
||||
.contact-form button {
|
||||
background-color: #a17b12;
|
||||
color: white;
|
||||
border: none;
|
||||
padding: 10px 20px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.contact-form button:hover {
|
||||
background-color: #5f490b;
|
||||
}
|
||||
.footer {
|
||||
text-align: center;
|
||||
padding: 10px 0;
|
||||
margin-top: 20px;
|
||||
background-color: #a17b12;
|
||||
color: white;
|
||||
}
|
||||
/* Styles pour le popup */
|
||||
/* Styles pour le popup */
|
||||
.popup {
|
||||
display: none;
|
||||
position: fixed;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
background-color: #fff; /* Blanc */
|
||||
padding: 20px;
|
||||
border: 2px solid #a17b12; /* Bordure couleur thème */
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
|
||||
z-index: 1000;
|
||||
border-radius: 10px;
|
||||
text-align: center;
|
||||
width: 300px; /* Largeur fixe */
|
||||
}
|
||||
.popup h4 {
|
||||
margin: 0 0 15px 0;
|
||||
font-size: 1.5em;
|
||||
color: #a17b12; /* Couleur de texte */
|
||||
}
|
||||
.popup p {
|
||||
font-size: 1.2em;
|
||||
margin: 5px 0; /* Espacement entre les lignes */
|
||||
color: #333; /* Couleur de texte */
|
||||
}
|
||||
.popup button {
|
||||
background-color: #a17b12;
|
||||
color: white;
|
||||
border: none;
|
||||
padding: 10px;
|
||||
cursor: pointer;
|
||||
border-radius: 5px; /* Arrondir les coins */
|
||||
margin-top: 15px; /* Espacement au-dessus du bouton */
|
||||
}
|
||||
.popup button:hover {
|
||||
background-color: #5f490b;
|
||||
}
|
||||
|
||||
.header {
|
||||
background-color: #a17b12;
|
||||
color: white;
|
||||
padding: 10px 0;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.logo-container img {
|
||||
width: 200px;
|
||||
height: 50px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.categories {
|
||||
display: flex;
|
||||
gap: 15px;
|
||||
margin-left: 50px;
|
||||
}
|
||||
.categories a {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
}
|
||||
.categories a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
.user-section {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-right: 20px;
|
||||
}
|
||||
.user-name {
|
||||
margin-right: 15px;
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
}
|
||||
.logout-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.logout-container img {
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
margin-left: 10px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
th[data-sort] {
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
padding-right: 20px; /* Espace pour l'icône */
|
||||
}
|
||||
|
||||
/* Icône par défaut (tri croissant) */
|
||||
th::after {
|
||||
content: "▲";
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
font-size: 12px;
|
||||
color: gray;
|
||||
}
|
||||
|
||||
/* Classe pour tri croissant */
|
||||
th.ascending::after {
|
||||
content: "▲"; /* Tri croissant */
|
||||
color: black; /* Icône active */
|
||||
}
|
||||
|
||||
/* Classe pour tri décroissant */
|
||||
th.descending::after {
|
||||
content: "▼"; /* Tri décroissant */
|
||||
color: black; /* Icône active */
|
||||
}
|
Reference in New Issue
Block a user