index : mise à jour du style

This commit is contained in:
Ahurac 2024-01-31 15:00:43 +01:00
parent 460e8549d2
commit aff82ae088

View file

@ -52,24 +52,23 @@ import Card from '../components/Card.astro';
} }
body { body {
/* /* Background */
background: background: linear-gradient(90deg, #08001a 0%, #000d1a 100%);
linear-gradient(135deg, #4d0099 0%, #00000000 100%),
linear-gradient(-135deg, #9933ff 0%, #00000000 100%),
linear-gradient(45deg, #ff4dff 0%, #00000000 100%),
linear-gradient(-45deg, #3366ff 0%, #00000000 100%);
*/
background-size: cover; background-size: cover;
background-repeat: no-repeat; background-repeat: no-repeat;
background-attachment: fixed; background-attachment: fixed;
background-color: black; background-color: black;
/* Text */
color: white; color: white;
font-family: 'Cantarell', sans-serif; font-family: 'Cantarell', sans-serif;
/* Flex */
display: flex; display: flex;
justify-content: center; align-items: center;
margin: 0;
flex-direction: column;
} }
main { main {
width: 30%; width: 40%;
} }
</style> </style>