-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: remove html and css of more info, fail import InputText in mor…
…e-info
- Loading branch information
Showing
17 changed files
with
118 additions
and
241 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes
File renamed without changes
File renamed without changes
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,94 @@ | ||
.more-info-container { | ||
max-width: 940px; | ||
width: 100%; | ||
display: flex; | ||
flex-wrap: wrap; | ||
justify-content: center; | ||
background-color: #fff; | ||
border-radius: 20px; | ||
} | ||
|
||
.more-info-header{ | ||
padding: 20px; | ||
width: 100%; | ||
align-items: center; | ||
display: flex; | ||
flex-direction: column; | ||
gap: 20px; | ||
&__title{ | ||
font-size: 2rem; | ||
color: #39434F; | ||
} | ||
&__sub-title { | ||
color: #606873; | ||
} | ||
} | ||
|
||
.more-info-card { | ||
max-width: 630px; | ||
min-width: 630px; | ||
display: flex; | ||
flex-wrap: wrap; | ||
justify-content: space-between; | ||
padding: 20px; | ||
&__description, | ||
&__input-group{ | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-between; | ||
gap: 20px; | ||
max-width: 46%; | ||
} | ||
} | ||
|
||
.label-check-radios{ | ||
display: flex; | ||
align-items: center; | ||
gap: 5px; | ||
} | ||
.more-info-card__input-group__checkbox-group { | ||
display: flex; | ||
min-width: 60px; | ||
gap: 20px; | ||
} | ||
|
||
.more-info__card-text-group { | ||
width: 100%; | ||
|
||
input { | ||
width: 100%; | ||
padding: 5px; | ||
border: 0; | ||
border-bottom: 1px solid #606873; | ||
|
||
&::placeholder { | ||
line-height: 21px; | ||
font-size: 0.875rem; | ||
} | ||
} | ||
} | ||
|
||
|
||
// apenas marcação uma task para o checkbos que não é minha | ||
// Esconder o input radio | ||
input[type='radio'] { | ||
display: none; | ||
} | ||
|
||
// Estilizar a aparência do label para se parecer com um checkbox | ||
input[type='radio'] + label .checkmark { | ||
display: inline-block; | ||
width: 20px; | ||
height: 20px; | ||
border: 2px solid #999; | ||
border-radius: 3px; | ||
cursor: pointer; | ||
} | ||
|
||
// Estilizar quando o input radio está selecionado | ||
input[type='radio']:checked + label .checkmark { | ||
background-color: #5649e4; | ||
border-color: #5649e4; | ||
color: #fff; | ||
} | ||
|