Examples of code I've written in PHP, Javascript, SCSS, etc.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

38 line
621 B

  1. @use "sass:map";
  2. @use "sass:color";
  3. @use "vars/vars";
  4. @use "partials/effects";
  5. @use "partials/navigator";
  6. .services .items {
  7. width: 20em;
  8. background: white;
  9. margin: 5em auto;
  10. box-shadow: 8px 14px 10px rgba(39,44,49,.01);
  11. }
  12. .services .item {
  13. font-size: 1.2rem;
  14. width: 4em;
  15. margin: 0 auto;
  16. padding: 1em 0;
  17. text-align: center;
  18. // position: relative;
  19. }
  20. .services .item:not(:last-child) {
  21. border-bottom: 2px solid grey;
  22. }
  23. .services a {
  24. }
  25. .services .info {
  26. padding: 20px;
  27. color: vars.getColor('link-grey');
  28. width: 20em;
  29. background: white;
  30. margin: 5em auto;
  31. box-shadow: 8px 14px 10px rgba(39,44,49,.01);
  32. }