diff --git a/css/global.css b/css/global.css new file mode 100644 index 0000000..b5b416d --- /dev/null +++ b/css/global.css @@ -0,0 +1,115 @@ +/* Copyright © 2023 Entreprise SkamCraft */ + +* { + font-family: "Inter", sans-serif; + box-sizing: border-box; + overflow: hidden; + background-color: #272727; +} + +body, +html { + height: 100%; + display: flex; + flex-direction: column; +} + +/* Menu */ +.menu { + display: flex; + align-items: center; + justify-content: space-between; +} + +.title-section { + color: white; + display: flex; + align-items: center; + padding-left: 10px; +} + +.title-section img { + max-width: 80px; + max-height: 50px; +} + +.page-change-button { + padding-left: 10px; +} + +button { + margin: 2px; + color: black; + background-color: white; + border: 2px solid white; + border-radius: 10px; +} + +button:hover { + border-color: #eab308; + background-color: #eab308; + transition: all 1s; +} + +main { + + flex: 1; + overflow-y: scroll; + display: flex; + justify-content: left; + flex-wrap: wrap; + padding-left: 30px; +} + + +.spacer { + margin-bottom: 35px; + margin-left: 100px; + margin-right: 100px; +} + +#credits { + background-color: white; + border: 2px solid white; + border-radius: 10px; + color: black; +} + +/* Footer */ +footer { + color: white; +} + +footer p { + display: flex; + justify-content: center; + margin-bottom: 0px; +} + +/* Modal */ +.modal-content { + color: white; +} + +#exampleModal { + color: white; + background-color: rgba(255, 255, 255, 0.1) +} + +#modal-footer { + background-color: #272727; +} + +#status-onhold { + color: orange; +} + +#status-accepted{ + color: greenyellow; +} +#revenu { + color: white +} + + + diff --git a/index.html b/index.html index bd71585..40ec7a5 100644 --- a/index.html +++ b/index.html @@ -1,15 +1,18 @@ -
-