39 lines
545 B
SCSS
39 lines
545 B
SCSS
.author {
|
|
margin: 0;
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
.menu {
|
|
.menu-icon {
|
|
position: relative;
|
|
}
|
|
}
|
|
}
|
|
|
|
@keyframes enterIn {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
opacity: 100;
|
|
}
|
|
}
|
|
@media only screen and (min-width: 768px) {
|
|
#pridecodes-code-corner-svg {
|
|
width: 150px;
|
|
}
|
|
}
|
|
@media only screen and (max-width: 767px) {
|
|
#pridecodes-code-corner-svg {
|
|
width: 75px;
|
|
}
|
|
}
|
|
#pridecodes-code-corner-svg {
|
|
animation: enterIn 2s;
|
|
transition: all 0.2s ease-in-out;
|
|
&:hover {
|
|
transform: scale(1.1);
|
|
transform-origin: left top;
|
|
}
|
|
}
|