open-consul/ui-v2/app/styles/base/components/stats-card/skin.scss
Kenia 919b38c63a ui: Update the shadows for radio buttons and the cards (#7391)
* Update box-shadowing for cards and radio buttons to low
* Update box-shadowing for hover cards to middle
* Create a new box-shadow CSS variable for form elements
2020-05-12 17:14:14 +00:00

35 lines
639 B
SCSS

%stats-card {
border: $decor-border-100;
border-radius: $decor-radius-100;
}
%stats-card li {
border-top: $decor-border-100;
}
%stats-card,
%stats-card li {
border-color: $gray-200;
}
%stats-card a {
color: $gray-900;
}
%stats-card,
%stats-card header::before {
box-shadow: $decor-elevation-300;
}
%stats-card:hover,
%stats-card:focus {
box-shadow: $decor-elevation-400;
}
%stats-card header > :not(a):last-child {
border: $decor-border-100;
border-radius: 100%;
border-color: $gray-200;
background-color: $white;
}
%stats-card ul {
/*TODO: %list-style-none?*/
list-style-type: none;
margin: 0;
padding: 0;
}