circles.scss 859 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* ========================================================================
  2. Component: circles
  3. ========================================================================== */
  4. // Colored circle for indication purposes
  5. $point-sz-sm : 5px;
  6. $point-sz : 7px;
  7. $point-sz-lg : 11px;
  8. $point-sz-xl : 18px;
  9. .circle {
  10. display: inline-block;
  11. width: $point-sz;
  12. height: $point-sz;
  13. border-radius: 500px;
  14. margin: 0 .5em;
  15. background-color: #ddd;
  16. vertical-align: baseline;
  17. border: 2px solid transparent;
  18. &.text-left {
  19. margin-left: 0;
  20. text-align: left;
  21. }
  22. &.text-right {
  23. margin-right: 0;
  24. }
  25. }
  26. // Sizes
  27. .circle-sm {
  28. width: $point-sz-sm;
  29. height: $point-sz-sm;
  30. }
  31. .circle-lg {
  32. width: $point-sz-lg;
  33. height: $point-sz-lg;
  34. }
  35. .circle-xl {
  36. width: $point-sz-xl;
  37. height: $point-sz-xl;
  38. }