diff --git a/app/bethellen.otf b/app/bethellen.otf new file mode 100644 index 0000000..8617800 Binary files /dev/null and b/app/bethellen.otf differ diff --git a/app/index.html b/app/index.html index 9e58851..e6fa52b 100644 --- a/app/index.html +++ b/app/index.html @@ -7,16 +7,27 @@ -
+ +
-
-
- + + +
+ +

+ Trier par +

+
+ + +
diff --git a/app/style.css b/app/style.css index 974fd9f..b6c5002 100644 --- a/app/style.css +++ b/app/style.css @@ -1,12 +1,100 @@ +@font-face { + font-family: bethellen; + src: url('bethellen.otf') format('opentype'); +} + + body{ font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; background-image: url(https://t3.ftcdn.net/jpg/09/18/51/88/360_F_918518811_e0Wh732g7nIS9hsyi7ox9wWhguruEEgx.jpg); background-size: 500px; - font-weight: 300; + font-weight: 400; + display: flex; + flex-direction: row; + margin:0; + color: rgb(75, 56, 8); +} + +h2{ + font-weight: 500; + margin: 0; +} + +.separateur{ + height: 50px; +} + +hr{ + border-radius: solid 1px; + border-radius: 50%; + opacity: 50%; + width: 85%; + margin-top: 5px; + margin-bottom: 15px; + +} + +nav{ + max-width: 300px; + flex: 3; + display: flex; + flex-direction: column; + align-items: center; + min-height: 100vh; + text-align: center; + padding:15px; + background-image: url('https://img.freepik.com/free-photo/yellow-sponge-rubber-texture-background_1373-524.jpg?semt=ais_hybrid'); + background-size: 300px; + box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; + +} + +input{ + color: inherit; + font-size: medium; + width: 80%; + padding: 8px; + border-radius: 5px; + background-color: lightyellow; + border: none; + margin-top: 5px; + margin-bottom: 25px; + box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px; +} + +label{ + margin-top: 10px; + font-weight: 400; + color: rgb(75, 56, 8); + font-size: large; +} + +button{ + color: inherit; + font-size: larger; + font-weight: 500; + border-radius: 5px; + min-width: 85%; + + border: none; + background-color: lightyellow; + padding: 10px; + box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px; + +} + +button:hover{ + background-color: yellow; + rotate:(-1deg); + -moz-transform: rotate(-1deg); + -o-transform: rotate(-1deg); + -ms-transform: rotate(-1deg); + transform: rotate(-1deg); } #conteneur{ - margin: 20px; + flex: 7; + padding: 10px; } #commandes{ @@ -15,21 +103,26 @@ body{ } .tache{ + font-family: bethellen; + line-height: 1.5; display: flex; margin:10px; flex-direction: column; align-items: center; width: 200px; - height : 100px; background-color: gold; box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px; + padding: 15px; + rotate:(2deg); + -moz-transform: rotate(2deg); + -o-transform: rotate(2deg); + -ms-transform: rotate(2deg); + transform: rotate(2deg); } .titre_tache{ margin:0; padding-top:10px; - text-transform:uppercase; - font-weight: 400; text-align: center; }