Advertisement
selhabti

Queste CSS II

Jan 8th, 2021
417
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.64 KB | None | 0 0
  1. body {
  2.     font-family: 'Courier New', Courier, monospace;
  3. }
  4.  
  5. /* English : Replace the dots below by a selector targeting all the images of the page. */
  6. /* Français : Remplace les points ci-dessous par un sélecteur ciblant toutes les images de la page. */
  7.  
  8. img {
  9.     width: 300px;
  10.     height: 300px;
  11.     border-radius : 20px;      /* English : Replace with a property that makes the image borders look rounded. */
  12.             /* Français : Remplace par une propriété arrondissant les angles de l'image. */
  13. }
  14.  
  15. /* English : Replace the dots below by a class named "hover-effect" with a :hover pseudo-class. This class has to target the first image and the last image of the page. */
  16. /* Français : Remplace les points ci-dessous par une classe "hover-effect" avec une pseudo-classe :hover. Cette classe doit cibler la première image et la troisième image de la page. */
  17.  
  18. .hover-effect:hover  {
  19.    
  20.     opacity : 0.5;      /* English : Replace with a property responsible for opacity changes. */
  21.                     /* Français : Remplace par une propriété modifiant l'opacité. */
  22.     cursor: pointer;
  23. }
  24.  
  25. /* English : Replace the dots below by a selector targeting the second image of the page. Do not use a class or an id! */
  26. /* Français : Remplace les points ci-dessous par un sélecteur ciblant la seconde image de la page. N'utilise pas de classe ou d'id ! */
  27.  
  28. img:nth-of-type(2) {
  29.     filter: grayscale(100%); /* English : Replace with a property that makes the image look black & white. */
  30.                 /* Français : Remplace par une propriété faisant paraître l'image en noir et blanc. */
  31. }
  32.  
  33. .first{
  34.  
  35. font-size: medium;
  36.  
  37. }
  38.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement