|
@@ -0,0 +1,574 @@
|
|
|
+
|
|
|
+body {
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ margin: 0 auto;
|
|
|
+ max-width: 1300px;
|
|
|
+ background: #ffffff;
|
|
|
+ font-size: 14px;
|
|
|
+ line-height: 18px;
|
|
|
+ font-family: "Arial", sans-serif;
|
|
|
+ color: #444444;
|
|
|
+ font-style: normal;
|
|
|
+ border: 1px solid #a8aeaf;
|
|
|
+ box-shadow: 5px 0 15px 0 rgba(0, 0, 0,0.2 ),-5px 0 15px 0 rgba(0, 0, 0,0.2 );
|
|
|
+
|
|
|
+}
|
|
|
+.visually-hidden:not(:focus):not(:active),
|
|
|
+input[type="checkbox"].visually-hidden {
|
|
|
+ position: absolute;
|
|
|
+
|
|
|
+ width: 1px;
|
|
|
+ height: 1px;
|
|
|
+ margin: -1px;
|
|
|
+ padding: 0;
|
|
|
+ overflow: hidden;
|
|
|
+
|
|
|
+ white-space: nowrap;
|
|
|
+
|
|
|
+ border: 0;
|
|
|
+
|
|
|
+ clip: rect(0 0 0 0);
|
|
|
+ -webkit-clip-path: inset(100%);
|
|
|
+ clip-path: inset(100%);
|
|
|
+}
|
|
|
+.container {
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ justify-content: space-around;
|
|
|
+ margin: 0 auto;
|
|
|
+}
|
|
|
+.button {
|
|
|
+ font: inherit;
|
|
|
+ vertical-align: middle;
|
|
|
+ text-align: center;
|
|
|
+ color: #ffffff;
|
|
|
+ text-transform: uppercase;
|
|
|
+
|
|
|
+
|
|
|
+ border: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .button:hover,
|
|
|
+ .button:focus,
|
|
|
+ .button:active {
|
|
|
+ background-color: #663d15;
|
|
|
+ outline: none;
|
|
|
+ }
|
|
|
+img {
|
|
|
+ max-width: 100%;
|
|
|
+ height: auto;
|
|
|
+ }
|
|
|
+
|
|
|
+a:active,
|
|
|
+ a:hover,
|
|
|
+ a {
|
|
|
+ text-decoration: none;
|
|
|
+ color: inherit;
|
|
|
+ }
|
|
|
+.header {
|
|
|
+ width: 100%;
|
|
|
+ background-color: #A7B5B7;
|
|
|
+ display: flex;
|
|
|
+ justify-content:flex-end;
|
|
|
+ align-items: center;
|
|
|
+ margin: 0 auto;
|
|
|
+ padding: 30px;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+input {
|
|
|
+ width: 400px;
|
|
|
+ height: 30px;
|
|
|
+}
|
|
|
+.main-wrapper {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ width: 100%;
|
|
|
+
|
|
|
+}
|
|
|
+.favorite-list, .create-btn {
|
|
|
+
|
|
|
+ display: inline-block;
|
|
|
+ color: black;
|
|
|
+ font-size: 125%;
|
|
|
+ font-weight: 700;
|
|
|
+ text-decoration: none;
|
|
|
+ user-select: none;
|
|
|
+ padding: .25em .5em;
|
|
|
+ outline: none;
|
|
|
+ border: 1px solid rgb(250,172,17);
|
|
|
+ border-radius: 7px;
|
|
|
+ background: rgb(255,212,3) linear-gradient(rgb(255,212,3), rgb(248,157,23));
|
|
|
+ box-shadow: inset 0 -2px 1px rgba(0,0,0,0), inset 0 1px 2px rgba(0,0,0,0), inset 0 0 0 60px rgba(255,255,0,0);
|
|
|
+ transition: box-shadow .2s, border-color .2s;
|
|
|
+ margin: 0 10px;
|
|
|
+ }
|
|
|
+ .favorite-list:hover, .create-btn:hover {
|
|
|
+ box-shadow: inset 0 -1px 1px rgba(0,0,0,0), inset 0 1px 2px rgba(0,0,0,0), inset 0 0 0 60px rgba(255,255,0,.5);
|
|
|
+ }
|
|
|
+ .favorite-list:active, .create-btn:active {
|
|
|
+ padding: calc(.25em + 1px) .5em calc(.25em - 1px);
|
|
|
+ border-color: rgba(177,159,0,1);
|
|
|
+ box-shadow: inset 0 -1px 1px rgba(0,0,0,.1), inset 0 1px 2px rgba(0,0,0,.3), inset 0 0 0 60px rgba(255,255,0,.45);
|
|
|
+ }
|
|
|
+
|
|
|
+.seekForm {
|
|
|
+ width: 100%;
|
|
|
+ box-shadow: 1px -7px 5px 0px #DCE6ED;
|
|
|
+ background-color: #d6dadd;
|
|
|
+}
|
|
|
+
|
|
|
+.seekForm fieldset{
|
|
|
+ border: none;
|
|
|
+}
|
|
|
+.search-wrapper {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ padding: 0 10px;
|
|
|
+}
|
|
|
+.fieldset-wrapper {
|
|
|
+ display: flex;
|
|
|
+}
|
|
|
+.filter {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+}
|
|
|
+.filter label input {
|
|
|
+ width: 50px;
|
|
|
+}
|
|
|
+.card {
|
|
|
+ margin: 10px 10px;
|
|
|
+ padding: 20px 20px;
|
|
|
+ width: 300px;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ border: 1px solid #BFB7B9;
|
|
|
+ border-radius: 15px;
|
|
|
+ box-shadow: 5px -5px 5px 0px #BFB7B9;
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+.card img {
|
|
|
+ flex-grow: 1;
|
|
|
+}
|
|
|
+.card p{
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+
|
|
|
+ justify-content: center;
|
|
|
+ padding: 10px;
|
|
|
+}
|
|
|
+.card * {
|
|
|
+ padding: 10px;
|
|
|
+}
|
|
|
+
|
|
|
+.noResult {
|
|
|
+ font-size: 25px;
|
|
|
+ font-weight: 700;
|
|
|
+ line-height: 35px;
|
|
|
+ margin: 20px auto;
|
|
|
+ width: 70%;
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+.icon {
|
|
|
+ background-image: url(img/heart.png);
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-position: center;
|
|
|
+ background-color: #c5bfab;
|
|
|
+ opacity: 0.3;
|
|
|
+ width: 60px;
|
|
|
+ height: 60px;
|
|
|
+ border: none;
|
|
|
+ text-decoration: none;
|
|
|
+ padding: 0;
|
|
|
+ border: none;
|
|
|
+ font: inherit;
|
|
|
+ color: inherit;
|
|
|
+ background-color: transparent;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+.favorite {
|
|
|
+ opacity: 1;
|
|
|
+
|
|
|
+}
|
|
|
+.header-btn {
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+
|
|
|
+}
|
|
|
+.btn-cart {
|
|
|
+ background-color:#21B1C4;
|
|
|
+ background-image: url(img/cart.png);
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-position: center;
|
|
|
+ opacity: 0.5;
|
|
|
+ width: 60px;
|
|
|
+ height: 60px;
|
|
|
+ border: none;
|
|
|
+ text-decoration: none;
|
|
|
+ padding: 0;
|
|
|
+ border: none;
|
|
|
+ font: inherit;
|
|
|
+ color: inherit;
|
|
|
+ background-color: transparent;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+.btn-wrapper {
|
|
|
+ display: flex;
|
|
|
+}
|
|
|
+
|
|
|
+.cart-wrapper {
|
|
|
+ display: flex;
|
|
|
+ align-content: center;
|
|
|
+ border: 1px solid#21B1C4;
|
|
|
+ border-radius: 25px;
|
|
|
+ box-shadow: 11px -6px 5px 0px #EFF8F9;
|
|
|
+}
|
|
|
+
|
|
|
+.cart-wrapper {
|
|
|
+ font-size: 30px;
|
|
|
+ color: #21B1C4;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+ .main-footer {
|
|
|
+ position: relative;
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .footer-wrapper {
|
|
|
+ display: -webkit-box;
|
|
|
+ display: -ms-flexbox;
|
|
|
+ display: flex;
|
|
|
+ -webkit-box-pack: justify;
|
|
|
+ -ms-flex-pack: justify;
|
|
|
+ justify-content: space-between;
|
|
|
+ margin: 0;
|
|
|
+ padding: 37px 0;
|
|
|
+ padding-bottom: 30px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .main-footer .footer-wrapper {
|
|
|
+ background-color: rgba( 255,255,255, 0.5);
|
|
|
+ }
|
|
|
+
|
|
|
+ .inner-footer .footer-wrapper {
|
|
|
+ padding: 37px 0;
|
|
|
+ padding-bottom: 30px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .instagram-container {
|
|
|
+ display: -webkit-box;
|
|
|
+ display: -ms-flexbox;
|
|
|
+ display: flex;
|
|
|
+ -webkit-box-pack: center;
|
|
|
+ -ms-flex-pack: center;
|
|
|
+ justify-content: center;
|
|
|
+ width: 33.3%;
|
|
|
+ margin: 0;
|
|
|
+ margin-left: auto;
|
|
|
+
|
|
|
+ vertical-align: middle;
|
|
|
+ }
|
|
|
+
|
|
|
+ .instagram {
|
|
|
+ font-weight: 700;
|
|
|
+ font-size: 21px;
|
|
|
+ line-height: 26px;
|
|
|
+ color: #000000;
|
|
|
+ -webkit-box-align: center;
|
|
|
+ -ms-flex-align: center;
|
|
|
+ align-items: center;
|
|
|
+ margin-top: 9px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .social-button {
|
|
|
+ display: -webkit-box;
|
|
|
+ display: -ms-flexbox;
|
|
|
+ display: flex;
|
|
|
+ -webkit-box-pack: center;
|
|
|
+ -ms-flex-pack: center;
|
|
|
+ justify-content: center;
|
|
|
+ -webkit-box-align: center;
|
|
|
+ -ms-flex-align: center;
|
|
|
+ align-items: center;
|
|
|
+ width: 46px;
|
|
|
+ height: 48px;
|
|
|
+ margin-right: 1px;
|
|
|
+
|
|
|
+ color: #ffffff;
|
|
|
+
|
|
|
+ background-color: #81b3d2;
|
|
|
+ }
|
|
|
+
|
|
|
+ .social-button:hover,
|
|
|
+ .social-button:focus {
|
|
|
+ background-color: #669ec0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .social-button:active {
|
|
|
+ background-color: #5496bd;
|
|
|
+ }
|
|
|
+
|
|
|
+ .social-button path:active {
|
|
|
+ background-color: #5496bd;
|
|
|
+
|
|
|
+ fill: #88b6d1;
|
|
|
+ }
|
|
|
+
|
|
|
+ .footer-social {
|
|
|
+ width: 33.4%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .footer-social ul {
|
|
|
+
|
|
|
+ display: flex;
|
|
|
+ -ms-flex-wrap: wrap;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ -webkit-box-pack: justify;
|
|
|
+ -ms-flex-pack: justify;
|
|
|
+ justify-content: space-between;
|
|
|
+ width: 150px;
|
|
|
+ margin: 0 auto;
|
|
|
+ padding: 0;
|
|
|
+
|
|
|
+ list-style: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .copyright {
|
|
|
+ display: -webkit-box;
|
|
|
+ display: -ms-flexbox;
|
|
|
+ display: flex;
|
|
|
+ -webkit-box-pack: center;
|
|
|
+ -ms-flex-pack: center;
|
|
|
+ justify-content: center;
|
|
|
+ width: 33.3%;
|
|
|
+ height: 50px;
|
|
|
+ margin: 0;
|
|
|
+
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 14px;
|
|
|
+ line-height: 26px;
|
|
|
+ color: #333333;
|
|
|
+ -webkit-box-align: center;
|
|
|
+ -ms-flex-align: center;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .copyright:hover path,
|
|
|
+ .copyright:focus path {
|
|
|
+ fill: #a8cbe0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .copyright:active path {
|
|
|
+ fill: #bdbbbc;
|
|
|
+ }
|
|
|
+
|
|
|
+ .copyright p {
|
|
|
+ display: block;
|
|
|
+ margin: 0;
|
|
|
+ margin-right: 9px;
|
|
|
+ padding: 0;
|
|
|
+ padding-bottom: 5px;
|
|
|
+
|
|
|
+ list-style: none;
|
|
|
+ }
|
|
|
+.logo-a-level {
|
|
|
+ background-image: url('./img/a-level-logo.png');
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-position: center;
|
|
|
+ width: 200px;
|
|
|
+ height: 150px;
|
|
|
+}
|
|
|
+.modal {
|
|
|
+ position:fixed;
|
|
|
+ top: 50%;
|
|
|
+ left: 50%;
|
|
|
+
|
|
|
+
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ width: 100%;
|
|
|
+ max-width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ max-height: 100%;
|
|
|
+ z-index: 8;
|
|
|
+ display: none;
|
|
|
+ background-color: rgba(221, 234, 243, 0.7);
|
|
|
+ padding:40px;
|
|
|
+ color: #000000;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ -webkit-box-shadow: 5px 0 15px 0 rgba(0, 0, 0,0.1 ),-5px 0 15px 0 rgba(0, 0, 0,0.1 );
|
|
|
+ box-shadow: 5px 0 15px 0 rgba(0, 0, 0,0.1 ),-5px 0 15px 0 rgba(0, 0, 0,0.1 );
|
|
|
+ background-position: 0 0;
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+ .opened {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ @keyframes slide-down {
|
|
|
+ 0% {
|
|
|
+ -webkit-transform: translateY(-10%);
|
|
|
+ transform: translateY(-10%);
|
|
|
+ }
|
|
|
+ 50% {
|
|
|
+ -webkit-transform: translateY(8%);
|
|
|
+ transform: translateY(8%);
|
|
|
+ }
|
|
|
+ 65% {
|
|
|
+ -webkit-transform: translateY(-4%);
|
|
|
+ transform: translateY(-4%);
|
|
|
+ }
|
|
|
+ 80% {
|
|
|
+ -webkit-transform: translateY(4%);
|
|
|
+ transform: translateY(4%);
|
|
|
+ }
|
|
|
+ 95% {
|
|
|
+ -webkit-transform: translateY(-2%);
|
|
|
+ transform: translateY(-2%);
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ -webkit-transform: translateY(0%);
|
|
|
+ transform: translateY(0%);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .modal-card {
|
|
|
+ position: absolute;
|
|
|
+ z-index: 9;
|
|
|
+ width: 50%;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ background-color: #ffff;
|
|
|
+ box-sizing: content-box;
|
|
|
+ -webkit-animation: slide-down 2s;
|
|
|
+ animation: slide-down 2s;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ .close-btn {
|
|
|
+ position: absolute;
|
|
|
+ top: 10%;
|
|
|
+ left: 90%;
|
|
|
+ z-index: 10;
|
|
|
+ width: 50px;
|
|
|
+ height: 50px;
|
|
|
+ background-image: url('./img/closed.png');
|
|
|
+ border: none;
|
|
|
+ text-decoration: none;
|
|
|
+ padding: 0;
|
|
|
+ border: none;
|
|
|
+ font: inherit;
|
|
|
+ color: inherit;
|
|
|
+ background-color: transparent;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+
|
|
|
+ .own-pizza__name {
|
|
|
+ width: 40%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .own-pizza__card {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ background-color: #f5fbff;
|
|
|
+ border-radius: 20px;
|
|
|
+ width: 80%;
|
|
|
+ padding: 1%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .own-pizza__checkbox-container {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ flex-wrap: wrap;
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+ .own-pizza__checkbox-wrapper{
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ margin: 10px;
|
|
|
+ width: 40%;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ .own-pizza__composition {
|
|
|
+ width: 70px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .own-pizza__photo {
|
|
|
+ margin-right: 10px;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ width: 70px;
|
|
|
+ height: 70px;
|
|
|
+ background-color: #e4e4de;
|
|
|
+ border-radius: 5px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .cart-info {
|
|
|
+ width: 100%;
|
|
|
+ text-align: center;
|
|
|
+ font-size: 32px;
|
|
|
+ line-height: 40px;
|
|
|
+ color: rgb(97, 32, 218);
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+ .cart-list {
|
|
|
+ list-style: none;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content:space-between;
|
|
|
+ align-items: baseline;
|
|
|
+ width: 100%;
|
|
|
+
|
|
|
+ }
|
|
|
+ .cart-list li{
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content:space-between;
|
|
|
+ font-size: 25px;
|
|
|
+ line-height: 35px;
|
|
|
+ color: rgb(101, 82, 136);
|
|
|
+ }
|
|
|
+ .cart-list img {
|
|
|
+ width: 150px;
|
|
|
+ }
|
|
|
+ .cart-btn-reset, .cart-link {
|
|
|
+ appearance: none;
|
|
|
+ border: 0;
|
|
|
+ border-radius: 5px;
|
|
|
+ background: #e77c5c;
|
|
|
+ color: #fff;
|
|
|
+ padding: 8px 16px;
|
|
|
+ font-size: 16px;
|
|
|
+ }
|
|
|
+ .cart-btn-reset:hover {
|
|
|
+ background: #d1461b;
|
|
|
+ }
|
|
|
+
|
|
|
+ .cart-btn-reset:focus {
|
|
|
+ outline: none;
|
|
|
+ box-shadow: 0 0 0 4px #f1cbb2;
|
|
|
+ }
|
|
|
+ .cart-link {
|
|
|
+ background: #44aa6e;
|
|
|
+ }
|
|
|
+ .cart-link:hover {
|
|
|
+ background: #1dee0a;
|
|
|
+ }
|
|
|
+
|
|
|
+ .cart-link:focus {
|
|
|
+ outline: none;
|
|
|
+ box-shadow: 0 0 0 4px #57774d;
|
|
|
+ }
|
|
|
+
|