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
+2 -2
View File
@@ -78,12 +78,12 @@ ul li {
list-style: inherit !important; list-style: inherit !important;
} }
.css-1ulggnf h2, /* .css-1ulggnf h2,
.MuiTypography-span, .MuiTypography-span,
.MuiTypography-h6 { .MuiTypography-h6 {
color: #ffffff; color: #ffffff;
} } */
.c4lv-remember { .c4lv-remember {
background-color: #d7d9eb; background-color: #d7d9eb;
+6 -5
View File
@@ -202,7 +202,7 @@ const ListeCours = () => {
); );
return ( 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"> <Typography variant="h4" gutterBottom align="center">
Cours Cours
</Typography> </Typography>
@@ -219,7 +219,7 @@ const ListeCours = () => {
onClick={() => handleSelect(cours)} onClick={() => handleSelect(cours)}
> >
<CardContent> <CardContent>
<Typography variant="h6">{cours.fullname}</Typography> <Typography variant="h6" sx={{color:"#315397"}}>{cours.fullname}</Typography>
</CardContent> </CardContent>
</Card> </Card>
</Grid> </Grid>
@@ -255,7 +255,7 @@ const ListeCours = () => {
fontFamily: "Nunito, sans-serif", fontFamily: "Nunito, sans-serif",
}} }}
> >
<Typography variant="h5" gutterBottom> <Typography variant="h5" gutterBottom sx={{}}>
{selected?.fullname} {selected?.fullname}
</Typography> </Typography>
<Tabs <Tabs
@@ -307,7 +307,7 @@ const ListeCours = () => {
> >
{page.sectionname || `Chapitre ${page.section}`} {page.sectionname || `Chapitre ${page.section}`}
</Typography> </Typography>
<Typography variant="h6" sx={{ mb: 1 }}> <Typography variant="h6" sx={{ mb: 1, color:"#315397" }}>
{page.name} {page.name}
</Typography> </Typography>
@@ -375,7 +375,7 @@ const ListeCours = () => {
{assign.sectionname || `Chapitre ${assign.section}`} {assign.sectionname || `Chapitre ${assign.section}`}
</Typography> </Typography>
<Typography variant="h6">{assign.name}</Typography> <Typography variant="h6">{assign.name}</Typography>
<Typography variant="body2" sx={{ mb: 1 }} /> <Typography variant="body2" sx={{ mb: 1,color:"#315397" }} />
<Button <Button
size="small" size="small"
variant="outlined" variant="outlined"
@@ -422,6 +422,7 @@ const ListeCours = () => {
p: 4, p: 4,
overflowY: "auto", overflowY: "auto",
fontFamily: "Nunito, sans-serif", fontFamily: "Nunito, sans-serif",
color:"#315397"
}} }}
> >
<Box <Box
+1 -1
View File
File diff suppressed because one or more lines are too long