diff --git a/public/css/alert.css b/public/css/alert.css index b58ec3f..763da57 100644 --- a/public/css/alert.css +++ b/public/css/alert.css @@ -94,6 +94,12 @@ font-size: 15px; color: black; cursor: pointer; + width: 15px; + height: 15px; + background-repeat: no-repeat; + background-size: contain; + background-position: center; + background-image: url("../img/cross.png"); } .alert .form{ @@ -103,6 +109,17 @@ justify-content: space-around; } +.alert .form #warning_input_send{ + cursor: pointer; + margin-left: 1rem; + width: 60px; + height: 35px; + background-repeat: no-repeat; + background-size: contain; + background-position: center; + background-image: url("../img/send.png"); +} + .alert .form input[type="number"]{ background-color: white; } diff --git a/public/css/header.css b/public/css/header.css index 41dbae4..3a216fb 100644 --- a/public/css/header.css +++ b/public/css/header.css @@ -143,10 +143,17 @@ img { z-index: 99; font-size: 30px; color: blue; + width: 25px; + height: 25px; + background-repeat: no-repeat; + background-size: contain; + background-position: center; } .slick-prev{ left: 20px; + background-image: url("../img/arrow-left.png"); } .slick-next{ right: 20px; + background-image: url("../img/arrow-right.png"); } \ No newline at end of file diff --git a/public/css/menu.css b/public/css/menu.css index 498ee03..65fe11d 100644 --- a/public/css/menu.css +++ b/public/css/menu.css @@ -9,7 +9,15 @@ .title-bar .left-off-canvas-toggle{ font-size: 25px; - padding-left: 1rem; + margin-left: 1rem; + + width: 20px; + height: 20px; + display: block; + background-repeat: no-repeat; + background-size: contain; + background-position: center; + background-image: url("../img/menu.png"); } .title-bar .dragger{ width: 100vw; diff --git a/public/img/arrow-left.png b/public/img/arrow-left.png new file mode 100644 index 0000000..597357b Binary files /dev/null and b/public/img/arrow-left.png differ diff --git a/public/img/arrow-right.png b/public/img/arrow-right.png new file mode 100644 index 0000000..1f7d441 Binary files /dev/null and b/public/img/arrow-right.png differ diff --git a/public/img/cross.png b/public/img/cross.png new file mode 100644 index 0000000..0b3994d Binary files /dev/null and b/public/img/cross.png differ diff --git a/public/img/menu.png b/public/img/menu.png new file mode 100644 index 0000000..099f344 Binary files /dev/null and b/public/img/menu.png differ diff --git a/public/img/send.png b/public/img/send.png new file mode 100644 index 0000000..b41ac3b Binary files /dev/null and b/public/img/send.png differ diff --git a/public/js/alert.js b/public/js/alert.js index 17908c5..2179a4c 100644 --- a/public/js/alert.js +++ b/public/js/alert.js @@ -4,9 +4,7 @@ window.addEventListener('load', start); function build_popup(settings){ let popup = $(`