Examples of code I've written in PHP, Javascript, SCSS, etc.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

53 lignes
720 B

  1. @use "sass:map";
  2. @use "sass:color";
  3. @use "vars/vars";
  4. .projects h3 {
  5. color: Black;
  6. }
  7. .project h2 {
  8. }
  9. #sites > div {
  10. margin-bottom: 4em;
  11. }
  12. h2.category {
  13. background: white;
  14. text-align: center;
  15. padding: 10px;
  16. border-bottom: solid black 2px;
  17. max-width: 6em;
  18. margin-left: auto;
  19. margin-right: auto;
  20. // text-decoration: underline;
  21. }
  22. .soon {
  23. max-width: 10em;
  24. min-height: 5em;
  25. margin: auto;
  26. }
  27. #sites .pages {
  28. display: flex;
  29. flex-flow: row wrap;
  30. align-items: center;
  31. justify-content: center;
  32. }
  33. .pages img {
  34. height: 200px;
  35. width: auto;
  36. margin: 10px;
  37. padding: 10px;
  38. box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2);
  39. transition: transform 0.2s ease-in;
  40. }
  41. .pages img:hover {
  42. transform: translateY(-10px);
  43. }