Skip to content

Commit

Permalink
webkit-background-clip: text;
Browse files Browse the repository at this point in the history
   -moz-background-clip: text;
        background-clip: text;
        animation-fill-mode: forwards;
animation: fadeIn 5s;
-webkit-animation: fadeIn 5s;
-moz-animation: fadeIn 5s;
-o-animation: fadeIn 5s;
-ms-animation: fadeIn 5s;
  • Loading branch information
ricoThaka authored Feb 16, 2024
1 parent 8c28a7e commit 0c1802c
Showing 1 changed file with 53 additions and 3 deletions.
56 changes: 53 additions & 3 deletions _sass/jekyll-theme-hacker.scss
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,7 @@ table {
body {
color: white;
background: url(https://raw.githubusercontent.com/ThakaRashard/bubblegumpop/gh-pages/img/bd_type1_citycrop.jpg) no-repeat center center fixed;
font-family: Ubuntu, sans-serif;
line-height: 1.5;
line-height: 1.5;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
Expand Down Expand Up @@ -147,6 +146,8 @@ header h1 {
0 0 5px rgba(181, 232, 83, 0.1),
0 0 10px rgba(181, 232, 83, 0.1); */
color: #fff;
font-size: 100px;
font-weight: 900;
text-shadow:
0 0 7px #fff,
0 0 10px #fff,
Expand All @@ -158,14 +159,63 @@ header h1 {
0 0 125px #0DCBFF;
letter-spacing: -1px;
-webkit-font-smoothing: antialiased;

webkit-background-clip: text;
-moz-background-clip: text;
background-clip: text;
animation-fill-mode: forwards;
animation: fadeIn 5s;
-webkit-animation: fadeIn 5s;
-moz-animation: fadeIn 5s;
-o-animation: fadeIn 5s;
-ms-animation: fadeIn 5s;
@include media-max-width($container-max-width) {
margin-left: 0;
}

}



.fade-in-text {
/* font-family: "Poppins", sans-serif;*/

webkit-background-clip: text;
-moz-background-clip: text;
background-clip: text;
animation-fill-mode: forwards;
animation: fadeIn 5s;
-webkit-animation: fadeIn 5s;
-moz-animation: fadeIn 5s;
-o-animation: fadeIn 5s;
-ms-animation: fadeIn 5s;
}

@keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}

@-moz-keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}

@-webkit-keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}

@-o-keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}

@-ms-keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}


header h1:before {
/* content: "./BUBBLEGUMPOP"; */
font-size: 4rem;
Expand Down

0 comments on commit 0c1802c

Please sign in to comment.