33 lines
694 B
SCSS
33 lines
694 B
SCSS
|
#navigation {
|
||
|
z-index: 10000;
|
||
|
position: fixed;
|
||
|
bottom: 10px;
|
||
|
right: 10px;
|
||
|
opacity: 0;
|
||
|
a {
|
||
|
background-color: transparent;
|
||
|
}
|
||
|
}
|
||
|
.aboutflex {
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
flex-direction: row;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
background: linear-gradient(230deg, $color1, $color2, $color3, $color4, $color5);
|
||
|
background-position: center;
|
||
|
background-repeat: repeat;
|
||
|
-webkit-animation: AnimationName 60s ease infinite;
|
||
|
-moz-animation: AnimationName 60s ease infinite;
|
||
|
animation: AnimationName 60s ease infinite;
|
||
|
background-repeat: repeat;
|
||
|
|
||
|
}
|
||
|
.logo {
|
||
|
flex: 1 0 300px;
|
||
|
background-size: 100%;
|
||
|
background-repeat: repeat;
|
||
|
max-width: 300px;
|
||
|
max-height: 300px;
|
||
|
|
||
|
}
|