You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
874 B

  1. .list {
  2. background-color: #FFF;
  3. min-height: 25px;
  4. .list-header {
  5. background-color: mc('grey','100');
  6. height: 30px;
  7. display: flex;
  8. align-items: center;
  9. padding: 0 20px;
  10. text-transform: uppercase;
  11. font-size: 13px;
  12. color: mc($primary,'500');
  13. text-shadow: 1px 1px 0 #FFF;
  14. span {
  15. font-weight: 500;
  16. }
  17. i {
  18. margin-right: 10px;
  19. }
  20. }
  21. .list-row {
  22. border-top: 1px solid mc('grey','100');
  23. display: flex;
  24. justify-content: space-between;
  25. align-items: center;
  26. padding: 10px 20px;
  27. &:first-child {
  28. border-top: none;
  29. }
  30. }
  31. .list-item {
  32. display: flex;
  33. justify-content: flex-start;
  34. align-items: center;
  35. }
  36. .list-icon {
  37. margin-right: 15px;
  38. color: mc('grey','500');
  39. }
  40. .list-content {
  41. display: flex;
  42. flex-direction: column;
  43. strong {
  44. color: mc('grey','700');
  45. }
  46. span {
  47. color: mc('grey','600');
  48. }
  49. }
  50. }