parent
ade9e61676
commit
e23b9b07b1
@ -1,14 +1,56 @@ |
||||
$card-link-size: 2rem; |
||||
|
||||
.card { |
||||
border-color: transparent; |
||||
box-shadow: 0 5px 40px -5px rgba($black, 0.25); |
||||
border-radius: 0; |
||||
margin-bottom: 3rem; |
||||
|
||||
&-balance { |
||||
background-color: $primary; |
||||
color: $white; |
||||
} |
||||
|
||||
&-muted { |
||||
color: $text-muted; |
||||
} |
||||
|
||||
} |
||||
|
||||
.card-header { |
||||
background-color: $white; |
||||
border-bottom: none; |
||||
|
||||
&-tabs { |
||||
margin: (-$card-spacer-y) (-$card-spacer-x); |
||||
} |
||||
} |
||||
|
||||
.card-header-tabs { |
||||
margin: (-$card-spacer-y) (-$card-spacer-x); |
||||
|
||||
.card-links { |
||||
position: absolute; |
||||
right: 0; |
||||
display: flex; |
||||
flex-direction: row; |
||||
align-items: center; |
||||
margin-right: 1rem; |
||||
|
||||
& > a { |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
width: $card-link-size; |
||||
height: $card-link-size; |
||||
margin: 0 .25rem; |
||||
color: $text-muted; |
||||
background-color: $gray-200; |
||||
border-radius: 50%; |
||||
transition: all 0.1s ease; |
||||
|
||||
&:hover { |
||||
background-color: $gray-600; |
||||
color: $primary; |
||||
text-decoration: none; |
||||
} |
||||
} |
||||
} |
||||
|
Loading…
Reference in new issue