Compare commits

..

3 commits

Author SHA1 Message Date
d447f8e4de index : design responsive 2024-02-01 13:17:37 +01:00
55de955da9 README : mise à jour de la to-do list 2024-02-01 13:07:41 +01:00
2bd9e7a22b README : description 2024-02-01 13:07:31 +01:00
2 changed files with 25 additions and 8 deletions

View file

@ -1,15 +1,20 @@
# Ahurac's homepage # Ahurac's homepage
Work-in-progress. Source for my home page [ahur.ac](https://ahur.ac/).
Made with Astro framework (really cool framework but JS was an error).
## To-do ## To-do
- [ ] Header - [x] Header
- [ ] Content - [x] Content
- [ ] Logo - [ ] Logo
- [ ] Style - [x] Style
- [ ] Cards - [x] Cards
- [ ] Content - [x] Content
- [ ] Logos - [x] Logos
- [ ] Style - [x] Style
- [ ] Background - [ ] Background
- [ ] SEO
- [ ] Embed
- [ ] Responsive design

View file

@ -71,4 +71,16 @@ body {
main { main {
width: 40%; width: 40%;
} }
@media screen and (max-width: 1200px) {
main {
width: 60%;
}
}
@media screen and (max-width: 800px) {
main {
width: 95%;
}
}
</style> </style>