Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 14 additions & 5 deletions assets/css/style.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
* {
box-sizing: border-box;
git ox-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Baloo 2', cursive;
Expand Down Expand Up @@ -2525,7 +2525,7 @@ select {
/* Style the faq-page panel. Note: hidden by default */

.faq-page:after {
content: "\02795";
content: "\02795";
font-size: 13px;
color: #777;
float: right;
Expand Down Expand Up @@ -2904,13 +2904,14 @@ select {
background-color: #00ffd5 ;
} */
#btn-download {
background: #8f8b63;
background: #63698f;
border-color: #8f8b63;
background-image: -webkit-linear-gradient(top, #8f8b63, #424136);
background-image: -moz-linear-gradient(top, #8f8b63, #424136);
background-image: -ms-linear-gradient(top, #8f8b63, #424136);
background-image: -o-linear-gradient(top, #8f8b63, #424136);
background-image: linear-gradient(to bottom, #8f8b63, #424136);
/* background-image: linear-gradient(to bottom, #8f8b63, #424136); */
background-image: linear-gradient(to bottom, #0876e0f7, #2b40ffd9);
-webkit-border-radius: 6;
-moz-border-radius: 6;
border-radius: 6px;
Expand All @@ -2924,9 +2925,17 @@ select {
}

#btn-download:hover {
background: #424136;
background: #2a33e4ca;
border-color: #8f8b63;
text-decoration: none;

background: linear-gradient(#1610c1 0 0) var(--p, 0) no-repeat;
transition: .6s, background-position 0s;
}

.hover:hover {
--p: 100%;
color: #0700c9;
}

.card-bg {
Expand Down
2 changes: 1 addition & 1 deletion assets/js/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ var TxtType = function (el, toRotate, period) {
this.toRotate = toRotate;
this.el = el;
this.loopNum = 0;
this.period = parseInt(period, 10) || 2000;
this.period = parseInt(period, 10) || 2000;
this.txt = "";
this.tick();
this.isDeleting = false;
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html lang="en">

<head>
<head>
<!-- Required meta tags -->
<meta name="theme-color" content="#f2f2f2">
<meta name="msapplication-navbutton-color" content="#f2f2f2">
Expand Down