-
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.
Add background slideshow and some styles
- Loading branch information
Showing
9 changed files
with
169 additions
and
52 deletions.
There are no files selected for viewing
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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 |
---|---|---|
@@ -1,44 +1,120 @@ | ||
body { | ||
margin: 0; | ||
padding: 0; | ||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
background: url('./images/leandro_1.jpeg') no-repeat center center fixed; | ||
background-size: cover; | ||
} | ||
|
||
.selector-container { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
backdrop-filter: blur(10px); | ||
} | ||
|
||
form { | ||
background: rgba(255, 255, 255, 0.8); | ||
padding: 20px; | ||
border-radius: 8px; | ||
} | ||
|
||
label { | ||
display: block; | ||
margin-bottom: 10px; | ||
} | ||
|
||
select { | ||
margin-left: 10px; | ||
} | ||
|
||
.video-container { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
} | ||
|
||
iframe { | ||
width: 50%; | ||
height: 80%; | ||
} | ||
margin: 0; | ||
padding: 0; | ||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
overflow: hidden; | ||
} | ||
|
||
.background-slideshow { | ||
position: fixed; | ||
width: 100%; | ||
height: 100%; | ||
top: 0; | ||
left: 0; | ||
z-index: -1; | ||
display: flex; | ||
} | ||
|
||
.background-slide { | ||
position: absolute; | ||
width: 100%; | ||
height: 100%; | ||
background-size: cover; | ||
background-position: center; | ||
opacity: 0; | ||
transition: opacity 1s ease-in-out; | ||
filter: blur(2px); | ||
} | ||
|
||
.background-slide.active { | ||
opacity: 1; | ||
} | ||
|
||
.selector-container { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
backdrop-filter: blur(10px); | ||
position: relative; | ||
z-index: 1; | ||
} | ||
|
||
form { | ||
background: rgba(255, 255, 255, 0.5); /* Add transparency to the form */ | ||
padding: 20px; | ||
border-radius: 8px; | ||
backdrop-filter: blur(5px); /* Add blur effect to the form background */ | ||
max-width: 400px; | ||
width: 100%; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
margin-left: 10px; | ||
margin-right: 10px; | ||
} | ||
|
||
.form-field { | ||
margin-bottom: 20px; | ||
} | ||
|
||
label { | ||
display: block; | ||
font-weight: bold; | ||
margin-top: 10px; | ||
margin-bottom: 10px; | ||
} | ||
|
||
select { | ||
width: 100%; | ||
padding: 10px; | ||
font-size: 16px; | ||
border-radius: 4px; | ||
border: 1px solid #ccc; | ||
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); | ||
appearance: none; | ||
background: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 5.646a.5.5 0 0 1 .708 0L8 11.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>') no-repeat right 10px center; | ||
background-size: 16px 16px; | ||
} | ||
|
||
button { | ||
display: inline-block; | ||
padding: 10px 20px; | ||
font-size: 16px; | ||
font-weight: bold; | ||
color: #fff; | ||
background-color: #007bff; | ||
border: none; | ||
border-radius: 4px; | ||
cursor: pointer; | ||
transition: background-color 0.3s ease; | ||
} | ||
|
||
button:hover { | ||
background-color: #0056b3; | ||
} | ||
|
||
|
||
select { | ||
margin-top: 10px; | ||
margin-left: 10px; | ||
} | ||
|
||
.video-container { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
position: relative; | ||
z-index: 1; | ||
padding: 20px; | ||
background: rgba(255, 255, 255, 0.8); | ||
border-radius: 8px; | ||
backdrop-filter: blur(5px); | ||
} | ||
|
||
iframe { | ||
width: auto; | ||
max-width: 100%; | ||
height: auto; | ||
} |
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