_get-started.scss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. .installation-first-step {
  2. height: 200px;
  3. color: $text-color;
  4. text-align: center;
  5. padding-top: 10px;
  6. margin: 20px 0;
  7. border: 1px solid rgba(0, 0, 0, 0.15);
  8. .installation-download,
  9. .installation-package-managers {
  10. width: 48%;
  11. float: left;
  12. }
  13. .installation-col-title {
  14. font-size: 22px;
  15. padding: 30px 0;
  16. color: $text-color;
  17. }
  18. .installation-download {
  19. .button {
  20. display: block;
  21. color: $white;
  22. box-shadow: 0 0 50px rgba($primary-color, 0.4);
  23. &:hover {
  24. text-decoration: none;
  25. color: $primary-color;
  26. }
  27. }
  28. }
  29. .installation-or {
  30. font-weight: bold;
  31. text-transform: uppercase;
  32. width: 4%;
  33. float: left;
  34. font-size: 18px;
  35. margin: 60px 0;
  36. padding: 11px 0;
  37. background: $white;
  38. border-radius: 50px;
  39. }
  40. .installation-package-managers {
  41. color: #888;
  42. font-size: 18px;
  43. code {
  44. display: block;
  45. padding-top: 5px;
  46. line-height: 1.6;
  47. & + code {
  48. padding-top: 0;
  49. }
  50. }
  51. }
  52. }