commit 33cd9f5997780cf1e5ed5df431a80fd03db34bd3 Author: Eliott Date: Fri Sep 13 14:24:55 2024 +0200 test-efrei diff --git a/efrei.css b/efrei.css new file mode 100644 index 0000000..d1784f6 --- /dev/null +++ b/efrei.css @@ -0,0 +1,35 @@ +body{ + background-color: orange; +} + + + + +nav ul li{ + display: inline-block; + list-style: none; + margin: 10px 10px; +} + +nav ul li a{ + color: #050404; + text-decoration: none; + font-size: 18px; + position: relative; + font-family: 'system-ui', sans-serif; +} + +nav ul li a::after{ + content:''; + width: 0; + height: 3px; + background: #050404; + position: absolute; + left: 0; + bottom: -6px; + transition: 0.4s; +} + +nav ul li a:hover::after{ + width: 100%; +} \ No newline at end of file diff --git a/efrei.html b/efrei.html new file mode 100644 index 0000000..3374b17 --- /dev/null +++ b/efrei.html @@ -0,0 +1,22 @@ + + + + + + Document + + + +
+ +
+ + \ No newline at end of file