profile.scss 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. @use '../_variables';
  2. section#profile{
  3. max-width: 65em;
  4. margin: 1em auto;
  5. padding:0.5em 1em;
  6. img{
  7. border-radius: 1em;
  8. border: 0.1em solid variables.$primary-brown;
  9. display: inline-block;
  10. vertical-align: top;
  11. position: relative;
  12. }
  13. div#top{
  14. display: block;
  15. img#img-1{
  16. float: left;
  17. margin: 0 2em 1em 1em;
  18. max-width: 18em;
  19. max-height: 22em;
  20. @media screen and (max-width: 800px){max-width: 30%;}
  21. }
  22. div#profile-text{
  23. position: relative;
  24. p{margin: 0.3em 0;}
  25. p:first-child{font-weight: bold;}
  26. }
  27. }
  28. div#profile-images{
  29. text-align: center;
  30. img{
  31. margin: 0.5em;
  32. max-width: 16em;
  33. max-height: 16em;
  34. @media screen and (max-width: 800px){max-width: 28%;}
  35. }
  36. }
  37. }