_welcome.scss 697 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .steps {
  2. max-width: 80%;
  3. padding-left: 0;
  4. list-style: none;
  5. counter-reset: welcome-steps;
  6. }
  7. .steps > .steps__item {
  8. margin-bottom: 2.5em;
  9. padding: 19px;
  10. border: 1px solid $gray-lighter;
  11. border-radius: 4px;
  12. overflow: hidden;
  13. // The step number.
  14. &:before {
  15. content: counter(welcome-steps);
  16. counter-increment: welcome-steps;
  17. width: 50px;
  18. height: 50px;
  19. float: left;
  20. margin-right: 1em;
  21. background: $gray-lighter;
  22. border: 1px solid darken($gray-lighter, 10%);
  23. border-radius: 50%;
  24. font: bold 2em monospace;
  25. text-align: center;
  26. line-height: 49px;
  27. }
  28. .body {
  29. float: left;
  30. }
  31. h2 {
  32. font-weight: bold;
  33. margin-top: 0;
  34. }
  35. p:last-child {
  36. margin-bottom: 0;
  37. }
  38. }