60 lines
972 B
SCSS
60 lines
972 B
SCSS
|
$first_color: #F2F3AE;
|
||
|
$second_color: #EDD382;
|
||
|
$third_color: #FC9E4F;
|
||
|
$fourth_color: #F4442E;
|
||
|
.texts{
|
||
|
|
||
|
font-family: sans-serif;
|
||
|
font-size: 30px;
|
||
|
text-align: center;
|
||
|
color: grey;
|
||
|
|
||
|
#me_image{
|
||
|
|
||
|
text-align: center;
|
||
|
width: 700px;
|
||
|
height: 250px;
|
||
|
}
|
||
|
}
|
||
|
%links{
|
||
|
|
||
|
font-family: sans-serif;
|
||
|
font-size:18px;
|
||
|
font-weight: bold;
|
||
|
border: 1px solid black;
|
||
|
padding:20px;
|
||
|
margin: 20px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.interests{
|
||
|
|
||
|
@extend %links;
|
||
|
margin : 20px;
|
||
|
background-color: $first_color;
|
||
|
}
|
||
|
|
||
|
.hobbies{
|
||
|
|
||
|
@extend %links;
|
||
|
margin: 20px;
|
||
|
background-color: $second_color;
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
.experiences{
|
||
|
|
||
|
@extend %links;
|
||
|
margin:20px;
|
||
|
background-color: $third_color;
|
||
|
|
||
|
|
||
|
}
|
||
|
.philosophy{
|
||
|
|
||
|
@extend %links;
|
||
|
margin:20px;
|
||
|
background-color: $fourth_color;
|
||
|
|
||
|
}
|