mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-04 11:25:47 +00:00
Link typography.
This commit is contained in:
parent
465de8701b
commit
f6e236afa6
4 changed files with 19 additions and 6 deletions
|
@ -239,7 +239,7 @@ ul.structured-list {
|
|||
background-color: white;
|
||||
}
|
||||
a {
|
||||
color: darken(@blue, 10%);
|
||||
color: @structured-list-link-color;
|
||||
}
|
||||
.header {
|
||||
text-transform: uppercase;
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
.card {
|
||||
background-color: white;
|
||||
border-radius: @border-radius-base;
|
||||
-webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
||||
box-shadow: 0 2px 4px rgba(0,0,0,0.15);
|
||||
-webkit-box-shadow: @card-box-shadow;
|
||||
box-shadow: @card-box-shadow;
|
||||
padding: @line-height-computed;
|
||||
.page-header {
|
||||
margin: 0 0 1.5625rem;
|
||||
|
|
|
@ -798,6 +798,9 @@
|
|||
@btn-border-radius-base: @border-radius-base;
|
||||
@btn-border-radius-small: @border-radius-small;
|
||||
|
||||
@card-box-shadow: 0 2px 4px rgba(0,0,0,0.15);
|
||||
|
||||
@structured-list-link-color: darken(@blue, 10%);
|
||||
|
||||
@sidebar-bg: transparent;
|
||||
@sidebar-link-color: #333;
|
||||
|
|
|
@ -29,6 +29,8 @@
|
|||
|
||||
// Typography
|
||||
@text-color : @ol-type-color;
|
||||
@link-color : @ol-blue;
|
||||
@link-hover-color : @ol-dark-blue;
|
||||
|
||||
// Button colors and sizing
|
||||
@btn-border-width : 0;
|
||||
|
@ -59,9 +61,12 @@
|
|||
@btn-warning-bg : @ol-red;
|
||||
@btn-warning-border : transparent;
|
||||
|
||||
@btn-danger-color : #FFF;
|
||||
@btn-danger-bg : @ol-red;
|
||||
@btn-danger-border : transparent;
|
||||
@btn-danger-color : #FFF;
|
||||
@btn-danger-bg : @ol-red;
|
||||
@btn-danger-border : transparent;
|
||||
|
||||
// Cards
|
||||
@card-box-shadow : none;
|
||||
|
||||
// Sidebar
|
||||
@sidebar-bg : @ol-blue-gray-5;
|
||||
|
@ -70,6 +75,11 @@
|
|||
@sidebar-active-bg : @ol-blue-gray-6;
|
||||
@sidebar-hover-bg : @ol-blue-gray-4;
|
||||
@sidebar-hover-text-decoration : none;
|
||||
|
||||
|
||||
// Project table
|
||||
@structured-list-link-color : @ol-blue;
|
||||
|
||||
//== Colors
|
||||
//
|
||||
//## Gray and brand colors for use across Bootstrap.
|
||||
|
|
Loading…
Reference in a new issue