-
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.
The ALMOST Last Update: Quiz e back-end finalizado
- Loading branch information
1 parent
8c7788e
commit 4c8671c
Showing
39 changed files
with
1,682 additions
and
767 deletions.
There are no files selected for viewing
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.
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.
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.
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 |
---|---|---|
@@ -0,0 +1,136 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Kanit&family=Montserrat:wght@800&family=Raleway:wght@400;600&family=Rubik+Mono+One&display=swap'); | ||
|
||
* { | ||
overflow: hidden; | ||
font-family: 'Raleway', sans-serif; | ||
} | ||
|
||
body { | ||
background-image: url(../assets/img/bg_sobre.png); | ||
display: flex; | ||
align-items: start; | ||
justify-content: center; | ||
padding: 20px; | ||
min-height: 100vh; | ||
} | ||
|
||
.box { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
width: 43vw; | ||
height: 90vh; | ||
backdrop-filter: blur(40px); | ||
border-radius: 15px; | ||
border: 2px solid #EBD937; | ||
box-shadow: 2px 4px 10px #EBD937; | ||
} | ||
.box img { | ||
width: 190px; | ||
} | ||
|
||
.box button { | ||
width: 280px; | ||
height: 38px; | ||
border-radius: 25px; | ||
/* margin-left: 37%; | ||
margin-top: 30px; */ | ||
padding-left: 10px; | ||
outline: none; | ||
border: none; | ||
|
||
padding: 10px 25px; | ||
background-color: #EBD937; | ||
color: #121212; | ||
font-weight: 500; | ||
text-decoration: none; | ||
letter-spacing: 1px; | ||
transition: 0.2s ease-in-out; | ||
font-family: 'Montserrat', sans-serif; | ||
border: 1px solid #121212; | ||
} | ||
.box button:hover { | ||
background-color: #121212; | ||
color: #EBD937; | ||
border: 1px solid #EBD937; | ||
} | ||
|
||
.form-box { | ||
padding: 30px 40px; | ||
width: 60%; | ||
border-radius: 0 20px 20px 0; | ||
} | ||
|
||
.form-box h2 { | ||
font-size: 30px; | ||
color: #ECF8E5; | ||
} | ||
/* | ||
select { | ||
color: #121212; | ||
border: 2px solid #121212; | ||
border-radius: 10px; | ||
outline: none; | ||
width: 15vw; | ||
height: 5vh; | ||
font-family: 'Raleway', sans-serif; | ||
padding-left: 5px; | ||
} */ | ||
|
||
form .input-group select { | ||
width: 100%; | ||
height: 38px; | ||
background-color: #ECF8E5; | ||
border-radius: 15px; | ||
padding-left: 7px; | ||
outline: none; | ||
border: none; | ||
} | ||
|
||
.form-box form { | ||
margin: 20px 0; | ||
} | ||
form .input-group { | ||
margin-bottom: 15px; | ||
} | ||
|
||
form .input-group label { | ||
color: #ECF8E5; | ||
font-weight: bold; | ||
display: block; | ||
margin-bottom: 5px; | ||
} | ||
|
||
form .input-group input { | ||
width: 100%; | ||
height: 38px; | ||
background-color: #ECF8E5; | ||
border-radius: 15px; | ||
padding-left: 7px; | ||
outline: none; | ||
border: none; | ||
} | ||
|
||
.input-group2 { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
|
||
.input-group2 p { | ||
font-weight: bold; | ||
color: #EBD937; | ||
margin-top: 15px; | ||
} | ||
.input-group2 p a { | ||
font-weight: bold; | ||
color: #ECF8E5; | ||
} | ||
|
||
p { | ||
font-weight: bold; | ||
color: #EBD937; | ||
margin-top: 15px; | ||
} |
Oops, something went wrong.