forked from M3-Academy/m3-academy-template-checkout
feat(_header.scss): adicionando estilo do header
This commit is contained in:
parent
9a6c8af4e4
commit
1e2ce77477
@ -9,7 +9,6 @@ export default class Header {
|
||||
async init() {
|
||||
await this.selectors();
|
||||
console.log(this.item);
|
||||
console.log(this.header);
|
||||
this.progressBarHtml();
|
||||
await this.progressBarProgress();
|
||||
}
|
||||
@ -29,25 +28,24 @@ export default class Header {
|
||||
this.progressBar.innerHTML = `
|
||||
<ul>
|
||||
<li>
|
||||
<div class="containerLi">
|
||||
<div class="containerLi__first">
|
||||
<div>
|
||||
<p class="progress-bar-text">Meu Carrinho</p>
|
||||
<p class="progress-bar-text">Meu carrinho</p>
|
||||
<p id="progress-bar-circle-1" class="progress-bar-circle-1"></p>
|
||||
<p class="progress-bar-line-1"></p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="central">
|
||||
<div class="containerLi">
|
||||
<div class="containerLi__second">
|
||||
<div>
|
||||
<p class="progress-bar-text">Dados Pessoais</p>
|
||||
<p id="progress-bar-circle-2" class="progress-bar-circle-2"></p>
|
||||
<p class="progress-bar-line-2"></p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<div class="containerLi">
|
||||
<div class="containerLi__third">
|
||||
<div>
|
||||
<p class="progress-bar-text">Pagamento</p>
|
||||
<p id="progress-bar-circle-3" class="progress-bar-circle-3"></p>
|
||||
@ -55,6 +53,7 @@ export default class Header {
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
`;
|
||||
}
|
||||
|
@ -1,22 +1,38 @@
|
||||
@import url("https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap");
|
||||
|
||||
/* _header.scss */
|
||||
.headerCheckout {
|
||||
border-bottom: 1px solid #000000;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
.container {
|
||||
width: auto !important;
|
||||
margin: 0 131px;
|
||||
}
|
||||
&__wrapper {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 30px 0;
|
||||
}
|
||||
|
||||
&__logo {
|
||||
a {
|
||||
img {
|
||||
height: 52px;
|
||||
height: 37.14px;
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__safeBuy {
|
||||
display: flex;
|
||||
width: 119px;
|
||||
justify-content: space-between;
|
||||
img {
|
||||
width: 12px;
|
||||
height: 15px;
|
||||
}
|
||||
span {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
@ -25,7 +41,8 @@
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-size: 12px;
|
||||
line-height: 14px;
|
||||
line-height: 16px;
|
||||
font-weight: 400;
|
||||
color: $color-gray;
|
||||
}
|
||||
|
||||
@ -34,3 +51,131 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// barra de progresso
|
||||
.progress-bar {
|
||||
font-family: "Tenor Sans", sans-serif;
|
||||
width: 439px;
|
||||
ul {
|
||||
list-style-type: none;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0 !important;
|
||||
|
||||
li {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-weight: 400;
|
||||
font-size: 12px;
|
||||
line-height: 14px;
|
||||
color: #000000;
|
||||
width: 39.9103%;
|
||||
.containerLi {
|
||||
&__first {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
position: relative;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
&__third {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
position: relative;
|
||||
align-items: flex-end;
|
||||
}
|
||||
|
||||
&__first,
|
||||
&__second,
|
||||
&__third {
|
||||
div {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
p {
|
||||
margin-bottom: 9px;
|
||||
}
|
||||
|
||||
.progress-bar-text {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.progress-bar-circle-1{
|
||||
transform: translateX(-2px);
|
||||
}
|
||||
.progress-bar-circle-3{
|
||||
transform: translateX(-5px);
|
||||
}
|
||||
|
||||
.progress-bar-circle-1,
|
||||
.progress-bar-circle-2,
|
||||
.progress-bar-circle-3 {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
border: 1px solid #000000;
|
||||
border-radius: 50%;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.active {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
border: none;
|
||||
border-radius: 50%;
|
||||
background-color: #000;
|
||||
}
|
||||
|
||||
.progress-bar-line-1 {
|
||||
left: 25%;
|
||||
}
|
||||
|
||||
.progress-bar-line-3 {
|
||||
right: 25%;
|
||||
}
|
||||
|
||||
.progress-bar-line-1,
|
||||
.progress-bar-line-3 {
|
||||
position: absolute;
|
||||
transform: translateY(-50%);
|
||||
bottom: 5px;
|
||||
width: 100%;
|
||||
height: 1px;
|
||||
border-top: 1px solid #000;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.central {
|
||||
width: auto;
|
||||
.containerLi {
|
||||
&__second {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
margin-right: 3px;
|
||||
margin-left: 4px;
|
||||
|
||||
div {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
position: relative;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user