about.scss 621 B

123456789101112131415161718192021222324252627282930313233343536
  1. about {
  2. display: flex;
  3. flex-direction: row;
  4. div {
  5. display: flex;
  6. flex-direction: row;
  7. align-items: center;
  8. justify-content: center;
  9. flex-grow: 1;
  10. text-align: center;
  11. margin-top: 8px;
  12. span {
  13. margin-left: 5px;
  14. font-size: 12px;
  15. font-weight: 300;
  16. color: #333;
  17. }
  18. }
  19. .icon-stack {
  20. position: relative;
  21. .secondary-icon {
  22. font-size: 0.7em;
  23. position: absolute;
  24. bottom: 10%;
  25. left: 50%;
  26. background: #fff;
  27. border-radius: 50%;
  28. padding: 1px;
  29. }
  30. }
  31. }