-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 2314c87
Showing
29 changed files
with
1,039 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Url do site hospedado | ||
|
||
https://wevertonluis.github.io/Helial/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
letter-spacing: .7px; | ||
scroll-behavior: smooth; | ||
box-sizing: border-box; | ||
text-decoration: none; | ||
} | ||
|
||
/* linkando font externa */ | ||
@font-face { | ||
font-family: "Azonix"; | ||
src: | ||
url("/Fontes/Futurism.otf"); | ||
} | ||
|
||
@font-face { | ||
font-family: "Gotham"; | ||
src: | ||
url("/Fontes/GothamBook.ttf"); | ||
} | ||
/* Fim do link da font externa */ | ||
|
||
|
||
body{ | ||
line-height: 1.5; | ||
font-family: "Gotham", sans-serif; | ||
} | ||
|
||
.titulo-principal{ | ||
font-family: "Azonix", serif; | ||
} | ||
|
||
.bg-color, .footer, center { | ||
background-image: linear-gradient(110deg, | ||
|
||
hsl(223deg 63% 9%) 0%, | ||
hsl(226deg 63% 9%) 13%, | ||
hsl(226deg 65% 9%) 26%, | ||
hsl(228deg 65% 9%) 39%, | ||
hsl(220deg 70% 9%) 52%, | ||
hsl(230deg 70% 9%) 65%, | ||
hsl(233deg 72% 9%) 77%, | ||
hsl(235deg 72% 9%) 89%, | ||
hsl(235deg 73% 9%) 100%); | ||
} | ||
|
||
/* Ativando o Scrollspy */ | ||
.scrollspy-example { | ||
height: 200px; | ||
margin-top: .5rem; | ||
overflow: auto; | ||
} | ||
|
||
.rounded-2 { | ||
border-radius: var(--bs-border-radius)!important; | ||
} | ||
|
||
.bg-body-tertiary { | ||
--bs-bg-opacity: 1; | ||
background-color: rgba(var(--bs-tertiary-bg-rgb),var(--bs-bg-opacity))!important; | ||
} | ||
|
||
*, ::after, ::before { | ||
box-sizing: border-box; | ||
} | ||
|
||
.bd-example { | ||
--bd-example-padding: 1rem; | ||
position: relative; | ||
padding: var(--bd-example-padding); | ||
margin: 0 -1.5rem 1rem; | ||
border: solid var(--bs-border-color); | ||
border-width: 1px 0; | ||
} | ||
|
||
.bd-example>:last-child, .bd-example>nav:last-child .breadcrumb { | ||
margin-bottom: 0; | ||
} | ||
/* Fim ativando o Scrollspy */ | ||
|
||
/********************** Seção do footer ********************/ | ||
.footer-section .footer{ | ||
height: 100%; | ||
padding: .5rem; | ||
display: grid; | ||
grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); | ||
text-align: center; | ||
gap: .5rem; | ||
background-color: #000000; | ||
} | ||
|
||
center{ | ||
background-color: #000000; | ||
color: #dadada; | ||
padding: 2rem; | ||
} | ||
|
||
.footer-section .footer h3{ | ||
font-weight: 500; | ||
padding: .5rem 0; | ||
color: #dadada; | ||
} | ||
.footer-section .footer h4{ | ||
line-height: 1.5; | ||
letter-spacing: .1rem; | ||
font-weight: 300; | ||
color: #dadada; | ||
} | ||
/******************** Fim seção do footer *****************/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
:root{ | ||
--green: #1b1357; | ||
--green-dark: #1b1357; | ||
--light-grey: #f1f4f6; | ||
} | ||
|
||
*{ | ||
font-family: 'Roboto', sans-serif; | ||
} | ||
|
||
/* misc stylings */ | ||
ul li{ | ||
list-style-type: none; | ||
} | ||
.container{ | ||
max-width: 1200px; | ||
} | ||
.display-1{ | ||
letter-spacing: 1px; | ||
} | ||
.bg-green{ | ||
background-color: var(--green)!important; | ||
} | ||
.bg-grey{ | ||
background-color: var(--light-grey); | ||
} | ||
.text-green{ | ||
color: var(--green); | ||
} | ||
.btn{ | ||
border: 2px solid #fff; | ||
border-radius: 1.5rem; | ||
padding: 0.6rem 0; | ||
width: 160px; | ||
} | ||
.btn-green{ | ||
background-color: var(--green); | ||
color: #fff; | ||
padding: 0.55rem 0; | ||
width: 140px; | ||
} | ||
.btn-green:hover{ | ||
color: var(--green); | ||
background: #fff; | ||
border-color: var(--green); | ||
} | ||
.lh-lg{ | ||
line-height: 1.7!important; | ||
} | ||
.circle-icon{ | ||
width:55px; | ||
height: 55px; | ||
border-radius: 50%; | ||
background-color: var(--green); | ||
} | ||
|
||
/* header */ | ||
header{ | ||
height: 100vh; | ||
} | ||
.navbar-brand .fa{ | ||
font-size: 1.3rem; | ||
} | ||
.nav-icons p{ | ||
font-size: 1rem; | ||
margin-right: 0.6rem; | ||
} | ||
.nav-icons{ | ||
font-size: 1.2rem; | ||
} | ||
.btn-header:hover{ | ||
background-color: #fff; | ||
color: var(--green)!important; | ||
} | ||
.phone-img img{ | ||
width: 500px; | ||
} | ||
|
||
/* section 6 */ | ||
#sec-6{ | ||
background: linear-gradient(rgba(36, 3, 94, 0.9), rgba(36, 3, 94, 0.9)), url(images/section-6-bg.jpg) center/cover no-repeat; | ||
} | ||
#sec-6 .circle-icon{ | ||
width: 95px; | ||
height: 95px; | ||
} | ||
|
||
/* section 7 */ | ||
#sec-7 .card{ | ||
border: none; | ||
} | ||
|
||
/* section 8 */ | ||
#sec-8 .carousel-item img{ | ||
width: 180px!important; | ||
} | ||
|
||
/* section 9 */ | ||
.pricing-item{ | ||
border-radius: 0.3rem; | ||
overflow: hidden; | ||
max-width: 340px; | ||
} | ||
.pricing-title{ | ||
background-color: var(--green-dark); | ||
} | ||
.pricing-price, .pricing-item ul li{ | ||
border-bottom: 1px solid rgba(255, 255, 255, 0.5); | ||
padding: 0.9rem 0; | ||
} | ||
.pricing-item .btn:hover{ | ||
background: transparent!important; | ||
color: #fff; | ||
} |
Oops, something went wrong.