1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /*--------------------------------------------------------------
- # General
- --------------------------------------------------------------*/
- body {
- font-family: $font-default;
- color: $default;
- }
- a {
- text-decoration: none;
- color: $primary;
- }
- a:hover {
- color: lighten($primary, 10);
- text-decoration: none;
- }
- h1, h2, h3, h4, h5, h6 {
- font-family: $font-primary;
- }
- #main {
- margin-top: 90px;
- }
- /*--------------------------------------------------------------
- # Back to top button
- --------------------------------------------------------------*/
- .back-to-top {
- position: fixed;
- visibility: hidden;
- opacity: 0;
- right:15px;
- bottom: 15px;
- z-index: 998;
- background: $primary;
- width: 40px;
- height: 40px;
- border-radius: 50px;
- transition: all 0.4s;
- i {
- font-size: 24px;
- color: #fff;
- line-height: 0;
- }
- &:hover {
- background: lighten($primary, 8);
- color: #fff;
- }
- &.active {
- visibility: visible;
- opacity: 1;
- }
- }
- /*--------------------------------------------------------------
- # Disable aos animation delay on mobile devices
- --------------------------------------------------------------*/
- @media screen and (max-width: 768px) {
- [data-aos-delay] {
- transition-delay: 0 !important;
- }
- }
|