Introduce color variables
Signed-off-by: hossainemruz <hossainemruz@gmail.com>
This commit is contained in:
parent
b34c6860be
commit
6d5d1b9851
35 changed files with 696 additions and 909 deletions
|
@ -4,7 +4,7 @@
|
|||
.card {
|
||||
&:hover,
|
||||
&:focus {
|
||||
border-left: 2px solid #248aaa;
|
||||
border-left: 2px solid $accent-color;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -23,19 +23,19 @@
|
|||
position: absolute;
|
||||
left: 1rem;
|
||||
top: 0;
|
||||
background-color: #248aaa;
|
||||
background-color: $accent-color;
|
||||
height: 100%;
|
||||
width: 2px;
|
||||
}
|
||||
|
||||
.icon-holder {
|
||||
background-color: #248aaa;
|
||||
background-color: $accent-color;
|
||||
border-radius: 50%;
|
||||
height: 2rem;
|
||||
width: 2rem;
|
||||
padding: 0.2rem;
|
||||
text-align: center;
|
||||
color: #e5e9f2;
|
||||
color: $text-over-accent-color;
|
||||
position: relative;
|
||||
}
|
||||
}
|
||||
|
@ -71,9 +71,8 @@
|
|||
|
||||
div {
|
||||
height: 2px;
|
||||
/* width: 100%; */
|
||||
margin-right: -1px;
|
||||
background-color: #248aaa;
|
||||
background-color: $accent-color;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -82,10 +81,10 @@
|
|||
padding: 1rem;
|
||||
margin-top: 0.5rem;
|
||||
margin-bottom: 0.5rem;
|
||||
border-left: 2px solid #248aaa;
|
||||
border-top: 1px solid #c0ccda;
|
||||
border-bottom: 1px solid #c0ccda;
|
||||
border-right: 1px solid #c0ccda;
|
||||
border-left: 2px solid $accent-color;
|
||||
border-top: 1px solid $bg-primary;
|
||||
border-bottom: 1px solid $bg-primary;
|
||||
border-right: 1px solid $bg-primary;
|
||||
border-radius: 5px;
|
||||
|
||||
h5 {
|
||||
|
@ -93,7 +92,7 @@
|
|||
}
|
||||
|
||||
.timeframe {
|
||||
color: #8392a5;
|
||||
color: $muted-text-color;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
|
@ -101,7 +100,7 @@
|
|||
table {
|
||||
margin-left: 1rem;
|
||||
width: 100%;
|
||||
transition: all 0.3s ease-out;
|
||||
@include transition();
|
||||
background: none;
|
||||
border: none;
|
||||
|
||||
|
@ -110,7 +109,7 @@
|
|||
th {
|
||||
background: none;
|
||||
border: none;
|
||||
color: #212529;
|
||||
color: $text-color;
|
||||
}
|
||||
|
||||
tr {
|
||||
|
@ -123,7 +122,7 @@
|
|||
}
|
||||
.hidden-course {
|
||||
display: none;
|
||||
transition: all 1s ease-out;
|
||||
@include transition();
|
||||
}
|
||||
ul {
|
||||
margin-bottom: 0;
|
||||
|
@ -168,5 +167,5 @@
|
|||
}
|
||||
|
||||
.education-alt .degree-info {
|
||||
border-right: 2px solid #248aaa;
|
||||
border-right: 2px solid $accent-color;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue