This commit is contained in:
sebvtl728 2025-07-31 23:27:23 +02:00
parent 04aa793815
commit a04cc47e26
3 changed files with 9 additions and 8 deletions

View File

@ -78,12 +78,12 @@ ul li {
list-style: inherit !important;
}
.css-1ulggnf h2,
/* .css-1ulggnf h2,
.MuiTypography-span,
.MuiTypography-h6 {
color: #ffffff;
}
} */
.c4lv-remember {
background-color: #d7d9eb;

View File

@ -202,7 +202,7 @@ const ListeCours = () => {
);
return (
<Box sx={{ padding: 4, fontFamily: "Nunito, sans-serif", mt: 5 }}>
<Box sx={{ padding: 4, fontFamily: "Nunito, sans-serif", fontWeight:"bold", mt: 5, color:"#315397" }}>
<Typography variant="h4" gutterBottom align="center">
Cours
</Typography>
@ -219,7 +219,7 @@ const ListeCours = () => {
onClick={() => handleSelect(cours)}
>
<CardContent>
<Typography variant="h6">{cours.fullname}</Typography>
<Typography variant="h6" sx={{color:"#315397"}}>{cours.fullname}</Typography>
</CardContent>
</Card>
</Grid>
@ -255,7 +255,7 @@ const ListeCours = () => {
fontFamily: "Nunito, sans-serif",
}}
>
<Typography variant="h5" gutterBottom>
<Typography variant="h5" gutterBottom sx={{}}>
{selected?.fullname}
</Typography>
<Tabs
@ -307,7 +307,7 @@ const ListeCours = () => {
>
{page.sectionname || `Chapitre ${page.section}`}
</Typography>
<Typography variant="h6" sx={{ mb: 1 }}>
<Typography variant="h6" sx={{ mb: 1, color:"#315397" }}>
{page.name}
</Typography>
@ -375,7 +375,7 @@ const ListeCours = () => {
{assign.sectionname || `Chapitre ${assign.section}`}
</Typography>
<Typography variant="h6">{assign.name}</Typography>
<Typography variant="body2" sx={{ mb: 1 }} />
<Typography variant="body2" sx={{ mb: 1,color:"#315397" }} />
<Button
size="small"
variant="outlined"
@ -422,6 +422,7 @@ const ListeCours = () => {
p: 4,
overflowY: "auto",
fontFamily: "Nunito, sans-serif",
color:"#315397"
}}
>
<Box

File diff suppressed because one or more lines are too long