-
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
Showing
1 changed file
with
348 additions
and
0 deletions.
There are no files selected for viewing
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,348 @@ | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
body { | ||
font-family: sans-serif; | ||
min-width: 320px; | ||
} | ||
|
||
nav { | ||
height: 10vh; | ||
background-color: #1976D2; | ||
} | ||
|
||
.nav-links { | ||
display: flex; | ||
list-style: none; | ||
width: 50%; | ||
height: 100%; | ||
justify-content: space-evenly; | ||
align-items: center; | ||
margin-left: auto; | ||
} | ||
|
||
.nav-links li a { | ||
color: white; | ||
text-decoration: none; | ||
font-size: 1rem; | ||
} | ||
|
||
|
||
/* CONTENT */ | ||
|
||
|
||
#page-wrap { | ||
width: 800px; | ||
margin: 0 auto; | ||
} | ||
|
||
.main { | ||
display:flex; | ||
flex-direction: column; | ||
justify-content:center; | ||
align-items:center; | ||
text-align: center; | ||
} | ||
|
||
|
||
.container h1 { | ||
color: rgb(43, 43, 43); | ||
padding: 2rem; | ||
} | ||
|
||
.container p { | ||
color: #6b6b6b; | ||
padding-bottom: 3rem; | ||
text-align: justify; | ||
} | ||
|
||
.container-red h1 { | ||
color: white; | ||
padding: 2rem; | ||
} | ||
|
||
.container-red p { | ||
color: white; | ||
padding-bottom: 3rem; | ||
text-align: justify; | ||
|
||
} | ||
|
||
#about-us { | ||
|
||
height: fit-content; | ||
|
||
} | ||
|
||
#about-us p { | ||
text-align: center; | ||
padding-bottom: 1rem; | ||
|
||
} | ||
.about-us p { | ||
text-transform: capitalize; | ||
} | ||
|
||
#video1 { | ||
width: 100%; | ||
height: auto; | ||
padding-bottom: 20px; | ||
} | ||
/* INTRO */ | ||
|
||
.container-intro h1 { | ||
color: rgb(43, 43, 43); | ||
padding: 2rem; | ||
} | ||
|
||
.container-intro p { | ||
color: #6b6b6b; | ||
padding-bottom: 1rem; | ||
text-align: justify; | ||
width: 90%; | ||
max-width: 960px; | ||
margin: 0 auto; | ||
text-indent: 1rem; | ||
} | ||
|
||
#thanks { | ||
margin-bottom: 50px; | ||
} | ||
|
||
.intro img { | ||
width: 75%; | ||
height: auto; | ||
max-width: 800px; | ||
align-self: center; | ||
vertical-align: middle; | ||
padding-bottom: 2rem; | ||
} | ||
|
||
/* TOUR */ | ||
.dicionario { | ||
height: fit-content; | ||
} | ||
|
||
.dicionario img { | ||
display: none; | ||
} | ||
.dicionario p { | ||
display: none; | ||
} | ||
|
||
/* VIDEOS */ | ||
.videos iframe { | ||
width: 90vw; | ||
height: 40vh; | ||
margin: 0 auto; | ||
max-width: 800px; | ||
|
||
} | ||
#videoyoutube { | ||
top: 3vh; | ||
} | ||
@media screen and (max-width: 3000px) { | ||
.container { | ||
height: 100vh; | ||
margin: 0 auto; | ||
} | ||
|
||
.red-background { | ||
width: 100vw; | ||
background: #319ffe; | ||
} | ||
|
||
.container-red { | ||
background: #319ffe; | ||
height: 100vh; | ||
width: 800px; | ||
margin: 0 auto; | ||
} | ||
|
||
.dicionario iframe { | ||
width: 90vw; | ||
height: 85vh; | ||
margin: 0 auto; | ||
max-width: 800px; | ||
} | ||
} | ||
|
||
|
||
|
||
|
||
@media screen and (max-width: 1800px) { | ||
.container { | ||
height: 100vh; | ||
width: 800px; | ||
margin: 0 auto; | ||
} | ||
|
||
.red-background { | ||
width: 100vw; | ||
background:#319ffe; | ||
} | ||
|
||
.container-red { | ||
background: #319ffe; | ||
height: 100vh; | ||
width: 800px; | ||
margin: 0 auto; | ||
} | ||
|
||
#dicionario { | ||
width: 100vw; | ||
height: 100vh; | ||
background: #6b6b6b; | ||
} | ||
|
||
#dicionario iframe{ | ||
width: 100vw; | ||
height: 100vh; | ||
margin: 0 auto; | ||
} | ||
} | ||
|
||
@media screen and (max-width: 960px){ | ||
|
||
.line { | ||
width: 30px; | ||
height: 3px; | ||
background: white; | ||
margin: 5px; | ||
} | ||
|
||
nav { | ||
position: relative; | ||
} | ||
|
||
.hamburger { | ||
position: absolute; | ||
cursor: pointer; | ||
right: 5%; | ||
top: 50%; | ||
transform: translate(-5%, -50%); | ||
z-index: 2; | ||
} | ||
|
||
.nav-links { | ||
position: fixed; | ||
background: #1976D2; | ||
height: 100vh; | ||
width: 100%; | ||
flex-direction: column; | ||
clip-path: circle(100px at 90% -20%); | ||
-webkit-clip-path: circle(100px at 90% -20%); | ||
transition: all 1s ease-out; | ||
pointer-events: none; | ||
} | ||
|
||
.nav-links.open { | ||
clip-path: circle(1500px at 90% -10%); | ||
-webkit-clip-path: circle(1500px at 90% -10%); | ||
pointer-events: all; | ||
} | ||
|
||
.nav-links.close { | ||
position: fixed; | ||
background: #1976D2; | ||
height: 100vh; | ||
width: 100%; | ||
flex-direction: column; | ||
clip-path: circle(100px at 90% -20%); | ||
-webkit-clip-path: circle(100px at 90% -20%); | ||
transition: all 1s ease-out; | ||
pointer-events: none; | ||
} | ||
|
||
.container { | ||
height: 100vh; | ||
width: 90%; | ||
margin: 0 auto; | ||
} | ||
|
||
.red-background { | ||
width: 100vw; | ||
background: #319ffe; | ||
} | ||
|
||
.container-red { | ||
background: #319ffe; | ||
height: 100vh; | ||
min-height: 100vh; | ||
width: 90%; | ||
margin: 0 auto; | ||
} | ||
|
||
.tour img { | ||
width: 100%; | ||
} | ||
|
||
|
||
.intro img { | ||
width: 100%; | ||
height: auto; | ||
margin: 0 auto; | ||
} | ||
|
||
#dicionario { | ||
width: 100%; | ||
height: 100%; | ||
background: #6b6b6b; | ||
} | ||
.dicionario { | ||
display:flex; | ||
flex-direction: column; | ||
justify-content:center; | ||
align-items:center; | ||
} | ||
.dicionario iframe { | ||
display: none; | ||
} | ||
|
||
.dicionario img { | ||
display: flex; | ||
max-width:100%; | ||
height:auto; | ||
} | ||
|
||
.dicionario p { | ||
display: flex; | ||
margin: auto 0; | ||
text-align: center; | ||
} | ||
|
||
|
||
#pdf { | ||
display: hidden; | ||
} | ||
.nav-links li { | ||
opacity: 0; | ||
} | ||
.nav-links li a { | ||
font-size: 25px; | ||
} | ||
.nav-links li:nth-child(1) { | ||
transition: all 0.5s ease 0.2s; | ||
} | ||
.nav-links li:nth-child(2) { | ||
transition: all 0.5s ease 0.4s; | ||
} | ||
.nav-links li:nth-child(3) { | ||
transition: all 0.5s ease 0.6s; | ||
} | ||
.nav-links li:nth-child(4) { | ||
transition: all 0.5s ease 0.8s; | ||
} | ||
li.fade { | ||
opacity: 1; | ||
} | ||
|
||
} | ||
|
||
|
||
|
||
|
||
|