You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
1.2 KiB

@import "../../assets/scss/variables";
.component-about {
z-index: 0;
5 years ago
.content {
margin: 150px auto 80px auto;
padding: 40px 50px;
font-size: $font-18;
text-align: justify;
background: $white-alpha;
color: $black;
5 years ago
box-shadow: 0px 0px 25px $white-alpha;
border-radius: 10px;
5 years ago
.about-links {
color: $black;
5 years ago
.link {
display: flex;
text-decoration: none;
margin: 0;
padding: 0;
line-height: 35px;
width: 200px;
transition: transform .3s;
5 years ago
.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);
}
}
}
}
5 years ago
}
5 years ago
@media (min-width: map-get($grid-breakpoints, 'md')) {
.component-about {
.content {
transform: rotate(2deg) skew(0deg, -6deg);
}
}
}