_welcome.scss 802 B

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