47 lines
673 B
SCSS
47 lines
673 B
SCSS
// If you want to override variables do it here
|
|
@import "variables";
|
|
|
|
// Import styles
|
|
@import "~@coreui/coreui/scss/coreui";
|
|
|
|
// If you want to add something do it here
|
|
@import "custom";
|
|
@import "el_ui_rtl";
|
|
|
|
.card-header:not(.content-center) > .c-icon:first-child {
|
|
margin-right: 0.1rem;
|
|
margin-top: 0.1rem;
|
|
vertical-align: top;
|
|
width: 1.2rem;
|
|
height: 1.2rem;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
// span {
|
|
// color: black;
|
|
// }
|
|
|
|
p {
|
|
color: black;
|
|
}
|
|
|
|
.mainLink{
|
|
color: #000000;
|
|
|
|
transition: 0.3s;
|
|
&:hover{
|
|
text-decoration: none;
|
|
color: blue;
|
|
}
|
|
}
|
|
|
|
.numberMain{
|
|
font-size: large;
|
|
color: red;
|
|
}
|
|
|
|
.descMain{
|
|
margin-right: 4px;
|
|
//font-size: medium;
|
|
}
|