scaffolding.less 876 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. //
  2. // Scaffolding
  3. // --------------------------------------------------
  4. // Body reset
  5. // -------------------------
  6. body {
  7. margin: 0;
  8. font-family: @baseFontFamily;
  9. font-size: @baseFontSize;
  10. line-height: @baseLineHeight;
  11. color: @textColor;
  12. background-color: @bodyBackground;
  13. }
  14. // Links
  15. // -------------------------
  16. a {
  17. color: @linkColor;
  18. text-decoration: none;
  19. }
  20. a:hover {
  21. color: @linkColorHover;
  22. text-decoration: underline;
  23. }
  24. // Images
  25. // -------------------------
  26. // Rounded corners
  27. .img-rounded {
  28. .border-radius(6px);
  29. }
  30. // Add polaroid-esque trim
  31. .img-polaroid {
  32. padding: 4px;
  33. background-color: #fff;
  34. border: 1px solid #ccc;
  35. border: 1px solid rgba(0,0,0,.2);
  36. .box-shadow(0 1px 3px rgba(0,0,0,.1));
  37. }
  38. // Perfect circle
  39. .img-circle {
  40. .border-radius(500px); // crank the border-radius so it works with most reasonably sized images
  41. }