-
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
1 parent
f4aee3f
commit 676b780
Showing
155 changed files
with
4,669 additions
and
4,805 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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 was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
.container { | ||
display: flex; | ||
} | ||
|
||
.body { | ||
width: 100%; | ||
overflow: hidden; | ||
} | ||
|
||
/* Created an animated css class */ | ||
.animated_padding_in { | ||
padding-left: 292px; | ||
transition: all 2s ease-out; | ||
} | ||
.animated_padding_out { | ||
padding-left: 0; | ||
transition: all 0.5s ease-out; | ||
} | ||
|
||
.sidebar { | ||
background: #2C3137; | ||
padding: 24px 18px; | ||
width: 256px; | ||
height: 100vh; | ||
position: fixed; | ||
} | ||
|
||
.navbar { | ||
width: 100%; | ||
max-width: 1440px; | ||
z-index: 10; | ||
} | ||
|
||
|
||
|
||
//MEDIA QUERY FOR 1024px | ||
@media screen and (max-width: 1024px) { | ||
.sidebar { | ||
box-sizing: border-box; | ||
width: 96px; | ||
padding: 24px 4px; | ||
} | ||
.animated_padding_in { | ||
padding-left: 96px; | ||
transition: all .2s ease-out; | ||
} | ||
} |
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
40 changes: 0 additions & 40 deletions
40
src/components/AdSuggestion/AdSuggestionForms/Form.module.css
This file was deleted.
Oops, something went wrong.
42 changes: 42 additions & 0 deletions
42
src/components/AdSuggestion/AdSuggestionForms/Form.module.scss
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,42 @@ | ||
$color_1: #fff; | ||
$color_2: #2793ff; | ||
$background-color_1: #2c3137; | ||
|
||
form { | ||
width: 389px; | ||
} | ||
|
||
.formInput { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.cryptoinput { | ||
padding: 16px; | ||
border-radius: 8px; | ||
color: $color_1; | ||
font-size: 16px; | ||
font-weight: 500; | ||
outline: none; | ||
border: solid 1px #35373e; | ||
background-color: $background-color_1; | ||
margin-top: 8px; | ||
margin-bottom: 24px; | ||
} | ||
|
||
label { | ||
font-size: 18px; | ||
font-weight: normal; | ||
color: $color_1; | ||
p { | ||
margin: 0; | ||
} | ||
} | ||
|
||
.label__url { | ||
font-size: 14px; | ||
span { | ||
font-weight: bold; | ||
color: $color_2; | ||
} | ||
} |
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
2 changes: 1 addition & 1 deletion
2
src/components/AdSuggestion/AdSuggestionForms/SuggestAds/SuggestAds.jsx
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
60 changes: 0 additions & 60 deletions
60
src/components/AdSuggestion/AdSuggestionForms/SuggestAds/SuggestAds.module.css
This file was deleted.
Oops, something went wrong.
58 changes: 58 additions & 0 deletions
58
src/components/AdSuggestion/AdSuggestionForms/SuggestAds/SuggestAds.module.scss
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,58 @@ | ||
.suggestAd__container { | ||
margin: 50px; | ||
|
||
.suggestAd__span { | ||
display: flex; | ||
align-items: center; | ||
gap: 20px; | ||
margin-bottom: 35px; | ||
img { | ||
cursor: pointer; | ||
} | ||
h3 { | ||
font-weight: 800; | ||
font-size: 32px; | ||
} | ||
} | ||
|
||
.projectType { | ||
margin: 0; | ||
font-weight: 600; | ||
font-size: 18px; | ||
margin-bottom: 16px; | ||
} | ||
|
||
.suggestAd__buttons { | ||
display: flex; | ||
gap: 8px; | ||
margin-bottom: 77px; | ||
} | ||
} | ||
|
||
|
||
::-webkit-calendar-picker-indicator { | ||
filter: invert(2); | ||
} | ||
|
||
|
||
//MEDIA QUERY FOR 1024px | ||
@media screen and (max-width: 1024px) { | ||
.suggestAd__span { | ||
img { | ||
height: 26.67px; | ||
width: 26.67px; | ||
} | ||
h3 { | ||
font-size: 24px; | ||
} | ||
} | ||
|
||
.suggestAd-buttons { | ||
gap: 12px; | ||
margin-bottom: 44px; | ||
button { | ||
font-size: 16px; | ||
padding: 12px 16px; | ||
} | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
src/components/AdSuggestion/AdSuggestionStat/AdSuggestionStatus.jsx
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.