palette.less 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. //
  2. // Palette
  3. // --------------------------------------------------
  4. .pallete-item {
  5. width: 140px;
  6. float: left;
  7. margin: 0 0 20px 20px;
  8. }
  9. .palette {
  10. font-size: ceil((@component-font-size-base * 0.933)); // ~14px
  11. line-height: 1.214; // ~17px
  12. color: @inverse;
  13. margin: 0;
  14. padding: 15px;
  15. text-transform: uppercase;
  16. dt,
  17. dd {
  18. line-height: 1.429;
  19. }
  20. dt {
  21. display: block;
  22. font-weight: bold;
  23. opacity: .8;
  24. }
  25. dd {
  26. font-weight: 300;
  27. margin-left: 0;
  28. opacity: .8;
  29. -webkit-font-smoothing: subpixel-antialiased;
  30. }
  31. }
  32. //
  33. // Pallet grid
  34. // --------------------------------------------------
  35. .pallet-variant(~"turquoise", ~"green-sea");
  36. .pallet-variant(~"emerald", ~"nephritis");
  37. .pallet-variant(~"peter-river", ~"belize-hole");
  38. .pallet-variant(~"amethyst", ~"wisteria");
  39. .pallet-variant(~"wet-asphalt", ~"midnight-blue");
  40. .pallet-variant(~"sun-flower", ~"orange");
  41. .pallet-variant(~"carrot", ~"pumpkin");
  42. .pallet-variant(~"alizarin", ~"pomegranate");
  43. .pallet-variant(~"clouds", ~"silver");
  44. .pallet-variant(~"concrete", ~"asbestos");
  45. .palette-clouds {
  46. color: #bdc3c7;
  47. }
  48. // Palette paragraph
  49. .palette-paragraph {
  50. color: #7f8c8d;
  51. font-size: 12px;
  52. line-height: 17px;
  53. span {
  54. color: #bdc3c7;
  55. }
  56. }
  57. // Headline
  58. .palette-headline {
  59. color: #7f8c8d;
  60. font-size: 13px;
  61. font-weight: 700;
  62. margin-top: -3px;
  63. }