12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- @import "../bootstrap/less/bootstrap.less";
- @import "../bootstrap/less/utilities.less";
- @import url(http://fonts.googleapis.com/css?family=Lora);
- @page-header-border-color: #8f8686;
- @page-header-color: #8B0000;
- @headings-font-family: Lora, Baskerville, Garamond, Georgia, 'DejaVu Serif', 'Times New Roman', Times, Serif;
- .mixin-no-color-no-decoration() {
- color: inherit;
- text-decoration: none;
- }
- h1, h2, h3, h4, h5, h6 {
- .mixin-no-color-no-decoration;
- small {
- .mixin-no-color-no-decoration;
- }
- a {
- .mixin-no-color-no-decoration;
- &:hover {
- .mixin-no-color-no-decoration;
- }
- &:focus {
- .mixin-no-color-no-decoration;
- }
- }
- }
- .form-control {
- &:extend(.form-control);
- border-radius: 15px;
- }
- .page-header {
- &:extend(.page-header);
- color: @page-header-color;
- margin-top: 10px;
- padding-left: 5px;
- }
|