LoveIt/assets/css/_page/_home.scss

73 lines
1.6 KiB
SCSS
Raw Normal View History

2020-02-13 18:30:33 +01:00
@mixin page-home($profile, $posts) {
.home {
@if $profile {
.home-profile {
@include transform(translateY(if($posts, 0, 16vh)));
padding: if($posts, 2rem, 0) 0 .5rem;
2020-02-13 18:30:33 +01:00
text-align: center;
.home-avatar {
padding: 0.6rem;
img {
display: inline-block;
2020-02-13 18:30:33 +01:00
width: if($posts, 6rem, 8rem);
height: auto;
margin: 0 auto;
@include border-radius(100%);
@include box-shadow(0 0 0 .3618em rgba(0, 0, 0, .05));
@include transition(all 0.4s ease);
2020-02-13 18:30:33 +01:00
cursor: pointer;
2019-08-11 19:36:19 +02:00
2020-02-13 18:30:33 +01:00
&:hover {
position: relative;
@include transform(translateY(-.75rem));
2020-02-13 18:30:33 +01:00
cursor: pointer;
}
}
}
2019-08-11 19:36:19 +02:00
.home-subtitle {
2020-02-13 18:30:33 +01:00
font-size: 1rem;
font-weight: normal;
margin: 0;
padding: .4rem;
}
.social-links {
padding: .4rem 0;
a, i {
font-size: 1.6rem;
line-height: 2rem;
}
2020-02-13 18:30:33 +01:00
img {
height: 1.4rem;
padding: 0 .25rem;
2020-02-13 18:30:33 +01:00
}
}
.home-disclaimer {
font-size: 1rem;
line-height: 1.4rem;
font-weight: normal;
margin: 0;
padding: .4rem;
color: $global-font-secondary-color;
.dark & {
color: $global-font-secondary-color-dark;
}
}
2020-02-13 18:30:33 +01:00
}
}
2020-02-13 18:30:33 +01:00
@if $posts {
@include summary;
2019-08-24 13:32:41 +02:00
}
2019-08-11 19:36:19 +02:00
}
}
2020-02-13 18:30:33 +01:00
@include page-home($home-profile, $home-posts);