Site para o estudio Velvet Design em São Paulo. http://velvetdesign.com.br

bootstrap_and_overrides.css.less 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. //@import "twitter/bootstrap/bootstrap";
  2. @import "twitter/bootstrap/responsive";
  3. // Set the correct sprite paths
  4. @iconSpritePath: image-url("twitter/bootstrap/glyphicons-halflings.png");
  5. @iconWhiteSpritePath: image-url("twitter/bootstrap/glyphicons-halflings-white.png");
  6. // Set the Font Awesome (Font Awesome is default. You can disable by commenting below lines)
  7. @fontAwesomeEotPath: asset-url("fontawesome-webfont.eot");
  8. @fontAwesomeEotPath_iefix: asset-url("fontawesome-webfont.eot?#iefix");
  9. @fontAwesomeWoffPath: asset-url("fontawesome-webfont.woff");
  10. @fontAwesomeTtfPath: asset-url("fontawesome-webfont.ttf");
  11. @fontAwesomeSvgPath: asset-url("fontawesome-webfont.svg#fontawesomeregular");
  12. // Font Awesome
  13. @import "fontawesome/font-awesome";
  14. // Glyphicons
  15. //@import "twitter/bootstrap/sprites.less";
  16. // Your custom LESS stylesheets goes here
  17. //
  18. // Since bootstrap was imported above you have access to its mixins which
  19. // you may use and inherit here
  20. //
  21. // If you'd like to override bootstrap's own variables, you can do so here as well
  22. // See http://twitter.github.com/bootstrap/customize.html#variables for their names and documentation
  23. //
  24. // Example:
  25. // @linkColor: #ff0000;
  26. .top-container {
  27. margin-top: 60px;
  28. }
  29. // Admin Dashboard Stats layout
  30. .summary {
  31. display: table;
  32. width: 100%;
  33. padding: 0;
  34. margin: 0 0 20px 0;
  35. }
  36. .summary .count {
  37. display: block;
  38. font-size: 1.75em;
  39. font-weight: bold;
  40. }
  41. .summary ul {
  42. margin: 0;
  43. padding: 0;
  44. overflow: hidden;
  45. display: table-row;
  46. }
  47. .summary li {
  48. margin: 0;
  49. padding: 19px;
  50. display: table-cell;
  51. border-right: 1px solid #eee;
  52. }
  53. .summary a {
  54. font-size: 1.2em;
  55. line-height: 1.4em;
  56. text-transform: uppercase;
  57. color: #000;
  58. }
  59. .summary a:hover .count {
  60. text-decoration: none;
  61. }
  62. // admin sidebar
  63. .well-micro {
  64. background-color: #f5f5f5;
  65. border: 1px solid #e3e3e3;
  66. margin-left: 28px;
  67. }