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
88 changes: 88 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
* {
background-size: cover;
}
.fa {
transform: scale(1.2,1.3);
}

.fa-star,.fa-star-half-o {
transform: scale(0.7,0.7);
color: orange;
}

.h1 {
letter-spacing: 3.5px;
font-weight: 900px;
font-family: "Lucida Console";
}

.fon {
font-size: 30px;
}

.rev {
font-size: 13.5px;
font-weight: 400;
}

.parallax-window {
background: transparent;
}

.navbar {
opacity: 0.9;
}

#faq {
font-size: 40px;
font-family: "Georgia";
text-align: center;
background: linear-gradient(to right,#0dac97,#64f1df,#cffaf4,#ffffff );
padding-top: 3em;
padding-bottom: 3em;
}

.t {

background: #0dac97!important;
text-align: center;
font-family: "Georgia";
font-size: 24px;
}

#acc div{
background: linear-gradient(to right,#696ddf,#464cf8,#888cfe,#b4b6e5,#ffffff );
}

.end {
font-family: "Comic Sans MS";
}

.last {
padding-top: 900px;
}

#menubutton {
display:none;
}

@media only screen and (max-width: 990px) {

#menubutton {
display:block;
cursor: pointer;
}

.navbar-nav {
display:none;
}

.navbar-nav.active {
display: block;
min-width: 100%;
background: #fff;
margin-left: 0 !important;
margin-right: 0 !important;
}

}
1,173 changes: 544 additions & 629 deletions index.html

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
8 changes: 8 additions & 0 deletions js/scripts.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
$(function() {
$("#acc").accordion();
$(document).animateScroll();
$(window).trigger('resize').trigger('scroll');
$("#menubutton").click(function(){
$('.navbar-nav').toggleClass('active');
})
});