35 lines
715 B
SCSS
Executable File
35 lines
715 B
SCSS
Executable File
@import '../../style/imports';
|
|
|
|
|
|
.home-capsule {
|
|
position: absolute;
|
|
width: 80px;
|
|
border-radius: 48px;
|
|
border: 1px solid #f5f5f5;
|
|
z-index: 1;
|
|
background: rgba(255, 255, 255, 0.9);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
.iconfont {
|
|
|
|
/* use !important to prevent issues with browser extensions that change fonts */
|
|
font-family: 'iconfont' !important;
|
|
speak: none;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
font-variant: normal;
|
|
text-transform: none;
|
|
line-height: 1;
|
|
|
|
/* Better Font Rendering =========== */
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
|
|
}
|
|
|
|
.icon-home:before { content: "\e702"; }
|
|
}
|