10 changed files with 165 additions and 46 deletions
@ -1,48 +1,64 @@ |
|||
@import "../../assets/scss/variables"; |
|||
|
|||
.component-about { |
|||
padding-top: 160px; |
|||
font-size: $font-18; |
|||
z-index: 0; |
|||
|
|||
.about-links { |
|||
.content { |
|||
margin: 150px auto 80px auto; |
|||
padding: 40px 50px; |
|||
font-size: $font-18; |
|||
text-align: justify; |
|||
background: $white-alpha; |
|||
color: $black; |
|||
box-shadow: 0px 0px 25px $white-alpha; |
|||
border-radius: 10px; |
|||
|
|||
.link { |
|||
display: flex; |
|||
text-decoration: none; |
|||
margin: 0; |
|||
padding: 0; |
|||
line-height: 35px; |
|||
width: 200px; |
|||
transition: transform .3s; |
|||
|
|||
|
|||
.icon { |
|||
display: inline-block; |
|||
font-size: 15px; |
|||
padding: 5px; |
|||
margin: 5px; |
|||
background: $dark-gray; |
|||
border-radius: 2px; |
|||
color: $white; |
|||
height: 25px; |
|||
width: 25px; |
|||
text-align: center; |
|||
} |
|||
.about-links { |
|||
color: $black; |
|||
|
|||
.label { |
|||
display: inline-block; |
|||
color: $dark-gray; |
|||
font-size: $font-16; |
|||
padding-left: 5px; |
|||
.link { |
|||
display: flex; |
|||
text-decoration: none; |
|||
margin: 0; |
|||
padding: 0; |
|||
line-height: 35px; |
|||
width: 200px; |
|||
transition: transform .3s; |
|||
|
|||
} |
|||
|
|||
&:hover { |
|||
transform: scale(1.1); |
|||
.icon { |
|||
display: inline-block; |
|||
font-size: 15px; |
|||
padding: 5px; |
|||
margin: 5px; |
|||
background: $dark-gray; |
|||
border-radius: 2px; |
|||
color: $white; |
|||
height: 25px; |
|||
width: 25px; |
|||
text-align: center; |
|||
} |
|||
|
|||
.label { |
|||
display: inline-block; |
|||
color: $dark-gray; |
|||
font-size: $font-16; |
|||
padding-left: 5px; |
|||
|
|||
} |
|||
|
|||
&:hover { |
|||
transform: scale(1.1); |
|||
} |
|||
} |
|||
} |
|||
} |
|||
} |
|||
|
|||
@media (min-width: map-get($grid-breakpoints, 'md')) { |
|||
.component-about { |
|||
.content { |
|||
transform: rotate(2deg) skew(0deg, -6deg); |
|||
} |
|||
} |
|||
} |
|||
|
@ -1,2 +1,4 @@ |
|||
<app-header></app-header> |
|||
<router-outlet></router-outlet> |
|||
|
|||
<Particles class="particles" [id]="id" [options]="particlesOptions" (particlesLoaded)="particlesLoaded($event)"></Particles> |
|||
|
Loading…
Reference in new issue