-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from Daniel-Alvarenga/main
Add Search Users Page
- Loading branch information
Showing
13 changed files
with
376 additions
and
37 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,156 @@ | ||
#app{ | ||
height: 100vh; | ||
|
||
main { | ||
@include flex(row, flex-start, start); | ||
width: 100vw; | ||
height: 100vh; | ||
min-height: calc(100vh - 80px); | ||
border-bottom: 1px solid #0000008f; | ||
background-color: $primary-color-dark; | ||
position: relative; | ||
|
||
.content { | ||
@include flex(column, flex-start, start); | ||
width: calc(100% - 300px); | ||
height: 100%; | ||
|
||
@include m-screen(1200px) { | ||
width: 100%; | ||
} | ||
|
||
.search { | ||
@include flex(row, center, start); | ||
height: 50px; | ||
width: 62%; | ||
padding: 20px 30px 20px 80px; | ||
|
||
.box{ | ||
@include flex(row, cen, start); | ||
height: 50px; | ||
border-radius: 25px; | ||
width: calc(100% - 40px); | ||
background-color: $secondary-color-dark; | ||
|
||
input { | ||
color: $font-color-dark-2; | ||
width: 94%; | ||
height: 100%; | ||
padding-inline: 15px; | ||
outline: none; | ||
background: transparent; | ||
border: none; | ||
font-size: medium | ||
} | ||
|
||
button { | ||
@include flex-center; | ||
height: 100%; | ||
background-color: transparent; | ||
border: none; | ||
|
||
img { | ||
height: 55%; | ||
object-fit: cover; | ||
opacity: 0.8; | ||
filter: invert(100%) | ||
} | ||
} | ||
} | ||
} | ||
|
||
>.box { | ||
@include flex(column, flex-start, start); | ||
padding: 50px 0px 0px 100px; | ||
width: 70%; | ||
height: 100%; | ||
|
||
@include m-screen(1400px) { | ||
@include flex(column, center, center); | ||
padding: 50px 0px 0px 0px; | ||
width: 100%; | ||
} | ||
|
||
.resultado { | ||
@include flex(column, flex-end, start); | ||
color: $secondary-color-orange; | ||
margin-right: 10px; | ||
margin-bottom: 10px; | ||
height: 100%; | ||
font-size: small; | ||
font-weight: 200; | ||
@include font-inter(600); | ||
} | ||
|
||
|
||
.user { | ||
@include flex(column, flex-start, start); | ||
width: 80%; | ||
height: 90px; | ||
margin-bottom: 10px; | ||
|
||
@include m-screen(1400px) { | ||
width: 70%; | ||
} | ||
|
||
@include m-screen(800px) { | ||
width: 90%; | ||
} | ||
|
||
a { | ||
@include flex(row, flex-start, start); | ||
width: 100%; | ||
height: 100%; | ||
background-color: $secondary-color-dark; | ||
padding: 15px; | ||
border-radius: 5px; | ||
text-decoration: none; | ||
color: $font-color-dark; | ||
|
||
img { | ||
height: 60px; | ||
width: 60px; | ||
object-fit: cover; | ||
border-radius: 50%; | ||
margin-right: 20px; | ||
} | ||
|
||
.infoAluno { | ||
@include flex(row, space-between, start); | ||
width: calc(100% - 60px); | ||
height: 100%; | ||
|
||
.who { | ||
color: $primary-color-orange; | ||
margin-right: 10px; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.contentAluno { | ||
@include flex(column, flex-start, start); | ||
} | ||
|
||
.box-button{ | ||
height: 100%; | ||
@include flex(column, center, center); | ||
|
||
button{ | ||
background-color: $primary-color-orange; | ||
padding: 10px 20px; | ||
border-radius: 10px; | ||
color: $secondary-color-dark; | ||
border: solid 1px $primary-color-orange; | ||
} | ||
} | ||
|
||
} | ||
|
||
p { | ||
@include font-inter(600); | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
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
Oops, something went wrong.