Skip to content

Commit

Permalink
Fist
Browse files Browse the repository at this point in the history
  • Loading branch information
obaraujo committed Jun 22, 2023
0 parents commit 60faa13
Show file tree
Hide file tree
Showing 38 changed files with 3,809 additions and 0 deletions.
75 changes: 75 additions & 0 deletions css/copys/footer copy.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
footer {
position: static;
bottom: 0;
left: 0;
width: 100%;
background: #222222;
padding: 2rem;
box-sizing: border-box;
}

footer .social {
display: flex;
justify-content: center;
margin-bottom: 2rem;
}

footer .social .icon {
display: flex;
justify-content: center;
align-items: center;
fill: #fff;
width: 5.5rem;
height: 5.5rem;
border-radius: 50%;
margin: 1rem;
transition: all 0.5s;
cursor: pointer;
}

footer .social .icon svg {
width: 4rem;
height: 4rem;
}

footer .social .instagram {
background: radial-gradient(50% 50% at 50% 50%, #ff00e5 0%, #bd00ff 100%);
}
footer .social .seabratem {
background: radial-gradient(50% 50% at 50% 50%, #ff3c00 0%, #ff3c00 100%);
}

footer .social .whatsapp {
background: radial-gradient(50% 50% at 50% 50%, #31ba45 0%, #59d264 100%);
}
footer .social .instagram:hover {
background: radial-gradient(50% 50% at 50% 50%, #cc00b8 0%, #8f00c4 100%);
}
footer .social .seabratem:hover {
background: radial-gradient(50% 50% at 50% 50%, #ca2f00 0%, #ca3001 100%);
}

footer .social .whatsapp:hover {
background: radial-gradient(50% 50% at 50% 50%, #09941e 0%, #1c8d26 100%);
}

footer .text {
font-family: "Roboto", sans-serif;
font-size: 1.5rem;
color: #fff;
text-align: center;
}

footer .text p {
margin: 0.5rem;
}

footer .text p a {
color: #ffff;
text-decoration: none;
cursor: pointer;
}

footer .text p a:hover {
text-decoration: underline;
}
133 changes: 133 additions & 0 deletions css/copys/header copy.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
header {
background-color: black;
position: absolute;
z-index: 2;
top: 0;
left: 0;
width: 100%;
height: 7rem;
display: flex;
justify-content: center;
}

.container {
position: relative;
display: flex;
align-items: center;
justify-content: end;
width: 110rem;
}

.identity-site {
text-decoration: none;
position: absolute;
left: 0;
display: flex;
align-items: center;
}

.identity-site .logo {
width: 4.5rem;
}

.identity-site .title-site {
font-family: "Roboto", sans-serif;
font-style: normal;
font-weight: 900;
font-size: 3rem;
line-height: 3.5rem;

color: var(--secondary);
}

.menu {
margin-right: 2rem;
}

.menu a {
font-family: "Roboto", sans-serif;
font-style: normal;
font-weight: bold;
font-size: 1.6rem;
color: var(--secondary);
margin: 1.5rem;
text-decoration: none;
}

.menu a:hover {
color: var(--link-hover);
}

.shopping-cart {
color: var(--secondary);
position: relative;
width: 4.1rem;
cursor: pointer;
}

.shopping-cart .cart {
fill: var(--secondary);
width: 4rem;
height: 4rem;
}

.shopping-cart .cart:hover {
fill: var(--link-hover);
}

.shopping-cart .notification.on {
display: flex;
justify-content: center;
align-items: center;
font-family: "Roboto", sans-serif;
font-style: normal;
font-weight: 900;
font-size: 1.2rem;

position: absolute;
top: 0;
right: 0;
background-color: var(--notification);
width: 1.5rem;
height: 1.5rem;
border-radius: 50%;
color: var(--secondary);
}

.profile-user {
margin-right: 2.5rem;
display: flex;
align-items: center;
}

.profile-user .user {
fill: var(--secondary);
width: 3.5rem;
height: 3.5rem;
}

.profile-user .text-user {
color: var(--secondary);
fill: var(--secondary);
font-family: "Roboto", sans-serif;
font-style: normal;
font-size: 1.2rem;
}
.profile-user .text-user p {
margin: 0.2rem 0.3rem;
}
.profile-user .text-user p a {
margin-left: 0.5rem;
text-decoration: none;
color: var(--secondary);
}

.profile-user .text-user p a:hover {
text-decoration: underline;
}

@media screen and (min-width: 415px) {
.menu {
display: none;
}
}
39 changes: 39 additions & 0 deletions css/copys/image-zoom copy.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
* {
box-sizing: border-box;
}

.img-zoom-container {
position: relative;
}

.img-zoom-lens {
position: absolute;
border: 1px solid #d4d4d4;
/*set the size of the lens:*/
width: 60px;
height: 60px;
border-radius: 50%;
background-color: rgba(0, 0, 0, 0.301);
}

.img-zoom-result {
position: absolute;
z-index: 10;
width: 300px;
height: 300px;
border: 1px solid #d4d4d4;
box-shadow: 0 0 10rem rgba(0, 0, 0, 0.527);
border-radius: 10px;
margin-left: 10px;
animation: aparece 0.5s;
}


@keyframes aparece {
to {
opacity: 1;
}
from {
opacity: 0;
}
}
108 changes: 108 additions & 0 deletions css/copys/images-product copy.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
.slide-imgs {
position: relative;
display: flex;
justify-content: center;

min-width: var(--width-field-img);
height: var(--height-field-img);
}
.control {
position: absolute;
bottom: 1rem;
}

.dot {
cursor: pointer;
height: 1.5rem;
width: 1.5rem;
margin: 0 2px;
background-color: #dedede40;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}

.active,
.dot:hover {
background-color: #dedede;
}

.container-img {
position: relative;
display: flex;
justify-content: center;
align-items: center;
width: var(--width-field-img);
height: var(--height-field-img);
}

.container-img img {
max-width: 60rem;
max-height: 37.6rem;
}

.prev,
.next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
padding: 16px;
margin-top: -22px;
color: white;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
}

/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}

.prev {
left: 0;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
background-color: rgba(0, 0, 0, 0.8);
}

.fade {
-webkit-animation-name: fade;
-webkit-animation-duration: 1.5s;
animation-name: fade;
animation-duration: 1.5s;
}

@-webkit-keyframes fade {
from {
opacity: 0.4;
}
to {
opacity: 1;
}
}

@keyframes fade {
from {
opacity: 0.4;
}
to {
opacity: 1;
}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
.prev,
.next,
.text {
font-size: 11px;
}
}

Loading

0 comments on commit 60faa13

Please sign in to comment.