-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#175 [CSS] add: Style to quickcreation project frontend
- Loading branch information
1 parent
b36fdfb
commit 9e7a5db
Showing
17 changed files
with
139 additions
and
15 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@import "form"; |
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,22 @@ | ||
form { | ||
input, select, textarea { | ||
background: #fff; | ||
} | ||
|
||
select.widthcentpercentminusx, span.widthcentpercentminusx:not(.select2-selection):not(.select2-dropdown), input.widthcentpercentminusx { | ||
width: 100% !important; | ||
margin-bottom: 2em; | ||
|
||
.select2-container--default, .select2-selection--multiple { | ||
--border-color: var(--form-element-border-color); | ||
width: 100%; | ||
border:var(--border-width) solid var(--border-color); | ||
border-radius:var(--border-radius); | ||
outline:0; | ||
|
||
input { | ||
margin: 0; | ||
} | ||
} | ||
} | ||
} |
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,20 @@ | ||
.fiche { | ||
margin-left: 0 !important; | ||
margin-right: 0 !important; | ||
} | ||
form { | ||
margin: 0; | ||
} | ||
|
||
.project-container { | ||
display: flex; | ||
flex-direction: column; | ||
height: 100vh; | ||
} | ||
|
||
.page-content { | ||
background: #F7F7F7; | ||
padding: 1rem; | ||
height: calc( 100% - 160px); | ||
overflow: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.page-footer { | ||
height: 80px; | ||
padding: 1rem; | ||
|
||
button { | ||
margin: 0; | ||
} | ||
} |
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,10 @@ | ||
.page-header { | ||
background: #fff; | ||
padding: 2rem 1rem 0rem 1rem; | ||
border-bottom: 2px solid #D8D8D8; | ||
height: 80px; | ||
|
||
.page-title { | ||
font-weight: 700; | ||
} | ||
} |
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,3 @@ | ||
@import "header"; | ||
@import "body"; | ||
@import "footer"; |
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,18 @@ | ||
.linked-medias-list { | ||
display: flex; | ||
flex-wrap: wrap; | ||
gap: 1.5em; | ||
|
||
.wpeo-button { | ||
} | ||
.media-container { | ||
margin-right: 0 !important; | ||
width: 50px; | ||
height: 50px; | ||
|
||
img { | ||
object-fit: cover; | ||
height: 50px; | ||
} | ||
} | ||
} |
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,26 @@ | ||
.wpeo-modal { | ||
.modal-container { | ||
max-height: none; | ||
padding-left: 0; | ||
padding-right: 0; | ||
|
||
.canvas-container { | ||
display: flex; | ||
margin: auto; | ||
width: 100%; | ||
height: 100%; | ||
justify-content: center; | ||
|
||
} | ||
canvas { | ||
object-fit: contain; | ||
width: 600px; | ||
height: 800px; | ||
|
||
@media ( max-width: $media__small ) { | ||
width: 300px; | ||
height: 400px; | ||
} | ||
} | ||
} | ||
} |
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,2 @@ | ||
@import "linked-medias"; | ||
@import "modal-edit-image"; |
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,4 @@ | ||
@import "variables/variables"; | ||
@import "layout/layout"; | ||
@import "element/element"; | ||
@import "pages/pages"; |
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 @@ | ||
$color__primary: var(--primary); |
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,4 @@ | ||
$media__large: 1200px; | ||
$media__medium: 992px; | ||
$media__small: 768px; | ||
$media__extra-small: 576px; |
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,2 @@ | ||
@import "colors"; | ||
@import "structure"; |
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