Ajouts de la maquette web sur le nouveau git (suite au bug de l'ancien répertoire git
This commit is contained in:
		
							
								
								
									
										222
									
								
								MaquetteWEB/css/FINANCE/finance.css
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										222
									
								
								MaquetteWEB/css/FINANCE/finance.css
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,222 @@
 | 
			
		||||
body {
 | 
			
		||||
    font-family: Arial, sans-serif;
 | 
			
		||||
    background-color: #f4f4f4;
 | 
			
		||||
}
 | 
			
		||||
.dashboard-container {
 | 
			
		||||
    max-width: 1200px;
 | 
			
		||||
    margin: auto;
 | 
			
		||||
    padding: 20px;
 | 
			
		||||
}
 | 
			
		||||
.header {
 | 
			
		||||
    background-color: #20195e;
 | 
			
		||||
    color: white;
 | 
			
		||||
    padding: 10px 0;
 | 
			
		||||
    text-align: center;
 | 
			
		||||
}
 | 
			
		||||
.section-header {
 | 
			
		||||
    background-color: #f8f8f8;
 | 
			
		||||
    padding: 10px;
 | 
			
		||||
    border-left: 5px solid #20195e;
 | 
			
		||||
    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: #20195e;
 | 
			
		||||
    color: white;
 | 
			
		||||
    text-decoration: none;
 | 
			
		||||
    border-radius: 5px;
 | 
			
		||||
    display: inline-block;
 | 
			
		||||
}
 | 
			
		||||
.btn:hover {
 | 
			
		||||
    background-color: #130d47;
 | 
			
		||||
}
 | 
			
		||||
.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 #20195e;
 | 
			
		||||
    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: #5e3a19;
 | 
			
		||||
    color: white;
 | 
			
		||||
    border: none;
 | 
			
		||||
    border-radius: 5px;
 | 
			
		||||
    cursor: pointer;
 | 
			
		||||
}
 | 
			
		||||
.week-navigation button:hover {
 | 
			
		||||
    background-color: #150f48;
 | 
			
		||||
}
 | 
			
		||||
.footer {
 | 
			
		||||
    text-align: center;
 | 
			
		||||
    padding: 10px 0;
 | 
			
		||||
    margin-top: 20px;
 | 
			
		||||
    background-color: #20195e;
 | 
			
		||||
    color: white;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.dashboard-container {
 | 
			
		||||
    max-width: 1200px;
 | 
			
		||||
    margin: auto;
 | 
			
		||||
    padding: 20px;
 | 
			
		||||
}
 | 
			
		||||
.header {
 | 
			
		||||
    background-color: #20195e;
 | 
			
		||||
    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;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										194
									
								
								MaquetteWEB/css/FINANCE/style.css
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										194
									
								
								MaquetteWEB/css/FINANCE/style.css
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,194 @@
 | 
			
		||||
    body {
 | 
			
		||||
        font-family: Arial, sans-serif;
 | 
			
		||||
        background-color: #f4f4f4;
 | 
			
		||||
        margin: 0;
 | 
			
		||||
        padding: 0;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .container {
 | 
			
		||||
        max-width: 1200px;
 | 
			
		||||
        margin: auto;
 | 
			
		||||
        padding: 20px;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .header {
 | 
			
		||||
        background-color: #20195e;
 | 
			
		||||
        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;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .info-card {
 | 
			
		||||
        background-color: white;
 | 
			
		||||
        padding: 20px;
 | 
			
		||||
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
 | 
			
		||||
        margin-bottom: 20px;
 | 
			
		||||
        border-radius: 8px;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .info-card h2 {
 | 
			
		||||
        border-bottom: 2px solid #20195e;
 | 
			
		||||
        padding-bottom: 10px;
 | 
			
		||||
        margin-bottom: 20px;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .info-table {
 | 
			
		||||
        width: 100%;
 | 
			
		||||
        border-collapse: collapse;
 | 
			
		||||
        margin-bottom: 20px;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .info-table th,
 | 
			
		||||
    .info-table td {
 | 
			
		||||
        padding: 12px;
 | 
			
		||||
        text-align: left;
 | 
			
		||||
        border-bottom: 1px solid #ddd;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .info-table th {
 | 
			
		||||
        background-color: #f8f8f8;
 | 
			
		||||
        color: #333;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .action-btn {
 | 
			
		||||
        display: inline-block;
 | 
			
		||||
        padding: 10px 20px;
 | 
			
		||||
        color: white;
 | 
			
		||||
        background-color: #20195e;
 | 
			
		||||
        text-decoration: none;
 | 
			
		||||
        border-radius: 5px;
 | 
			
		||||
        margin: 10px 0;
 | 
			
		||||
        cursor: pointer;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .action-btn:hover {
 | 
			
		||||
        background-color: #191351;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .modal {
 | 
			
		||||
        display: none;
 | 
			
		||||
        position: fixed;
 | 
			
		||||
        z-index: 1;
 | 
			
		||||
        left: 0;
 | 
			
		||||
        top: 0;
 | 
			
		||||
        width: 100%;
 | 
			
		||||
        height: 100%;
 | 
			
		||||
        overflow: auto;
 | 
			
		||||
        background-color: rgb(0, 0, 0);
 | 
			
		||||
        background-color: rgba(0, 0, 0, 0.4);
 | 
			
		||||
        padding-top: 60px;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .modal-content {
 | 
			
		||||
        background-color: #fefefe;
 | 
			
		||||
        margin: 5% auto;
 | 
			
		||||
        padding: 20px;
 | 
			
		||||
        border: 1px solid #888;
 | 
			
		||||
        width: 80%;
 | 
			
		||||
        max-width: 400px;
 | 
			
		||||
        border-radius: 8px;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    .footer {
 | 
			
		||||
        text-align: center;
 | 
			
		||||
        padding: 10px 0;
 | 
			
		||||
        background-color: #20195e;
 | 
			
		||||
        color: white;
 | 
			
		||||
        margin-top: 40px;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .search-bar {
 | 
			
		||||
        width: 100%;
 | 
			
		||||
        padding: 10px;
 | 
			
		||||
        margin-bottom: 20px;
 | 
			
		||||
        border-radius: 5px;
 | 
			
		||||
        border: 1px solid #ddd;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .details {
 | 
			
		||||
        display: none;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /* Dropdown menu */
 | 
			
		||||
    .dropdown {
 | 
			
		||||
        position: relative;
 | 
			
		||||
        display: inline-block;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
.dropdown-content {
 | 
			
		||||
    display: none;
 | 
			
		||||
    position: absolute;
 | 
			
		||||
    background-color: white;
 | 
			
		||||
    min-width: 200px;
 | 
			
		||||
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
 | 
			
		||||
    z-index: 1;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.dropdown-content a {
 | 
			
		||||
    color: black;
 | 
			
		||||
    padding: 12px 16px;
 | 
			
		||||
    text-decoration: none;
 | 
			
		||||
    display: block;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.dropdown-content a:hover {
 | 
			
		||||
    background-color: #ddd;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.dropdown:hover .dropdown-content {
 | 
			
		||||
    display: block;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.dropdown:hover .dropbtn {
 | 
			
		||||
    background-color: #20195e;
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user