WEVIA Master Autonomous

669 agents en ligne

0

POC

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sit amet nulla auctor, vestibulum magna sed, convallis ex.

MVP

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sit amet nulla auctor, vestibulum magna sed, convallis ex.

Enterprise

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sit amet nulla auctor, vestibulum magna sed, convallis ex.

``` ```css /* styles.css */ body { font-family: Arial, sans-serif; background-color: var(--bg, #faf7f5); color: var(--fg, #faf7f5); } .container { max-width: 1200px; margin: 0 auto; padding: 20px; } header { background-color: var(--bg, #faf7f5); padding: 10px; text-align: center; } header nav ul { list-style: none; margin: 0; padding: 0; display: flex; justify-content: space-between; } header nav ul li { margin-right: 20px; } header nav a { color: var(--fg, #faf7f5); text-decoration: none; } main { display: flex; flex-direction: column; align-items: center; } .home { background-color: var(--bg, #faf7f5); padding: 20px; border-radius: 10px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } .title { text-align: center; } .compteur { margin-top: 20px; } .counter { font-size: 36px; } .count { font-size: 48px; font-weight: bold; } .about { display: flex; flex-wrap: wrap; justify-content: center; } .card { background-color: #555555; padding: 20px; border-radius: 10px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); margin: 10px; width: 300px; } .card h2 { margin-top: 0; } footer { background-color: var(--bg, #faf7f5); padding: 10px; text-align: center; clear: both; } .animate__animated.animate__fadeInDown { animation-duration: 1s; animation-fill-mode: both; } .animate__animated.animate__fadeInUp { animation-duration: 1.5s; animation-fill-mode: both; } .animate__animated.animate__fadeInLeft { animation-duration: 2s; animation-fill-mode: both; } .glassmorphism { background-color: rgba(250,247,245,0.1); backdrop-filter: blur(10px); border-radius: 10px; padding: 20px; } ``` Notez que vous devrez créer un fichier `styles.css` dans le même répertoire que le fichier `wevia-demo-autonomous.html` pour que les styles soient appliqués correctement.