Нет описания

dashboard-setup.scss 734B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /**
  2. * dashboard-setup.scss
  3. * Styles for WooCommerce dashboard finish setup widgets
  4. * only loaded on the dashboard itself.
  5. */
  6. /**
  7. * Styling begins
  8. */
  9. .dashboard-widget-finish-setup {
  10. .progress-wrapper {
  11. border: 1px solid #757575;
  12. border-radius: 16px;
  13. font-size: 0.9em;
  14. padding: 2px 8px 2px 8px;
  15. display: inline-block;
  16. box-sizing: border-box;
  17. }
  18. .progress-wrapper span {
  19. position: relative;
  20. top: -3px;
  21. color: #757575;
  22. }
  23. .description div {
  24. margin-top: 11px;
  25. float: left;
  26. width: 70%;
  27. }
  28. .description img {
  29. float: right;
  30. width: 30%;
  31. }
  32. .circle-progress {
  33. margin-top: 1px;
  34. margin-left: -3px;
  35. circle {
  36. stroke: #f0f0f0;
  37. stroke-width: 1px;
  38. }
  39. .bar {
  40. stroke: #949494;
  41. }
  42. }
  43. }