- Added a css file for standart css
- Added a css file for Header and Footer and php file for updating after login is sucessfull
- Added a css file for the Main Content
- Added a css file for SingUP page and PHP file for handling Singin
- Added a css file for Dashboard page and PHP for the dynamic page solution
- Added a css file for 404 page
- Added a css file for Login page and PHP file for handling Login
- Added a css file for Terms and Privacy page
- Added a css file for Prices content
This commit is contained in:
2025-07-01 08:38:28 -03:00
parent ed06f52496
commit 4c8088ecc6
47 changed files with 3041 additions and 220 deletions
+651
View File
@@ -0,0 +1,651 @@
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;700&display=swap");
/*------------Animações------------*/
@keyframes growCircle {
from {
width: 0px;
height: 0px;
}
to {
width: 6px;
height: 6px;
}
}
/*------------Variaveis------------*/
:root {
--color-background-Light: #f5f8fa;
--color-background-Dark: #202124;
--color-Primary-Light: #ffffff;
--color-Primary-Dark: #41444a;
--color-Accent: #00bf63;
--color-Accent-darker: #07a65a;
}
* {
box-sizing: border-box;
font-family: "Outfit", sans-serif;
margin: 0;
padding: 0;
}
main {
margin-left: 20px;
margin-right: 20px;
}
/*------------Header------------*/
header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 20px;
width: 100%;
padding: 6px 20px;
background-color: var(--color-Primary-Light);
border-radius: 0 0px 20px 20px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.logo_icon {
position: relative;
width: 135px;
height: 54px;
}
/*---Idioma_Select---*/
.Idioma_Select {
border: none;
margin-left: 20px;
font-size: 16px;
color: var(--color-Accent);
}
.Idioma_Select:focus {
outline: none;
}
/*---Header-Menu_options---*/
.Menu_options {
position: relative;
display: flex;
}
.Menu_options ul {
position: relative;
display: flex;
align-items: center;
}
.Menu_options li {
position: relative;
display: inline-block;
list-style: none;
}
.Menu_options li a {
display: inline-block;
text-decoration: none;
font-size: 16px;
margin-left: 20px;
color: var(--color-Accent);
}
.Menu_options li a:hover {
color: var(--color-Accent-darker);
}
.Menu_options li a::before {
content: "";
position: absolute;
transform-origin: center;
height: 2px;
transform: scaleX(0);
bottom: -4px;
left: 10px;
background-color: var(--color-Accent-darker);
transition: transform 0.3s ease, width 0.3s ease;
}
.Menu_options li a:hover::before {
transform: scaleX(0.5);
width: 100%;
}
/*---Header_buttons---*/
.header_Button {
text-decoration: none;
font-weight: bold;
border: none;
line-height: 35px;
padding: 0px 20px;
margin-left: 20px;
border-radius: 28px;
cursor: pointer;
color: #333;
background-color: var(--color-Accent);
transition: background-color 0.3s ease;
}
.header_Button:hover {
background-color: var(--color-Accent-darker);
}
/*---Header-Others---*/
.Login_link {
font-weight: bold;
color: var(--color-Accent);
}
.vertical-line {
border: none;
height: 20px;
margin-left: 20px;
border-left: 1px solid black;
}
/*------------Footer------------*/
footer {
width: 100%;
margin-top: 20px;
height: auto;
border-radius: 20px 20px 0 0;
box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.5);
background-color: var(--color-Primary-Light);
}
/*---Footer-divisor---*/
.Divisor_do_Footer {
display: grid;
grid-template-columns: repeat(4, 1fr);
padding: 3rem 3.5rem;
}
.Divisor_do_Footer p {
margin-top: 5px;
}
/*---Footer-Social_links_footer---*/
.texto_motivacao {
width: 200px;
word-break: break;
margin-left: 1.5rem;
}
.Social_links_footer {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
}
.Social_links_footer ul {
position: relative;
display: flex;
align-items: center;
color: black;
}
.Social_links_footer li {
list-style: none;
}
.icons_sociais {
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
list-style: none;
height: 2rem;
width: 2rem;
margin-left: 1.5rem;
margin-top: 2rem;
border-radius: 50%;
height: 2rem;
width: 2rem;
color: var(--color-Primary-Light);
transition: transform 0.3s ease;
}
.icons_sociais:hover {
transform: translateY(-10px);
}
#Instagram_icon {
background: linear-gradient(#515bd4, #dd2a7b, #f58529);
}
#Facebook_icon {
background-color: #4267b3;
}
#Whatsapp_icon {
background-color: #25d366;
}
/*---Footer-Footer_links---*/
.Sobre_empresa ul {
position: relative;
display: flex;
flex-direction: column;
margin-left: 3rem;
gap: 0.75rem;
color: black;
}
.Ferramentas ul {
position: relative;
display: flex;
flex-direction: column;
margin-left: 1rem;
gap: 0.75rem;
color: black;
}
.Footer_links li {
position: relative;
list-style: none;
}
.Footer_links li a {
text-decoration: none;
color: var(--color-Accent);
transition: color 0.3s ease;
}
.Footer_links li a:hover {
color: var(--color-Accent-darker);
}
.Footer_links li a:hover::before {
content: "";
position: absolute;
top: 50%;
left: -15px;
transform: translateY(-50%);
border-radius: 50%;
background-color: var(--color-Accent-darker);
animation: growCircle 0.2s ease forwards;
}
/*---Footer-newsletter---*/
.Newsletter ul {
display: flex;
flex-direction: column;
gap: 1.5rem;
color: black;
}
.Newsletter li {
list-style: none;
}
#email_box {
outline: none;
height: 30px;
border-radius: 28px 0 0 28px;
padding-left: 10px;
box-sizing: 1px;
border: 1px solid var(--color-Accent);
background-color: var(--color-background-Light);
}
#email_button {
border: none;
cursor: pointer;
width: 30px;
height: 30px;
border-radius: 0 28px 28px 0;
background-color: var(--color-Accent);
transition: background-color 0.3s ease;
}
.email_button:hover {
background-color: var(--color-Accent-darker);
}
/*---Footer-Legal---*/
.Legal {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 5rem;
background-color: var(--color-Primary-Light);
box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.2);
}
.Legal ul {
display: grid;
margin-right: 4rem;
grid-template-columns: repeat(3, 1fr);
}
.Legal li {
position: relative;
list-style: none;
}
.Legal li a {
text-decoration: none;
color: var(--color-Accent);
}
.Legal li a:hover {
color: var(--color-Accent-darker);
}
.Legal li a:hover::before {
content: "";
position: absolute;
top: 50%;
left: -15px;
transform: translateY(-50%);
border-radius: 50%;
background-color: var(--color-Accent-darker);
animation: growCircle 0.2s ease forwards;
}
/*---Header-Responsive---*/
.background_ambuigue {
display: none;
}
@media screen and (min-width: 981px) {
.ambuigue_button,
.background_ambuigue {
display: none;
}
}
@media screen and (max-width: 980px) {
.Menu_options_list li,
.Signup_button,
.background_ambuigue {
display: none;
}
.ambuigue_Button {
text-decoration: none;
font-weight: bold;
border: none;
line-height: 35px;
padding: 5px 20px;
border-radius: 28px;
cursor: pointer;
color: #333;
background-color: var(--color-Accent);
transition: background-color 0.3s ease;
}
.ambuigue_Button:hover {
background-color: var(--color-Accent-darker);
}
.background_ambuigue {
z-index: 9999;
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.3);
}
.menu_ambuigue {
width: 100%;
position: absolute;
top: 0;
left: 0;
border-radius: 0 0 28px 28px;
background-color: var(--color-Primary-Light);
z-index: 9999;
}
.register_ambuigue {
display: flex;
width: 100%;
height: 70px;
justify-content: space-between;
align-items: center;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.register_ambuigue ul {
align-items: center;
display: flex;
list-style: none;
}
.register_ambuigue li a {
margin-left: 20px;
text-decoration: none;
}
.other_options_ambuigue {
display: grid;
align-items: center;
justify-content: center;
place-items: center;
}
.other_options_ambuigue ul {
margin-top: 10px;
display: grid;
text-align: center;
place-items: center;
list-style: none;
}
.other_options_ambuigue li {
text-decoration: none;
margin-top: 20px;
margin-bottom: 20px;
}
.other_options_ambuigue li a {
text-decoration: none;
padding: 10px 100px 10px 100px;
}
.header_logo_icon {
position: relative;
display: block;
max-height: 60%;
max-width: 25%;
margin: 20px 0 10px 20px;
}
}
@media screen and (min-width: 520px) {
.other_options_ambuigue li a {
padding: 10px 200px 10px 200px;
}
}
@media screen and (max-width: 520px) {
.other_options_ambuigue li a {
padding: 10px 70px 10px 70px;
}
}
@media screen and (max-width: 360px) {
.other_options_ambuigue li a {
padding: 10px 50px 10px 50px;
}
.register_ambuigue {
display: flex;
flex-direction: column;
width: 100%;
height: 100px;
justify-content: space-between;
align-items: center;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
header {
position: absolute;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
width: 100%;
padding: 6px 20px;
background-color: var(--color-Primary-Light);
border-radius: 0 0px 20px 20px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
}
/*---footer-Responsive---*/
@media screen and (max-width: 1030px) {
.Divisor_do_Footer {
display: grid;
align-items: center;
justify-items: center;
grid-template-columns: repeat(2, 1fr);
padding: 3rem 3.5rem;
}
.Social_links_footer {
order: 1;
}
.Sobre_empresa {
order: 4;
}
.Ferramentas {
order: 2;
}
.Newsletter {
margin-top: 30px;
order: 3;
text-align: center;
}
.Sobre_empresa ul {
margin-left: 0;
}
.Ferramentas ul {
margin-left: 0rem;
}
}
@media screen and (max-width: 600px) {
.Divisor_do_Footer {
display: grid;
align-items: center;
justify-items: center;
grid-template-columns: repeat(1, 1fr);
padding: 2rem 2.5rem;
}
.Social_links_footer {
margin-top: 30px;
text-align: center;
order: 1;
}
.Sobre_empresa {
margin-top: 30px;
text-align: center;
order: 2;
}
.Ferramentas {
margin-top: 30px;
text-align: center;
order: 3;
}
.Newsletter {
margin-top: 30px;
order: 4;
text-align: center;
}
.Legal ul {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-right: 0;
grid-template-columns: repeat(3, 1fr);
}
.Legal li {
margin-bottom: 4px;
}
}
@media screen and (max-width: 360px) {
.Divisor_do_Footer {
display: grid;
align-items: center;
justify-items: center;
grid-template-columns: repeat(1, 1fr);
padding: 1rem 1.5rem;
}
}
+73
View File
@@ -0,0 +1,73 @@
:root {
--color-background-Light: #f5f8fa;
--color-background-Dark: #202124;
--color-Primary-Light: #ffffff;
--color-Primary-Dark: #41444a;
--color-Accent: #00bf63;
--color-Accent-darker: #07a65a;
}
.Destacado {
color: var(--color-Accent);
}
.container {
max-width: 70rem;
align-items: center;
margin: 0 auto;
place-items: center;
}
* {
box-sizing: border-box;
font-family: "Outfit", sans-serif;
margin: 0;
padding: 0;
}
body {
background-color: var(--color-background-Light);
width: 100%;
height: 100%;
}
#Construcao_img {
display: block;
max-width: 50%;
border-radius: 12px;
}
.sessao {
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
place-items: center;
border-radius: 28px;
}
.titulo {
margin-top: 1rem;
font-size: 4rem;
}
.texto {
font-size: 2rem;
margin-top: 1rem;
margin-bottom: 2rem;
}
.button {
font-weight: bold;
text-decoration: none;
padding: 10px;
background-color: var(--color-Accent);
border-radius: 28px;
margin-bottom: 2rem;
color: black;
}
+274
View File
@@ -0,0 +1,274 @@
/*------------Variaveis------------*/
:root {
--color-background-Light: #f5f8fa;
--color-background-Dark: #202124;
--color-Primary-Light: #ffffff;
--color-Primary-Dark: #41444a;
--color-Accent: #00bf63;
--color-Accent-darker: #07a65a;
}
/*------------body------------*/
body {
background-color: var(--color-background-Light);
width: 100%;
height: 100%;
text-decoration: none;
}
/*------------Section_1------------*/
.Section_1 {
border-bottom: none;
margin-bottom: 100px;
}
#Dashboard_img {
display: block;
margin: 0 0 0 auto;
max-width: 50%;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.Section_1 .Title_Section {
text-align: left;
width: 400px;
margin-bottom: 2rem;
font-size: 2rem;
}
.Section_1 .P_Section {
text-align: left;
width: 400px;
font-size: 1rem;
}
.Section_1 .Button_Section {
text-decoration: none;
font-weight: bold;
border: none;
margin-top: 1rem;
white-space: nowrap;
line-height: 100px;
padding: 10px 20px;
border-radius: 28px;
color: var(--color-background-Dark);
background-color: var(--color-Accent);
transition: background-color 0.3s ease;
}
.Section_1 .Button_Section:hover {
background-color: var(--color-Accent-darker);
}
/*------------Section_2------------*/
.Section_2 {
flex-direction: row-reverse;
margin-top: 50px;
}
.Section_2 .Title_Section {
text-align: center;
margin-bottom: 2rem;
font-size: 2rem;
width: 400px;
}
.Section_2 .P_Section {
text-align: center;
font-size: 1rem;
margin-bottom: 2rem;
width: 400px;
}
.Logo_icons {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
border-radius: 12px;
padding: 15px 15px;
margin: 0 auto 0 0;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.Company_logos {
display: block;
width: 100px;
height: 100px;
max-width: 100%;
max-height: 100%;
border: solid;
border-radius: 12px;
padding: 10px 10px;
}
/*------------others------------*/
.Destacado {
color: var(--color-Accent);
}
.container {
display: flex;
max-width: 80rem;
align-items: center;
margin: 0 auto;
}
/*------------responsive------------*/
@media screen and (max-width: 1070px) {
.Section_1 {
padding-bottom: 100px;
display: grid;
align-items: center;
justify-content: center;
place-items: center;
border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}
.container {
margin: 100px;
}
#Dashboard_img {
margin: 0 0 0 0;
min-width: 80%;
}
.Section_1 .Title_Section,
.Section_1 .P_Section,
.Section_1 .Button_Section,
.Section_2 .Title_Section,
.Section_2 .P_Section,
.Section_2 .Button_Section {
place-items: center;
text-align: center;
width: auto;
}
.Text_Section {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
.Section_2 {
display: grid;
align-items: center;
justify-content: center;
}
.Logo_icons {
margin: auto;
grid-template-columns: repeat(2, 1fr);
}
}
/*------------EDIÇÂO da novela carrosel------------*/
.carousel {
width: 500px;
height: 200px;
overflow: hidden;
position: relative;
}
.message-container {
display: flex;
width: 100%;
height: 100%;
animation: carouselAnimation 36s linear infinite;
animation-fill-mode: both;
}
.message {
width: 100%;
height: 100%;
position: absolute;
}
.message-1 {
left: 0%;
}
.message-2 {
left: 100%;
}
.message-3 {
left: 200%;
}
.message-4 {
left: 300%;
}
@keyframes carouselAnimation {
25% {
transform: translateX(0);
}
26% {
transform: translateX(-100%);
}
50% {
transform: translateX(-100%);
}
51% {
transform: translateX(-200%);
}
75% {
transform: translateX(-200%);
}
76% {
transform: translateX(-300%);
}
100% {
transform: translateX(-300%);
}
}
.Section_3 {
margin-top: 50px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
place-items: center;
}
.Section_4 {
margin-top: 50px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
place-items: center;
margin-bottom: 100px;
}
.botao_do_final_amem {
background-color: var(--color-Accent);
margin-top: 20px;
border-radius: 28px;
padding: 20px 60px;
font-size: larger;
font-weight: 700;
text-decoration: none;
color: var(--color-background-Dark);
}
+135
View File
@@ -0,0 +1,135 @@
:root {
--color-background-Light: #f5f8fa;
--color-background-Dark: #202124;
--color-Primary-Light: #ffffff;
--color-Primary-Dark: #41444a;
--color-Accent: #00bf63;
--color-Accent-darker: #07a65a;
}
.Destacado {
color: var(--color-Accent);
text-decoration: none;
}
.container {
max-width: 80%;
align-items: center;
margin: 0 auto;
justify-content: center;
}
.margintop {
margin-top: 20px;
}
.gap {
gap: rem;
}
.marginbottom {
margin-bottom: 20px;
}
.alignitems {
align-items: center;
justify-content: center;
}
.texto {
width: 350px;
max-width: 100%;
font-size: 20px;
}
* {
box-sizing: border-box;
font-family: "Outfit", sans-serif;
margin: 0;
padding: 0;
}
body {
background-color: var(--color-background-Light);
width: 100%;
height: 100%;
}
#Dashboard_img {
display: block;
max-width: 100%;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
#logo_icon {
display: block;
margin: 0 auto 0 auto;
max-height: 75%;
max-width: 80%;
}
.login_area {
margin-top: 100px;
margin-bottom: 100px;
justify-content: center;
display: flex;
align-items: center;
flex-direction: column;
background-color: var(--color-Primary-Light);
border-radius: 28px;
padding: 20px 50px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
max-width: 1000px;
width: 80%;
margin-left: auto;
margin-right: auto;
}
.register_inputs {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
}
.Inputbox {
outline: none;
height: 50px;
max-width: 550px;
width: 80%;
border-radius: 8px;
padding-left: 10px;
box-sizing: 1px;
margin-top: 40px;
border: 1px solid var(--color-Accent);
background-color: var(--color-background-Light);
}
.Button {
text-decoration: none;
font-weight: bold;
border: none;
line-height: 35px;
padding: 5px 20%;
border-radius: 28px;
cursor: pointer;
color: #333;
background-color: var(--color-Accent);
transition: background-color 0.3s ease;
}
.Button:hover {
background-color: var(--color-Accent-darker);
}
+152
View File
@@ -0,0 +1,152 @@
:root {
--color-background-Light: #f5f8fa;
--color-background-Dark: #202124;
--color-Primary-Light: #ffffff;
--color-Primary-Dark: #41444a;
--color-Accent: #00bf63;
--color-Accent-darker: #07a65a;
}
.Destacado {
color: var(--color-Accent);
}
.container {
max-width: 1300px;
align-items: center;
margin: 0 auto;
place-items: center;
}
.centertext {
text-align: center;
}
* {
box-sizing: border-box;
font-family: "Outfit", sans-serif;
margin: 0;
padding: 0;
}
body {
background-color: var(--color-background-Light);
width: 100%;
height: 100%;
}
section {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: var(--color-Primary-Light);
border-radius: 28px;
padding: 20px 20px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.planos_e_preços {
margin-top: 100px;
font-size: 50px;
}
.Planos {
display: flex;
margin-top: 100px;
margin-bottom: 200px;
}
.box_plano {
display: flex;
flex-direction: column;
background-color: var(--color-Primary-Light);
border-radius: 28px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
width: 330px;
height: 600px;
margin-left: 20px;
}
.sobre_plano {
text-align: center;
border-radius: 28px;
width: 100%;
height: 50%;
}
.Serviços {
display: flex;
flex-direction: column;
align-items: center;
text-align: left;
width: 100%;
height: 50%;
background: linear-gradient(var(--color-Accent), #00ff84);
border-radius: 28px;
}
.titulo_plano {
margin-top: 20px;
font-size: 24px;
}
.preco_plano {
margin-top: 30%;
font-size: 48px;
}
.servico_extra {
margin-top: 20px;
font-size: 24px;
font-weight: 600;
}
.servico_plano {
margin-top: 20px;
}
.servico_plano ul {
list-style: none;
font-weight: 700;
}
.servico_plano li {
margin-top: 16px;
font-size: 18px;
}
.Planos > :nth-child(2) {
margin-top: 20px;
}
.Planos > :nth-child(1) {
margin-top: 40px;
}
.Inscreva-se {
margin-top: 20px;
padding: 10px 20px;
background-color: black;
border-radius: 28px;
color: white;
text-decoration: none;
}
@media screen and (max-width: 1100px) {
.Planos {
display: grid;
grid-template-columns: 1fr 1fr;
}
}
@media screen and (max-width: 1000px) {
.Planos {
display: grid;
grid-template-columns: 1fr;
}
}
+58
View File
@@ -0,0 +1,58 @@
:root {
--color-background-Light: #f5f8fa;
--color-background-Dark: #202124;
--color-Primary-Light: #ffffff;
--color-Primary-Dark: #41444a;
--color-Accent: #00bf63;
--color-Accent-darker: #07a65a;
}
.Destacado {
color: var(--color-Accent);
}
.container {
max-width: 80rem;
align-items: center;
margin: 0 auto;
place-items: center;
}
* {
box-sizing: border-box;
font-family: "Outfit", sans-serif;
margin: 0;
padding: 0;
}
body {
background-color: var(--color-background-Light);
width: 100%;
height: 100%;
}
.sessao {
background-color: var(--color-Primary-Light);
border-radius: 28px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
padding: 20px 20px;
}
.tituloprincipal {
margin-bottom: 25px;
font-size: larger;
color: var(--color-Accent);
}
.subtitulo {
margin-top: 15px;
margin-bottom: 20px;
font-size: large;
}
.texto {
font-size: medium;
margin-bottom: 15px;
}
+160
View File
@@ -0,0 +1,160 @@
:root {
--color-background-Light: #f5f8fa;
--color-background-Dark: #202124;
--color-Primary-Light: #ffffff;
--color-Primary-Dark: #41444a;
--color-Accent: #00bf63;
--color-Accent-darker: #07a65a;
}
.Destacado {
color: var(--color-Accent);
}
.margintop {
margin-top: 20px;
}
.marginbottom {
margin-bottom: 20px;
}
.alignitems {
align-items: center;
justify-content: center;
}
* {
box-sizing: border-box;
font-family: "Outfit", sans-serif;
margin: 0;
padding: 0;
}
body {
background-color: var(--color-background-Light);
width: 100%;
height: 100%;
}
#Dashboard_img {
display: block;
max-width: 100%;
}
#logo_icon {
display: block;
margin: 0 auto 50px auto;
max-height: 50%;
max-width: 50%;
}
.full_register {
display: flex;
gap: 100px;
justify-content: center;
align-items: center;
max-width: 1000px;
width: 90%;
margin-top: 100px;
margin-bottom: 20px;
margin-left: auto;
margin-right: auto;
}
.register_area {
justify-content: center;
max-width: 1000px;
width: 80%;
display: flex;
align-items: center;
flex-direction: column;
background-color: var(--color-Primary-Light);
border-radius: 28px;
padding: 20px 20px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.register_inputs {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
}
.Inputbox {
outline: none;
height: 50px;
max-width: 400px;
width: 80%;
border-radius: 8px;
padding-left: 10px;
box-sizing: 1px;
margin-top: 40px;
border: 1px solid var(--color-Accent);
background-color: var(--color-background-Light);
}
.Button {
text-decoration: none;
font-weight: bold;
border: none;
line-height: 35px;
max-width: 300px;
width: 80%;
border-radius: 28px;
cursor: pointer;
color: #333;
background-color: var(--color-Accent);
transition: background-color 0.3s ease;
}
.Button:hover {
background-color: var(--color-Accent-darker);
}
.left_decoration {
width: 50%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.passos_register {
display: flex;
flex-direction: column;
margin-top: 30px;
font-size: 24px;
color: var(--color-Accent);
}
.texto {
width: 350px;
max-width: 100%;
font-size: 20px;
text-align: left;
}
@media screen and (max-width: 1300px) {
.full_register {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 100px;
max-width: 1500px;
}
.Inputbox {
max-width: 500px;
}
}
+621
View File
@@ -0,0 +1,621 @@
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;700&display=swap");
:root {
--color-background-Light: #f5f8fa;
--color-background-Dark: #202124;
--color-Primary-Light: #ffffff;
--color-Primary-Dark: #41444a;
--color-Accent: #00bf63;
--color-Accent-darker: #07a65a;
}
.Destacado {
color: var(--color-Accent);
}
.container {
max-width: 80%;
align-items: center;
margin: 0 auto;
justify-content: center;
}
.margintop {
margin-top: 20px;
}
.gap {
gap: rem;
}
.marginbottom {
margin-bottom: 20px;
}
.marginleft {
margin-left: 10px;
}
.alignitems {
align-items: center;
justify-content: center;
}
.texto {
width: 350px;
max-width: 100%;
font-size: 20px;
font-weight: 400;
}
.ttexto {
font-size: 20px;
font-weight: 400;
}
.titulo {
width: 350px;
max-width: 100%;
font-size: 28px;
font-weight: 600;
}
* {
box-sizing: border-box;
font-family: "Outfit", sans-serif;
margin: 0;
padding: 0;
text-decoration: none;
}
body {
background-color: var(--color-background-Light);
width: 100%;
height: 100%;
}
.Inputbox {
outline: none;
height: 50px;
max-width: 550px;
width: 80%;
border-radius: 8px;
padding-left: 10px;
box-sizing: 1px;
margin-top: 40px;
border: 1px solid var(--color-Accent);
background-color: var(--color-background-Light);
}
.Button {
text-decoration: none;
font-weight: bold;
border: none;
line-height: 35px;
padding: 5px 20%;
border-radius: 28px;
cursor: pointer;
color: #333;
background-color: var(--color-Accent);
transition: background-color 0.3s ease;
}
.Button:hover {
background-color: var(--color-Accent-darker);
}
.main_area {
margin-top: 50vh;
justify-content: center;
display: flex;
align-items: center;
background-color: var(--color-Primary-Light);
border-radius: 28px;
padding: 20px 50px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
max-width: 1000px;
width: 80%;
margin-left: auto;
margin-right: auto;
}
#Dashboard_img {
display: block;
max-width: 100%;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 20px;
height: 70px;
width: 100%;
padding: 6px 20px;
background-color: var(--color-Primary-Light);
border-radius: 0 0px 20px 20px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.logo_icon {
position: relative;
width: 135px;
height: 54px;
}
/*---Idioma_Select---*/
.Idioma_Select {
border: none;
margin-left: 20px;
font-size: 16px;
color: var(--color-Accent);
}
.Idioma_Select:focus {
outline: none;
}
/*---Header-Menu_options---*/
.Menu_options {
position: relative;
display: flex;
}
.Menu_options ul {
position: relative;
display: flex;
align-items: center;
}
.Menu_options li {
position: relative;
display: inline-block;
list-style: none;
}
.Menu_options li a {
display: inline-block;
text-decoration: none;
font-size: 16px;
margin-left: 20px;
color: var(--color-Accent);
}
.Menu_options li a:hover {
color: var(--color-Accent-darker);
}
.Menu_options li a::before {
content: "";
position: absolute;
transform-origin: center;
height: 2px;
transform: scaleX(0);
bottom: -4px;
left: 10px;
background-color: var(--color-Accent-darker);
transition: transform 0.3s ease, width 0.3s ease;
}
.Menu_options li a:hover::before {
transform: scaleX(0.5);
width: 100%;
}
/*---Header_buttons---*/
.perfil_foto {
margin-left: 20px;
border-radius: 50%;
width: 50px;
height: 50px;
cursor: pointer;
transition: transform 0.3s ease;
}
.perfil_foto:hover {
transform: translateY(-3px);
}
/*---Header-Others---*/
.icons {
font-size: 25px;
cursor: pointer;
margin-left: 30px;
color: #00bf63;
border: none;
background-color: var(--color-Primary-Light);
transition: transform 0.3s ease;
}
#notifications::before {
content: "Notificações";
position: absolute;
transform-origin: center;
font-size: small;
color: #ffffff;
transform: scaleX(0);
padding: 5px 10px;
border-radius: 12px;
bottom: -40px;
right: -71%;
background-color: var(--color-Accent-darker);
transition: transform 0.3s ease, width 0.3s ease;
}
#notifications:hover::before {
transform: scaleX(1);
}
#reminders::before {
content: "Agenda";
position: absolute;
transform-origin: center;
font-size: small;
color: #ffffff;
transform: scaleX(0);
padding: 5px 10px;
border-radius: 12px;
bottom: -40px;
right: -45%;
background-color: var(--color-Accent-darker);
transition: transform 0.3s ease, width 0.3s ease;
}
#reminders:hover::before {
transform: scaleX(1);
}
#chat::before {
content: "Chat";
position: absolute;
transform-origin: center;
font-size: small;
color: #ffffff;
transform: scaleX(0);
padding: 5px 10px;
border-radius: 12px;
bottom: -40px;
right: -20%;
background-color: var(--color-Accent-darker);
transition: transform 0.3s ease, width 0.3s ease;
}
#chat:hover::before {
transform: scaleX(1);
}
.dash_main {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
}
.box {
border-radius: 28px;
box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.3);
margin-left: 20px;
margin-bottom: 20px;
padding: 50px 20px;
}
.box:hover {
box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.2);
}
.ganhos {
display: grid;
}
.moneyganho {
display: grid;
margin-left: 30px;
}
.graficomoney {
display: flex;
align-items: center;
justify-content: space-around;
width: 100%;
margin-top: 40px;
}
.grafico {
width: 150px;
height: 150px;
border-radius: 50%;
background-image: conic-gradient(#08e67b 65%, #0fc36c 65% 76%, #07a65a 76% 100%);
}
.graficomoney ul {
list-style: none;
}
.graficomoney li {
list-style: none;
margin-bottom: 15px;
}
.logout {
border: none;
outline: none;
border-radius: 28px;
background: var(--color-Accent);
padding: 0;
padding: 10px;
cursor: pointer;
}
.ecommerce {
margin-top: 20px;
margin-left: 20px;
display: flex;
flex-direction: column;
justify-content: center;
height: 200px;
align-items: center;
text-align: center;
}
.c1 {
color: #07a65a;
margin-right: 10px;
}
.c2 {
color: #0fc36c;
margin-right: 10px;
}
.c3 {
color: #08e67b;
margin-right: 10px;
}
.mediavendasbox {
display: grid;
}
.mediavendas {
display: grid;
}
.graficovendas ul {
list-style: none;
display: flex;
align-items: center;
background-color: #404041;
width: 100%;
border-radius: 28px;
height: 80px;
justify-content: space-around;
}
.ba1 {
background-color: #08e67b;
}
.ba2 {
background-color: #0fc36c;
}
.ba3 {
background-color: #07a65a;
}
.graficovendas li {
display: grid;
align-items: center;
justify-content: center;
padding: 14px;
border-radius: 12px;
}
.graficobarras {
display: flex;
justify-content: space-around;
align-items: center;
}
.barra {
position: relative;
margin-top: 30px;
width: 30px;
height: 100px;
border-radius: 12px 12px 0 0;
}
.barra1 {
background-color: #08e67b;
}
.barra1::before {
content: "sapatos";
position: absolute;
transform-origin: center;
font-size: small;
color: #ffffff;
transform: scaleX(0);
padding: 5px 10px;
border-radius: 12px;
top: -30%;
left: -60%;
background-color: var(--color-Accent-darker);
transition: transform 0.3s ease, width 0.3s ease;
}
.barra1:hover::before {
transform: scaleX(1);
}
.barra2 {
background-color: #0fc36c;
}
.barra2::before {
content: "Jogos";
position: absolute;
transform-origin: center;
font-size: small;
color: #ffffff;
transform: scaleX(0);
padding: 5px 10px;
border-radius: 12px;
top: -30%;
left: -40%;
background-color: var(--color-Accent-darker);
transition: transform 0.3s ease, width 0.3s ease;
}
.barra2:hover::before {
transform: scaleX(1);
}
.barra3 {
background-color: #07a65a;
}
.barra3::before {
content: "Outros";
position: absolute;
transform-origin: center;
font-size: small;
color: #ffffff;
transform: scaleX(0);
padding: 5px 10px;
border-radius: 12px;
top: -30%;
left: -50%;
background-color: var(--color-Accent-darker);
transition: transform 0.3s ease, width 0.3s ease;
}
.barra3:hover::before {
transform: scaleX(1);
}
.ano_vendas_box {
display: grid;
}
.corbarra {
background-color: var(--color-Accent);
}
.meses {
list-style: none;
display: grid;
align-items: center;
background-color: #404041;
height: 100%;
border-radius: 28px;
height: 560px;
width: 100px;
justify-content: space-around;
}
.meses p {
display: grid;
align-items: center;
justify-content: center;
border-radius: 12px;
padding: 5px;
background-color: var(--color-Accent);
}
.barrave {
position: relative;
margin-top: 30px;
width: 100px;
height: 30px;
border-radius: 0 12px 12px 0;
}
.graficove {
display: flex;
margin-top: 30px;
}
.clientes {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 350px;
font-size: 64px;
text-align: center;
}
.pedidos {
display: flex;
flex-direction: column;
text-align: center;
align-items: center;
justify-content: center;
height: 370px;
font-size: 64px;
}
@media screen and (max-width: 1270px) {
.dash_main {
display: grid;
grid-template-columns: 1fr 1fr;
}
}
@media screen and (max-width: 980px) {
header {
height: 200px;
}
.perfil_foto {
width: 150px;
height: 150px;
}
.logo_icon {
position: relative;
width: 200px;
height: 80px;
}
.icons {
font-size: 50px;
cursor: pointer;
margin-left: 30px;
color: #00bf63;
border: none;
background-color: var(--color-Primary-Light);
transition: transform 0.3s ease;
}
.dash_main {
display: grid;
grid-template-columns: 1fr;
}
}
+127
View File
@@ -0,0 +1,127 @@
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;700&display=swap");
:root {
--color-background-Light: #f5f8fa;
--color-background-Dark: #202124;
--color-Primary-Light: #ffffff;
--color-Primary-Dark: #41444a;
--color-Accent: #00bf63;
--color-Accent-darker: #07a65a;
}
.Destacado {
color: var(--color-Accent);
text-decoration: none;
}
.container {
max-width: 80%;
align-items: center;
margin: 0 auto;
justify-content: center;
}
.margintop {
margin-top: 20px;
}
.gap {
gap: rem;
}
.marginbottom {
margin-bottom: 20px;
}
.alignitems {
align-items: center;
justify-content: center;
}
.texto {
width: 350px;
max-width: 100%;
font-size: 20px;
}
* {
box-sizing: border-box;
font-family: "Outfit", sans-serif;
margin: 0;
padding: 0;
}
body {
background-color: var(--color-background-Light);
width: 100%;
height: 100%;
}
.Inputbox {
outline: none;
height: 50px;
max-width: 550px;
width: 80%;
border-radius: 8px;
padding-left: 10px;
box-sizing: 1px;
margin-top: 40px;
border: 1px solid var(--color-Accent);
background-color: var(--color-background-Light);
}
.Button {
text-decoration: none;
font-weight: bold;
border: none;
line-height: 35px;
padding: 5px 20%;
border-radius: 28px;
cursor: pointer;
color: #333;
background-color: var(--color-Accent);
transition: background-color 0.3s ease;
}
.Button:hover {
background-color: var(--color-Accent-darker);
}
.main_area {
margin-top: 50vh;
justify-content: center;
display: flex;
align-items: center;
background-color: var(--color-Primary-Light);
border-radius: 28px;
padding: 20px 50px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
max-width: 1000px;
width: 80%;
margin-left: auto;
margin-right: auto;
}
#Dashboard_img {
display: block;
max-width: 100%;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.logo_icon {
width: 225px;
height: 100px;
border: none;
outline: none;
}
+177
View File
@@ -0,0 +1,177 @@
/*------------Variaveis------------*/
:root {
--color-background-Light: #f5f8fa;
--color-background-Dark: #202124;
--color-Primary-Light: #ffffff;
--color-Primary-Dark: #41444a;
--color-Accent: #00bf63;
--color-Accent-darker: #07a65a;
}
/*------------body------------*/
body {
background-color: var(--color-background-Light);
width: 100%;
height: 100%;
}
/*------------Section_1------------*/
.Section_1 {
padding-top: 100px;
padding-bottom: 200px;
border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}
#Dashboard_img {
display: block;
margin: 0 0 0 auto;
max-width: 50%;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.Section_1 .Title_Section {
text-align: left;
width: 400px;
margin-bottom: 2rem;
font-size: 2rem;
}
.Section_1 .P_Section {
text-align: left;
width: 400px;
font-size: 1rem;
}
.Section_1 .Button_Section {
text-decoration: none;
font-weight: bold;
border: none;
margin-top: 1rem;
white-space: nowrap;
line-height: 100px;
padding: 10px 20px;
border-radius: 28px;
color: var(--color-background-Dark);
background-color: var(--color-Accent);
transition: background-color 0.3s ease;
}
.Section_1 .Button_Section:hover {
background-color: var(--color-Accent-darker);
}
/*------------Section_2------------*/
.Section_2 {
padding-top: 200px;
flex-direction: row-reverse;
}
.Section_2 .Title_Section {
text-align: center;
margin-bottom: 2rem;
font-size: 2rem;
width: 400px;
}
.Section_2 .P_Section {
text-align: center;
font-size: 1rem;
margin-bottom: 2rem;
width: 400px;
}
.Logo_icons {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
border-radius: 12px;
padding: 15px 15px;
margin: 0 auto 0 0;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.Company_logos {
display: block;
width: 100px;
height: 100px;
max-width: 100%;
max-height: 100%;
border: solid;
border-radius: 12px;
padding: 10px 10px;
}
/*------------others------------*/
.Destacado {
color: var(--color-Accent);
}
.container {
display: flex;
max-width: 80rem;
align-items: center;
margin: 0 auto;
}
/*------------responsive------------*/
@media screen and (max-width: 1070px) {
.Section_1 {
padding-top: 150px;
padding-bottom: 100px;
display: grid;
align-items: center;
justify-content: center;
place-items: center;
}
#Dashboard_img {
margin: 0 0 0 0;
min-width: 80%;
}
.Section_1 .Title_Section,
.Section_1 .P_Section,
.Section_1 .Button_Section,
.Section_2 .Title_Section,
.Section_2 .P_Section,
.Section_2 .Button_Section {
place-items: center;
text-align: center;
width: auto;
}
.Text_Section {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
.Section_2 {
padding-top: 100px;
display: grid;
align-items: center;
justify-content: center;
}
.Logo_icons {
margin: auto;
grid-template-columns: repeat(2, 1fr);
}
}
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

+7
View File
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Svg Vector Icons : http://www.onlinewebfonts.com/icon -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
<metadata> Svg Vector Icons : http://www.onlinewebfonts.com/icon </metadata>
<g><path d="M979.7,190.5H846.9c-5.7,0-10.3,4.5-10.3,10v599c0,5.5,4.6,10,10.3,10h132.8c5.7,0,10.3-4.5,10.3-10v-599C990,195,985.3,190.5,979.7,190.5z M526.2,190.5H20.3c-5.7,0-10.3,4.5-10.3,10v599c0,5.5,4.6,10,10.3,10h132.8c5.7,0,10.3-4.5,10.3-10V329.4c0-5.4,4.6-9.9,10.3-9.9h286.2c80.5,0,103.3,60.9,103.3,100.2v379.8c0,5.5,4.6,10,10.3,10h132.7c5.7,0,10.3-4.5,10.3-10V374.6c0-35.1-4.3-85.5-50-129.8C618.7,198.5,575,190.5,526.2,190.5z M433.2,429.1H293.7c-5.7,0-10.3,4.5-10.3,10v360.5c0,5.5,4.7,10,10.3,10h139.5c5.6,0,10.3-4.5,10.3-10V439C443.5,433.6,438.9,429.1,433.2,429.1z"/></g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

+1
View File
@@ -0,0 +1 @@
<svg height="1691" viewBox="0.976 1 299.993 202.733" width="2500" xmlns="http://www.w3.org/2000/svg"><path d="M277.983 203.645c-14.03 0-22.35-7.18-22.987-17.52h13.414c0 3.447 1.91 8.035 10.21 8.32 5.752 0 8.935-3.446 8.935-6.037-.637-4.018-5.752-4.303-10.846-5.181-5.752-.834-10.209-1.998-13.414-3.425-4.457-2.305-7.026-7.201-7.026-12.36 0-9.2 7.684-16.38 21.077-16.38 12.778 0 21.077 6.61 21.691 16.665h-12.755c0-2.57-.637-6.894-8.3-6.894-5.115 0-8.298.856-8.935 4.588 0 5.182 10.846 4.896 19.145 6.894 7.662 2.02 12.777 6.894 12.777 13.81 0 12.646-10.209 17.52-22.986 17.52M33.537 118.8l44.042-25.578 23.623 40.53H41.836"/><path d="M126.15 202.12v-51.155" stroke="#000" stroke-width="12.888"/><path d="M13.096 177.299c0 8.035 7.025 14.644 14.665 14.644 8.321 0 14.688-6.609 14.688-14.644 0-7.75-6.367-14.644-14.688-14.644-7.64 0-14.665 6.894-14.665 14.644m14.029 26.434c-14.03 0-26.149-11.79-26.149-26.434s12.12-26.148 26.149-26.148c5.752 0 10.867 1.449 15.324 4.588v-4.018h12.778v50.848H42.45v-3.161c-3.82 2.876-9.572 4.325-15.324 4.325M197.59 133.74 136.314 26.863 180.355 1l76.601 132.74M71.825 177.299c0 8.035 6.39 14.644 14.688 14.644 7.64 0 14.688-6.609 14.688-14.644 0-7.75-7.048-14.644-14.688-14.644-8.299 0-14.688 6.894-14.688 14.644m14.051 26.434c-14.688 0-26.17-11.79-26.17-26.434s11.482-26.148 26.17-26.148c5.73 0 10.846 1.449 15.325 4.588v-21.538h12.756v68.368H101.2v-3.161c-4.479 2.876-9.594 4.325-15.325 4.325m-.628-130.614 44.678-25.27 49.158 85.888h-46.61v12.646h-12.757v-12.646m172.976 13.044c-3.205 0-6.388-2.876-6.388-6.323s3.183-6.323 6.388-6.323c3.82 0 6.39 2.877 6.39 6.323s-2.57 6.324-6.39 6.324m0-11.768c-3.205 0-5.115 2.568-5.115 5.444s1.91 5.467 5.115 5.467c3.184 0 5.094-2.59 5.094-5.467s-1.91-5.444-5.094-5.444"/><path d="m294.01 143.927-1.274-2.876h-1.273v2.876h-.966v-6.894h2.876c.637 0 1.91.879 1.91 2.02s-.637 1.713-1.273 1.998l1.273 2.876m-2.547-6.015h-1.273v2.283h1.273c1.274 0 1.274-.285 1.274-1.142 0-.592 0-1.141-1.274-1.141m-84.351 39.387c0 8.035 6.39 14.644 14.688 14.644 7.662 0 14.666-6.609 14.666-14.644 0-7.75-7.004-14.644-14.666-14.644-8.299 0-14.688 6.894-14.688 14.644m14.03 26.434c-14.666 0-26.149-11.79-26.149-26.434s11.483-26.148 26.148-26.148c5.753 0 10.868 1.449 15.325 4.588v-4.018h12.141v50.848h-12.14v-3.161c-4.458 2.876-9.573 4.325-15.326 4.325M149.7 177.299c0 8.035 7.025 14.644 14.687 14.644 8.3 0 14.688-6.609 14.688-14.644 0-7.75-6.389-14.644-14.688-14.644-7.662 0-14.687 6.894-14.687 14.644m29.375-43.098h12.756v68.368h-12.756v-3.161c-3.842 2.876-8.957 4.325-14.688 4.325-14.687 0-26.807-11.79-26.807-26.434s12.12-26.148 26.807-26.148c5.73 0 10.846 1.449 14.688 4.588z"/></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

+1
View File
@@ -0,0 +1 @@
<svg height="596" width="2500" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 190.802"><path d="M187.888 178.122H143.52l-13.573-32.738H56.003l-12.366 32.738H0L66.667 12.776h47.761zM91.155 52.286 66.912 116.53h50.913zm257.901-39.51h35.88v165.346h-41.219V74.842l-44.608 51.877h-6.301l-44.605-51.877V178.12h-41.219V12.776h35.88l53.092 61.336zm140.319 0c60.364 0 91.391 37.573 91.391 82.909 0 47.517-30.058 82.437-96 82.437h-68.369V12.776zm-31.762 135.041h26.906c41.457 0 53.823-28.129 53.823-52.377 0-28.368-15.276-52.363-54.308-52.363h-26.422v104.74zm205.156-95.836L610.797 0H800v189.21l-51.972-51.975V51.981zm-.061 10.416L609.2 115.903v74.899h74.889l53.505-53.506h-74.886z"/></svg>

After

Width:  |  Height:  |  Size: 685 B

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

+1
View File
@@ -0,0 +1 @@
<svg height="970" viewBox="0 0 1000.001 387.945" width="2500" xmlns="http://www.w3.org/2000/svg"><g stroke-width="2.576"><path d="M0 5.41h72.385v72.385H0z" fill="#0068b5"/><path d="M70.582 382.535V121.587H1.803v260.69h68.78zm455.436 2.576v-63.885c-10.047 0-18.548-.515-24.73-1.545-7.213-1.03-12.622-3.607-16.229-7.213s-5.925-8.759-7.213-15.714c-1.03-6.44-1.545-14.94-1.545-25.244v-90.933h49.717v-58.99H476.3V20.093h-68.78v252.19c0 21.38 1.804 39.412 5.41 53.838 3.607 14.168 9.79 25.76 18.29 34.518s19.835 14.94 33.488 18.805c13.91 3.864 31.427 5.667 52.293 5.667zm393.611-2.576V0H850.85v382.535zM341.32 147.347c-19.062-20.608-45.853-30.912-79.856-30.912-16.486 0-31.685 3.349-45.08 10.046-13.652 6.698-24.987 15.971-34.26 27.82l-3.607 4.895v-37.609h-67.748v260.69h68.263V243.431v4.895c.773-24.472 6.698-42.504 18.032-54.096 12.108-12.365 26.79-18.547 43.535-18.547 19.835 0 35.033 6.182 45.08 18.032 9.788 11.85 14.94 28.593 14.94 49.974v138.588h69.294V234.415c.258-37.094-9.53-66.46-28.593-87.068zM815.3 251.674c0-18.804-3.348-36.321-9.788-52.807-6.698-16.23-15.972-30.655-27.563-43.02-11.85-12.364-26.018-21.895-42.504-28.85-16.487-6.956-34.776-10.305-54.611-10.305-18.805 0-36.58 3.607-53.066 10.562-16.486 7.213-30.912 16.744-43.019 28.851s-21.896 26.533-28.851 43.02c-7.213 16.486-10.562 34.26-10.562 53.065s3.35 36.579 10.047 53.065 16.229 30.912 28.078 43.02c11.85 12.106 26.533 21.895 43.534 28.85 17.002 7.213 35.807 10.82 55.9 10.82 58.217 0 94.28-26.533 115.919-51.263l-49.459-37.61c-10.304 12.365-35.033 29.11-65.945 29.11-19.32 0-35.291-4.38-47.399-13.396-12.107-8.758-20.35-21.123-24.73-36.321l-.772-2.319H815.3zm-204.276-23.956c0-19.063 21.896-52.293 69.037-52.55 47.14 0 69.294 33.23 69.294 52.292zM997.94 349.562c-1.288-3.091-3.091-5.667-5.41-7.985-2.318-2.319-4.894-4.122-7.985-5.41s-6.44-2.06-9.789-2.06c-3.606 0-6.697.772-9.788 2.06-3.092 1.288-5.668 3.091-7.986 5.41-2.318 2.318-4.122 4.894-5.41 7.985s-2.06 6.44-2.06 9.789c0 3.606.772 6.697 2.06 9.789 1.288 3.09 3.092 5.667 5.41 7.985 2.318 2.319 4.894 4.122 7.986 5.41 3.09 1.288 6.44 2.06 9.788 2.06 3.607 0 6.698-.772 9.789-2.06s5.667-3.091 7.986-5.41c2.318-2.318 4.121-4.894 5.41-7.985s2.06-6.44 2.06-9.79-.773-6.697-2.06-9.788zm-4.121 18.032c-1.03 2.576-2.576 4.894-4.38 6.698-1.803 1.803-4.121 3.348-6.697 4.379-2.576 1.03-5.152 1.545-8.243 1.545-2.834 0-5.668-.515-8.243-1.545s-4.895-2.576-6.698-4.38c-1.803-1.803-3.349-4.121-4.38-6.697-1.03-2.576-1.545-5.152-1.545-8.243 0-2.834.515-5.667 1.546-8.243 1.03-2.576 2.576-4.895 4.379-6.698s4.122-3.349 6.698-4.38c2.575-1.03 5.151-1.545 8.243-1.545 2.833 0 5.667.516 8.243 1.546s4.894 2.576 6.697 4.38c1.804 1.802 3.35 4.12 4.38 6.697s1.545 5.152 1.545 8.243-.515 5.667-1.545 8.243zm-14.426-5.925c2.06-.257 3.606-1.03 4.894-2.318s2.061-3.091 2.061-5.667c0-2.834-.773-4.895-2.576-6.44-1.545-1.546-4.379-2.319-7.728-2.319H964.71v29.109h5.41v-11.85h3.863l7.213 11.85h5.667zm-2.834-4.379h-6.441v-8.243h6.44c.773 0 1.546.257 2.319.515s1.288.773 1.545 1.288c.516.515.516 1.288.516 2.318s-.258 1.804-.516 2.319c-.515.515-1.03 1.03-1.545 1.288-.773.257-1.546.515-2.319.515z"/></g></svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

+1
View File
@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2000 719.8" style="enable-background:new 0 0 2000 719.8" xml:space="preserve"><path d="M256.2 31.9C126 184.8 1.3 374.3 0 516c-.5 53.3 16.5 99.8 57.3 135.1 58.7 50.8 123.5 68.7 187.9 68.8 94.1.1 187.6-37.8 260.8-67.1 123.2-49.4 1485.6-641 1485.6-641 13.1-6.6 10.7-14.8-5.8-10.7-6.6 1.7-1483.1 401.8-1483.1 401.8-28 7.9-56.9 12-85.9 12.3-113.5.7-214.4-62.3-213.6-195 .3-52 16.1-114.6 53-188.3z" style="fill-rule:evenodd;clip-rule:evenodd"/></svg>

After

Width:  |  Height:  |  Size: 497 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 436 KiB

+1
View File
@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2078.3 304.3" style="enable-background:new 0 0 2078.3 304.3" xml:space="preserve"><path d="M1139.6 141.3s-20.2-12.5-32.7-17.3c0 0-38.7-17.9-46.4-26.5 0 0-15.1-14.2-6.3-30.7 0 0 3.7-10.8 19.6-10.8 0 0 20.8 1.1 20.8 18.2v24.1h74.4l-.1-35.4s5.7-58-87.6-60.6c0 0-73.4-4.8-94.4 34.7 0 0-8.3 8.8-8.3 39.5v22.2s-.8 25.6 12.2 42.1c0 0 7.4 10.8 25.6 22.7 0 0 37 19.9 59.2 31.3 0 0 22.4 12.8 19.5 33.1 0 0-1.8 20.9-23.5 20 0 0-19.8-.9-19.8-21.4v-24h-79.2v34.9s-2.2 66.8 99.6 66.8c0 0 97.3 2 101.8-68.5v-28.4s3.5-43.2-34.4-66zM758.9 10.5 734 166.6h-5.8L704.4 11.9H580.2L574 294.5h73.6l.9-212.9h5.8l39 212.9h77.4L809 81.7h5.1l1.8 212.8h73.9l-8-284H758.9zm-437.8 1.2-48.9 282.5h79.2l29-219h6.5l29 219H495L446 11.7H321.1zm1661.4 125.7v41.7h20.3v44.7c0 21.9-18.7 22.3-18.7 22.3-22.7 0-21.9-20.8-21.9-20.8V70.6c0-15.9 20.2-16.8 20.2-16.8 19.4 0 19.5 19 19.5 19v23.5h74.6c2.4-45.9-6.7-57-6.7-57C2051.3-2.2 1981.3 0 1981.3 0c-107.5 0-95.6 82.5-95.6 82.5v149.6c2.3 77.4 108.2 69.5 110 69.4 47.1-5.2 61.3-20.2 61.3-20.2 13.1-9.7 16.5-23.2 16.5-23.2 3.7-7.8 4.7-32.9 4.7-32.9v-87.9l-95.7.1zm-247.1 46h-3.2l-75.7-172.8H1566v283.9h73.7l-4.4-172.8h3.3l78.4 172.8h87.8v-284h-74.6l5.2 172.9zm-349.2 40.4s1.1 23.3-20.5 23.3c0 0-22.7 1.2-22.7-22.7l-.2-213.6H1262v211.9s-8.3 80.2 104.9 80.2c0 0 98.4 1.2 98.4-76.5V10.8h-79l-.1 213zM167 141.3s-20.2-12.5-32.7-17.3c0 0-38.7-17.9-46.4-26.5 0 0-15.1-14.2-6.2-30.7 0 0 3.7-10.8 19.6-10.8 0 0 20.8 1.1 20.8 18.2v24.1h74.4l-.1-35.4s5.7-58-87.6-60.6c0 0-7-.5-17.3.1 0 0-56.5 3-76.7 34-.1.2-.3.4-.4.6 0 0-8.2 8.8-8.2 39.5v22.2s-.9 25.6 12.2 42.1c0 0 7.4 10.8 25.6 22.7 0 0 37 19.9 59.2 31.3 0 0 22.4 12.8 19.5 33.1 0 0-1.8 20.9-23.4 20 0 0-19.8-.9-19.8-21.4v-24.1H0v35s-2.2 66.8 99.6 66.8c0 0 97.3 2 101.9-68.5v-28.4s3.4-43.2-34.5-66z" style="fill-rule:evenodd;clip-rule:evenodd"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

+25 -60
View File
@@ -1,8 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="PT-br"> <html lang="PT-br">
<head>
<head>
<meta charset="utf-8" /> <meta charset="utf-8" />
<meta http-equiv="X-UA-compatible" content="ie=edge" /> <meta http-equiv="X-UA-compatible" content="ie=edge" />
<title>AnalyTrick</title> <title>AnalyTrick</title>
@@ -13,9 +12,9 @@
<link rel="stylesheet" type="text/css" href="./css/Mains/Index_main.css" /> <link rel="stylesheet" type="text/css" href="./css/Mains/Index_main.css" />
<script src="./js/header_and_footer.js"></script> <script src="./js/header_and_footer.js"></script>
<script src="https://kit.fontawesome.com/6ffe26f1f6.js" crossorigin="anonymous"></script> <script src="https://kit.fontawesome.com/6ffe26f1f6.js" crossorigin="anonymous"></script>
</head> </head>
<body> <body>
<!-- Header --> <!-- Header -->
<header> <header>
@@ -79,9 +78,8 @@
<span class="Destacado">Sucesso</span>! <span class="Destacado">Sucesso</span>!
</h2> </h2>
<p class="P_Section"> <p class="P_Section">
A Analytrick oferece a melhor ferramenta para gerenciar sua loja A Analytrick oferece a melhor ferramenta para gerenciar sua loja virtual, permitindo que você impulsione seu
virtual, permitindo que você impulsione seu crescimento com decisões crescimento com decisões estratégicas embasadas em informações precisas sobre suas vendas.
estratégicas embasadas em informações precisas sobre suas vendas.
</p> </p>
<div> <div>
<a href="./precos.html" class="Button_Section">Conheça nossos Planos</a> <a href="./precos.html" class="Button_Section">Conheça nossos Planos</a>
@@ -93,13 +91,10 @@
<section class="Section_2 container"> <section class="Section_2 container">
<div class="Text_Section"> <div class="Text_Section">
<h2 class="Title_Section"> <h2 class="Title_Section">São mais de <span class="Destacado">3.000 </span>Lojas officiais</h2>
São mais de <span class="Destacado">3.000 </span>Lojas officiais
</h2>
<p class="P_Section"> <p class="P_Section">
A Analytricks é a escolha número um das lojas oficiais quando se A Analytricks é a escolha número um das lojas oficiais quando se trata de impulsionar seus negócios e
trata de impulsionar seus negócios e alcançar o sucesso de maneira alcançar o sucesso de maneira estratégica.
estratégica.
</p> </p>
</div> </div>
@@ -118,34 +113,10 @@
<section class="Section_3"> <section class="Section_3">
<div class="carousel"> <div class="carousel">
<div class="message-container"> <div class="message-container">
<div class="message message-1"> <div class="message message-1">Doa</div>
Dentro da Analytrick eu consigo fazer a gestão do meu negócio de <div class="message message-2">Marcos</div>
uma maneira mais assertiva, existem relatórios que eu consigo <div class="message message-3">sim</div>
analisar e verificar o que a concorrência está fazendo. Então, <div class="message message-4">c</div>
dessa forma eu consigo resolver e ter maior assertividade dentro
do projeto.
</div>
<div class="message message-2">
É uma ferramenta completa porque entrega análise de produtos,
categorias, preço, histórico de venda. Com a ferramenta a gente
consegue gerenciar parte das reclamações, informações que
precisamos responder para os clientes.
</div>
<div class="message message-3">
Me ajuda muito a conseguir enxergar o que está acontecendo no
mercado. Eu consigo saber como é que estou me posicionando, como
está a minha concorrência, quais produtos vendem. Então, dá pra
fazer um trabalho bem detalhado e estratégico, é uma ferramenta
fantástica.
</div>
<div class="message message-4">
Há mais de 3 anos a Real Trends nos ajuda criando novas
ferramentas que nos auxiliam ainda mais em nosso dia a dia. São
acessíveis e eficientes nos retornos, possuem um layout muito
amigável que facilita muito o trabalho do usuário. Sem dúvida
recomendamos a plataforma para quem deseja ir além e ter uma
operação sadia e lucrativa.
</div>
</div> </div>
</div> </div>
</section> </section>
@@ -165,22 +136,22 @@
<nav class="Social_links_footer"> <nav class="Social_links_footer">
<a href="./index.html"><img src="./img/Logo.png" alt="logo" class="logo_icon" /></a> <a href="./index.html"><img src="./img/Logo.png" alt="logo" class="logo_icon" /></a>
<p class="texto_motivacao"> <p class="texto_motivacao">Impulsione o seu negócio com a gente e alcance resultados extraordinários!</p>
Impulsione o seu negócio com a gente e alcance resultados
extraordinários!
</p>
<ul> <ul>
<li> <li>
<a href="dummy.html" class="icons_sociais" id="Instagram_icon"><i class="fa-brands fa-instagram" <a href="dummy.html" class="icons_sociais" id="Instagram_icon"
aria-label="Instagram"></i></a> ><i class="fa-brands fa-instagram" aria-label="Instagram"></i
></a>
</li> </li>
<li> <li>
<a href="dummy.html" class="icons_sociais" id="Facebook_icon"><i class="fa-brands fa-facebook-f" <a href="dummy.html" class="icons_sociais" id="Facebook_icon"
aria-label="Facebook"></i></a> ><i class="fa-brands fa-facebook-f" aria-label="Facebook"></i
></a>
</li> </li>
<li> <li>
<a href="dummy.html" class="icons_sociais" id="Whatsapp_icon"><i class="fa-brands fa-whatsapp" <a href="dummy.html" class="icons_sociais" id="Whatsapp_icon"
aria-label="Whatsapp"></i></a> ><i class="fa-brands fa-whatsapp" aria-label="Whatsapp"></i
></a>
</li> </li>
</ul> </ul>
</nav> </nav>
@@ -220,10 +191,7 @@
<h3><strong>Inscreva-se</strong></h3> <h3><strong>Inscreva-se</strong></h3>
</li> </li>
<li> <li>
<p> <p>Coloque seu email para ser notificado sobre as nossas novidades pela nossa newletter</p>
Coloque seu email para ser notificado sobre as nossas novidades
pela nossa newletter
</p>
</li> </li>
<li> <li>
<input type="email" id="email_box" placeholder="Insira seu Email aqui" /><button id="email_button"> <input type="email" id="email_box" placeholder="Insira seu Email aqui" /><button id="email_button">
@@ -241,13 +209,10 @@
<li><a href="./termos.html">Termos e condições</a></li> <li><a href="./termos.html">Termos e condições</a></li>
<li><a href="./privacidade.html">Politica de privacidade</a></li> <li><a href="./privacidade.html">Politica de privacidade</a></li>
<li> <li>
<p> <p>copyright <i class="fa-regular fa-copyright"></i> 2023 Analytrick</p>
copyright <i class="fa-regular fa-copyright"></i> 2023 Analytrick
</p>
</li> </li>
</ul> </ul>
</nav> </nav>
</footer> </footer>
</body> </body>
</html> </html>
+8
View File
@@ -0,0 +1,8 @@
function toggleDiv() {
var div = document.getElementById("background_ambuigue");
if (div.style.display === "flex") {
div.style.display = "none";
} else {
div.style.display = "flex";
}
}
+73
View File
@@ -0,0 +1,73 @@
<?php
include('conexao.php');
if (isset($_POST['nome']) || isset($_POST['sobrenome']) || isset($_POST['email']) || isset($_POST['senha'])) {
if (strlen($_POST['nome']) == 0) {
echo "<script>alert('Preencha seu nome!')</script>";
} else if (strlen($_POST['sobrenome']) == 0) {
echo "<script>alert('Preencha seu sobrenome!')</script>";
} else if (strlen($_POST['email']) == 0) {
echo "<script>alert('Preencha seu e-mail')</script>";
} else if (strlen($_POST['senha']) == 0) {
echo "<script>alert('Preencha sua senha!')</script>";
} else if(strlen($_POST['senha']) != strlen($_POST['confirmasenha'])){
echo "<script>alert('As senhas não conferem!')</script>";
} else {
$nome = $mysqli->real_escape_string($_POST['nome']);
$sobrenome = $mysqli->real_escape_string($_POST['sobrenome']);
$email = $mysqli->real_escape_string($_POST['email']);
$senha = $mysqli->real_escape_string($_POST['senha']);
$sql_code = "INSERT INTO `usuarios` (`id`, `nome`, `sobrenome`, `email`, `senha`) VALUES (NULL, '$nome', '$sobrenome', '$email', '$senha')";
$sql_query = $mysqli->query($sql_code) or die("Falha na execução do código SQL: " . $mysqli->error);
header("Location: ./login.php");
}
}
?>
<!DOCTYPE html>
<html lang="PT-br">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-compatible" content="ie=edge" />
<title>AnalyTrick</title>
<!-- imports -->
<link rel="stylesheet" type="text/css" href="..\css\Mains\cadastro_main.css" />
<script src="https://kit.fontawesome.com/6ffe26f1f6.js" crossorigin="anonymous"></script>
</head>
<body>
<main>
<section class="container">
<div>
<div>
<div class="full_register">
<div class="register_area">
<a href="/index.html" class="alignitems"><img src="/img/Logo.png" alt="logo"
id="logo_icon"></a>
<span class="texto"> Potencialize suas vendas, alcance o sucesso. Inscreva-se na
AnalyTrick.</span>
<form method="POST" action="" class="register_inputs">
<input type="text" id="nome" name="nome" placeholder="Nome" class="Inputbox" />
<input type="text" id="sobrenome" name="sobrenome" placeholder="Sobrenome"
class="Inputbox" />
<input type="email" id="e-mail" name="email" placeholder="E-mail" class="Inputbox" />
<input type="password" id="senha" name="senha" placeholder="Senha" class="Inputbox" />
<input type="password" id="confirmpassword" placeholder="Confirme a senha" class="Inputbox" name="comfirmasenha"/>
<div class="margintop">
<input type="checkbox" name="termos" onclick="submitButton.disabled=false" /> <label for="termos">Aceito os <a
href="/termos.html" class="Destacado">Termos e condições</a></label>
</div>
<button type="submit" class="Button margintop marginbottom" disabled id="submitButton">Criar conta</button>
</form>
<div>Já tem conta? <a href="./login.php" class="Destacado">Iniciar sessão</a></div>
</div>
</div>
</section>
</main>
</body>
</html>
+12
View File
@@ -0,0 +1,12 @@
<?php
$usuario = 'root';
$senha = '';
$database = 'Login';
$host = 'localhost';
$mysqli = new mysqli($host, $usuario, $senha, $database);
if ($mysqli->error) {
die('Falha ao conectar ao banco de dados: ' . $mysqli->error);
}
+211
View File
@@ -0,0 +1,211 @@
<?php
include('session.php');
include('conexao.php');
$sql_code = "SELECT * FROM vendas";
$sql_query = $mysqli->query($sql_code) or die($mysqli->error);
$dado = mysqli_fetch_assoc($sql_query);
if (isset($_POST['logout'])) {
session_destroy();
header("Location: /index.html");
}
?>
<!DOCTYPE html>
<html lang="PT-br">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-compatible" content="ie=edge" />
<title>AnalyTrick</title>
<!-- imports -->
<script src="./js/header_and_footer.js"></script>
<link rel="stylesheet" type="text/css" href="..\css\Mains\dashboard_main.css" />
<script src="https://kit.fontawesome.com/6ffe26f1f6.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<form method="POST" action=""><input type="submit" name="logout" value="Logout" class="logout ttexto">
</form>
<nav class="Menu_options">
<select name="Linguas" class="Idioma_Select">
<option value="Portugues">PT-BR</option>
<option value="Ingles">EN</option>
</select>
<ul class="Menu_options_list">
<li><button class="icons" id="notifications"><i class="fa-solid fa-bell"></button></i></li>
<li><button class="icons" id="reminders"><i class="fa-solid fa-calendar-days"></button></i></li>
<li><button class="icons" id="chat"><i class="fa-sharp fa-solid fa-comment"></button></i></li>
</ul>
<img src="./img/fotoperfil.png" alt="perfilfoto" class="perfil_foto">
</nav>
</header>
<main>
<section>
<div class="ecommerce">
<h2 class="titulo Destacado">E-Commerce Dashboard</h2>
<p class="texto">Home - Dashboard</p>
</div>
<div class="dash_main">
<div>
<div class="ganhos box">
<div class="moneyganho">
<h3 class="titulo Destacado">$
<?php echo $dado["ganhos"]; ?>
</h3>
<p class="texto">Ganhos Atuais</p>
</div>
<div class="graficomoney">
<div class="grafico"></div>
<ul>
<li class="ttexto"><span class="c1"><i class="fa-solid fa-circle"></i></span> Sapatos
<span class="Destacado marginleft">$
<?php echo $dado["sapatos"]; ?>
</span>
</li>
<li class="ttexto"><span class="c2"><i class="fa-solid fa-circle"></i></span>Jogos <span
class="Destacado marginleft">$
<?php echo $dado["jogos"]; ?>
</span>
</li>
<li class="ttexto"><span class="c3"><i class="fa-solid fa-circle"></i></span>Outros
<span class="Destacado marginleft">$
<?php echo $dado["outros"]; ?>
</span>
</li>
</ul>
</div>
</div>
<div class="box">
<div class="pedidos">
<h3 class="titulo Destacado">
<?php echo $dado["emitidosmes"]; ?>
</h3>
<p class="texto">Pedidos nesse Mês</p>
</div>
<div></div>
</div>
</div>
<div>
<div class="box">
<div class="mediavendasbox">
<div class="mediavendas">
<h3 class="Destacado titulo">
<?php echo $dado["vendasdias"]; ?>
</h3>
<p class="texto">Média de vendas diárias</p>
</div>
<div class="graficovendas">
<div class="graficobarras">
<div class="barra barra1"></div>
<div class="barra barra2"></div>
<div class="barra barra3"></div>
</div>
<div class="categoria_media">
<ul>
<li class="ba1">
<?php echo $dado["sapatosdia"]; ?>
</li>
<li class="ba2">
<?php echo $dado["jogosdia"]; ?>
</li>
<li class="ba3">
<?php echo $dado["outrosdia"]; ?>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="box">
<div class=" clientes">
<h3 class="titulo Destacado">
<?php echo $dado["novosclientes"]; ?>
</h3>
<p class="texto">Novos Clientes esse mês</p>
</div>
<div></div>
</div>
</div>
<div class="box">
<div class="ano_vendas_box">
<div>
<h3 class="titulo Destacado">Vendas nesse Ano</h3>
<p class="texto">De usuários de todas as plataformas</p>
</div>
<div>
<h3 class="titulo Destacado margintop">$
<?php echo $dado["vendasAno"]; ?>
</h3>
</div>
<div class="graficove">
<div class="meses">
<p>
<?php echo $dado["janeiro"]; ?>
</p>
<p>
<?php echo $dado["feveiro"]; ?>
</p>
<p>
<?php echo $dado["marco"]; ?>
</p>
<p>
<?php echo $dado["abril"]; ?>
</p>
<p>
<?php echo $dado["maio"]; ?>
</p>
<p>
<?php echo $dado["junho"]; ?>
</p>
<p>
<?php echo $dado["julho"]; ?>
</p>
<p>
<?php echo $dado["agosto"]; ?>
</p>
<p>
<?php echo $dado["setembro"]; ?>
</p>
</div>
<div class="graficobarrashori">
<div class="barrave corbarra"></div>
<div class="barrave corbarra"></div>
<div class="barrave corbarra"></div>
<div class="barrave corbarra"></div>
<div class="barrave corbarra"></div>
<div class="barrave corbarra"></div>
<div class="barrave corbarra"></div>
<div class="barrave corbarra"></div>
<div class="barrave corbarra"></div>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
</body>
</html>
+78
View File
@@ -0,0 +1,78 @@
<?php
include('conexao.php');
include('sessionbypass.php');
if (isset($_POST['email']) || isset($_POST['senha'])) {
if (strlen($_POST['email']) == 0) {
echo "Preencha seu e-mail";
} else if (strlen($_POST['senha']) == 0) {
echo "Preencha sua senha";
} else {
$email = $mysqli->real_escape_string($_POST['email']);
$senha = $mysqli->real_escape_string($_POST['senha']);
$sql_code = "SELECT * FROM usuarios WHERE email = '$email' AND senha = '$senha'";
$sql_query = $mysqli->query($sql_code) or die("Falha na execução do código SQL: " . $mysqli->error);
$quantidade = $sql_query->num_rows;
if ($quantidade == 1) {
$usuario = $sql_query->fetch_assoc();
if (!isset($_SESSION)) {
session_start();
}
$_SESSION['id'] = $usuario['id'];
$_SESSION['nome'] = $usuario['nome'];
echo "Logado com suceso!";
} else {
echo "Falha ao Logar! E-mail ou Senha incorretos";
}
}
header("Location: ./dashboard.php");
}
?>
<!DOCTYPE html>
<html lang="PT-br">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-compatible" content="ie=edge" />
<title>AnalyTrick</title>
<!-- imports -->
<link rel="stylesheet" type="text/css" href="..\css/Mains/login_main.css" />
<script src="https://kit.fontawesome.com/6ffe26f1f6.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- main -->
<main>
<section>
<div class="login_area">
<a href="/index.html"><img src="/img/Logo.png" alt="logo" id="logo_icon" /></a>
<div>Brasil</div>
<form method="POST" action="" class="register_inputs">
<input type="email" id="email" name="email" placeholder="E-mail" class="Inputbox" />
<input type="password" id="senha" name="senha" placeholder="Senha" class="Inputbox" />
<button type="submit" value="Enviar" class="Button margintop marginbottom">Acessar</button>
</form>
<div class="marginbottom gap">
<a href="/dummy.html" class="Destacado">Esqueci minha senha</a>
<h>/</h>
<a href="/dummy.html" class="Destacado">Esqueci meu e-mail</a>
</div>
<div class="marginbottom">Não tem conta? <a href="./cadastro.php" class=" Destacado">Cadastre-se
agora</a></div>
<div class="marginbottom">
O acesso à plataforma implica em aceitar os nossos
<a href="/termos.html " class=" Destacado">Termos e condições</a> e
<a href="/privacidade.html" class=" Destacado">Politica de privacidade</a>.
</div>
</div>
</section>
</main>
</body>
</html>
+8
View File
@@ -0,0 +1,8 @@
<?php
if (!isset($_SESSION)) {
session_start();
}
if (!isset($_SESSION['id'])) {
die("Você não está Logado para acessar essa página");
}
+9
View File
@@ -0,0 +1,9 @@
<?php
if (!isset($_SESSION)) {
session_start();
}
if (!isset($_SESSION['id'])) {
} else {
header("Location: ./dashboard.php");
}
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

+7
View File
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Svg Vector Icons : http://www.onlinewebfonts.com/icon -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
<metadata> Svg Vector Icons : http://www.onlinewebfonts.com/icon </metadata>
<g><path d="M979.7,190.5H846.9c-5.7,0-10.3,4.5-10.3,10v599c0,5.5,4.6,10,10.3,10h132.8c5.7,0,10.3-4.5,10.3-10v-599C990,195,985.3,190.5,979.7,190.5z M526.2,190.5H20.3c-5.7,0-10.3,4.5-10.3,10v599c0,5.5,4.6,10,10.3,10h132.8c5.7,0,10.3-4.5,10.3-10V329.4c0-5.4,4.6-9.9,10.3-9.9h286.2c80.5,0,103.3,60.9,103.3,100.2v379.8c0,5.5,4.6,10,10.3,10h132.7c5.7,0,10.3-4.5,10.3-10V374.6c0-35.1-4.3-85.5-50-129.8C618.7,198.5,575,190.5,526.2,190.5z M433.2,429.1H293.7c-5.7,0-10.3,4.5-10.3,10v360.5c0,5.5,4.7,10,10.3,10h139.5c5.6,0,10.3-4.5,10.3-10V439C443.5,433.6,438.9,429.1,433.2,429.1z"/></g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

+1
View File
@@ -0,0 +1 @@
<svg height="1691" viewBox="0.976 1 299.993 202.733" width="2500" xmlns="http://www.w3.org/2000/svg"><path d="M277.983 203.645c-14.03 0-22.35-7.18-22.987-17.52h13.414c0 3.447 1.91 8.035 10.21 8.32 5.752 0 8.935-3.446 8.935-6.037-.637-4.018-5.752-4.303-10.846-5.181-5.752-.834-10.209-1.998-13.414-3.425-4.457-2.305-7.026-7.201-7.026-12.36 0-9.2 7.684-16.38 21.077-16.38 12.778 0 21.077 6.61 21.691 16.665h-12.755c0-2.57-.637-6.894-8.3-6.894-5.115 0-8.298.856-8.935 4.588 0 5.182 10.846 4.896 19.145 6.894 7.662 2.02 12.777 6.894 12.777 13.81 0 12.646-10.209 17.52-22.986 17.52M33.537 118.8l44.042-25.578 23.623 40.53H41.836"/><path d="M126.15 202.12v-51.155" stroke="#000" stroke-width="12.888"/><path d="M13.096 177.299c0 8.035 7.025 14.644 14.665 14.644 8.321 0 14.688-6.609 14.688-14.644 0-7.75-6.367-14.644-14.688-14.644-7.64 0-14.665 6.894-14.665 14.644m14.029 26.434c-14.03 0-26.149-11.79-26.149-26.434s12.12-26.148 26.149-26.148c5.752 0 10.867 1.449 15.324 4.588v-4.018h12.778v50.848H42.45v-3.161c-3.82 2.876-9.572 4.325-15.324 4.325M197.59 133.74 136.314 26.863 180.355 1l76.601 132.74M71.825 177.299c0 8.035 6.39 14.644 14.688 14.644 7.64 0 14.688-6.609 14.688-14.644 0-7.75-7.048-14.644-14.688-14.644-8.299 0-14.688 6.894-14.688 14.644m14.051 26.434c-14.688 0-26.17-11.79-26.17-26.434s11.482-26.148 26.17-26.148c5.73 0 10.846 1.449 15.325 4.588v-21.538h12.756v68.368H101.2v-3.161c-4.479 2.876-9.594 4.325-15.325 4.325m-.628-130.614 44.678-25.27 49.158 85.888h-46.61v12.646h-12.757v-12.646m172.976 13.044c-3.205 0-6.388-2.876-6.388-6.323s3.183-6.323 6.388-6.323c3.82 0 6.39 2.877 6.39 6.323s-2.57 6.324-6.39 6.324m0-11.768c-3.205 0-5.115 2.568-5.115 5.444s1.91 5.467 5.115 5.467c3.184 0 5.094-2.59 5.094-5.467s-1.91-5.444-5.094-5.444"/><path d="m294.01 143.927-1.274-2.876h-1.273v2.876h-.966v-6.894h2.876c.637 0 1.91.879 1.91 2.02s-.637 1.713-1.273 1.998l1.273 2.876m-2.547-6.015h-1.273v2.283h1.273c1.274 0 1.274-.285 1.274-1.142 0-.592 0-1.141-1.274-1.141m-84.351 39.387c0 8.035 6.39 14.644 14.688 14.644 7.662 0 14.666-6.609 14.666-14.644 0-7.75-7.004-14.644-14.666-14.644-8.299 0-14.688 6.894-14.688 14.644m14.03 26.434c-14.666 0-26.149-11.79-26.149-26.434s11.483-26.148 26.148-26.148c5.753 0 10.868 1.449 15.325 4.588v-4.018h12.141v50.848h-12.14v-3.161c-4.458 2.876-9.573 4.325-15.326 4.325M149.7 177.299c0 8.035 7.025 14.644 14.687 14.644 8.3 0 14.688-6.609 14.688-14.644 0-7.75-6.389-14.644-14.688-14.644-7.662 0-14.687 6.894-14.687 14.644m29.375-43.098h12.756v68.368h-12.756v-3.161c-3.842 2.876-8.957 4.325-14.688 4.325-14.687 0-26.807-11.79-26.807-26.434s12.12-26.148 26.807-26.148c5.73 0 10.846 1.449 14.688 4.588z"/></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

+1
View File
@@ -0,0 +1 @@
<svg height="596" width="2500" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 190.802"><path d="M187.888 178.122H143.52l-13.573-32.738H56.003l-12.366 32.738H0L66.667 12.776h47.761zM91.155 52.286 66.912 116.53h50.913zm257.901-39.51h35.88v165.346h-41.219V74.842l-44.608 51.877h-6.301l-44.605-51.877V178.12h-41.219V12.776h35.88l53.092 61.336zm140.319 0c60.364 0 91.391 37.573 91.391 82.909 0 47.517-30.058 82.437-96 82.437h-68.369V12.776zm-31.762 135.041h26.906c41.457 0 53.823-28.129 53.823-52.377 0-28.368-15.276-52.363-54.308-52.363h-26.422v104.74zm205.156-95.836L610.797 0H800v189.21l-51.972-51.975V51.981zm-.061 10.416L609.2 115.903v74.899h74.889l53.505-53.506h-74.886z"/></svg>

After

Width:  |  Height:  |  Size: 685 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="none" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.5 13.5V5.41a1 1 0 0 0-.3-.7L9.8.29A1 1 0 0 0 9.08 0H1.5v13.5A2.5 2.5 0 0 0 4 16h8a2.5 2.5 0 0 0 2.5-2.5m-1.5 0v-7H8v-5H3v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1M9.5 5V2.12L12.38 5zM5.13 5h-.62v1.25h2.12V5zm-.62 3h7.12v1.25H4.5zm.62 3h-.62v1.25h7.12V11z" clip-rule="evenodd" fill="#666" fill-rule="evenodd"/></svg>

After

Width:  |  Height:  |  Size: 391 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><g clip-path="url(#a)"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.27 14.1a6.5 6.5 0 0 0 3.67-3.45q-1.24.21-2.7.34-.31 1.83-.97 3.1M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m.48-1.52a7 7 0 0 1-.96 0H7.5a4 4 0 0 1-.84-1.32q-.38-.89-.63-2.08a40 40 0 0 0 3.92 0q-.25 1.2-.63 2.08a4 4 0 0 1-.84 1.31zm2.94-4.76q1.66-.15 2.95-.43a7 7 0 0 0 0-2.58q-1.3-.27-2.95-.43a18 18 0 0 1 0 3.44m-1.27-3.54a17 17 0 0 1 0 3.64 39 39 0 0 1-4.3 0 17 17 0 0 1 0-3.64 39 39 0 0 1 4.3 0m1.1-1.17q1.45.13 2.69.34a6.5 6.5 0 0 0-3.67-3.44q.65 1.26.98 3.1M8.48 1.5l.01.02q.41.37.84 1.31.38.89.63 2.08a40 40 0 0 0-3.92 0q.25-1.2.63-2.08a4 4 0 0 1 .85-1.32 7 7 0 0 1 .96 0m-2.75.4a6.5 6.5 0 0 0-3.67 3.44 29 29 0 0 1 2.7-.34q.31-1.83.97-3.1M4.58 6.28q-1.66.16-2.95.43a7 7 0 0 0 0 2.58q1.3.27 2.95.43a18 18 0 0 1 0-3.44m.17 4.71q-1.45-.12-2.69-.34a6.5 6.5 0 0 0 3.67 3.44q-.65-1.27-.98-3.1" fill="#666"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z"/></clipPath></defs></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

+1
View File
@@ -0,0 +1 @@
<svg height="970" viewBox="0 0 1000.001 387.945" width="2500" xmlns="http://www.w3.org/2000/svg"><g stroke-width="2.576"><path d="M0 5.41h72.385v72.385H0z" fill="#0068b5"/><path d="M70.582 382.535V121.587H1.803v260.69h68.78zm455.436 2.576v-63.885c-10.047 0-18.548-.515-24.73-1.545-7.213-1.03-12.622-3.607-16.229-7.213s-5.925-8.759-7.213-15.714c-1.03-6.44-1.545-14.94-1.545-25.244v-90.933h49.717v-58.99H476.3V20.093h-68.78v252.19c0 21.38 1.804 39.412 5.41 53.838 3.607 14.168 9.79 25.76 18.29 34.518s19.835 14.94 33.488 18.805c13.91 3.864 31.427 5.667 52.293 5.667zm393.611-2.576V0H850.85v382.535zM341.32 147.347c-19.062-20.608-45.853-30.912-79.856-30.912-16.486 0-31.685 3.349-45.08 10.046-13.652 6.698-24.987 15.971-34.26 27.82l-3.607 4.895v-37.609h-67.748v260.69h68.263V243.431v4.895c.773-24.472 6.698-42.504 18.032-54.096 12.108-12.365 26.79-18.547 43.535-18.547 19.835 0 35.033 6.182 45.08 18.032 9.788 11.85 14.94 28.593 14.94 49.974v138.588h69.294V234.415c.258-37.094-9.53-66.46-28.593-87.068zM815.3 251.674c0-18.804-3.348-36.321-9.788-52.807-6.698-16.23-15.972-30.655-27.563-43.02-11.85-12.364-26.018-21.895-42.504-28.85-16.487-6.956-34.776-10.305-54.611-10.305-18.805 0-36.58 3.607-53.066 10.562-16.486 7.213-30.912 16.744-43.019 28.851s-21.896 26.533-28.851 43.02c-7.213 16.486-10.562 34.26-10.562 53.065s3.35 36.579 10.047 53.065 16.229 30.912 28.078 43.02c11.85 12.106 26.533 21.895 43.534 28.85 17.002 7.213 35.807 10.82 55.9 10.82 58.217 0 94.28-26.533 115.919-51.263l-49.459-37.61c-10.304 12.365-35.033 29.11-65.945 29.11-19.32 0-35.291-4.38-47.399-13.396-12.107-8.758-20.35-21.123-24.73-36.321l-.772-2.319H815.3zm-204.276-23.956c0-19.063 21.896-52.293 69.037-52.55 47.14 0 69.294 33.23 69.294 52.292zM997.94 349.562c-1.288-3.091-3.091-5.667-5.41-7.985-2.318-2.319-4.894-4.122-7.985-5.41s-6.44-2.06-9.789-2.06c-3.606 0-6.697.772-9.788 2.06-3.092 1.288-5.668 3.091-7.986 5.41-2.318 2.318-4.122 4.894-5.41 7.985s-2.06 6.44-2.06 9.789c0 3.606.772 6.697 2.06 9.789 1.288 3.09 3.092 5.667 5.41 7.985 2.318 2.319 4.894 4.122 7.986 5.41 3.09 1.288 6.44 2.06 9.788 2.06 3.607 0 6.698-.772 9.789-2.06s5.667-3.091 7.986-5.41c2.318-2.318 4.121-4.894 5.41-7.985s2.06-6.44 2.06-9.79-.773-6.697-2.06-9.788zm-4.121 18.032c-1.03 2.576-2.576 4.894-4.38 6.698-1.803 1.803-4.121 3.348-6.697 4.379-2.576 1.03-5.152 1.545-8.243 1.545-2.834 0-5.668-.515-8.243-1.545s-4.895-2.576-6.698-4.38c-1.803-1.803-3.349-4.121-4.38-6.697-1.03-2.576-1.545-5.152-1.545-8.243 0-2.834.515-5.667 1.546-8.243 1.03-2.576 2.576-4.895 4.379-6.698s4.122-3.349 6.698-4.38c2.575-1.03 5.151-1.545 8.243-1.545 2.833 0 5.667.516 8.243 1.546s4.894 2.576 6.697 4.38c1.804 1.802 3.35 4.12 4.38 6.697s1.545 5.152 1.545 8.243-.515 5.667-1.545 8.243zm-14.426-5.925c2.06-.257 3.606-1.03 4.894-2.318s2.061-3.091 2.061-5.667c0-2.834-.773-4.895-2.576-6.44-1.545-1.546-4.379-2.319-7.728-2.319H964.71v29.109h5.41v-11.85h3.863l7.213 11.85h5.667zm-2.834-4.379h-6.441v-8.243h6.44c.773 0 1.546.257 2.319.515s1.288.773 1.545 1.288c.516.515.516 1.288.516 2.318s-.258 1.804-.516 2.319c-.515.515-1.03 1.03-1.545 1.288-.773.257-1.546.515-2.319.515z"/></g></svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

+1
View File
@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 394 80"><path fill="#000" d="M262 0h68.5v12.7h-27.2v66.6h-13.6V12.7H262V0ZM149 0v12.7H94v20.4h44.3v12.6H94v21h55v12.6H80.5V0h68.7zm34.3 0h-17.8l63.8 79.4h17.9l-32-39.7 32-39.6h-17.9l-23 28.6-23-28.6zm18.3 56.7-9-11-27.1 33.7h17.8l18.3-22.7z"/><path fill="#000" d="M81 79.3 17 0H0v79.3h13.6V17l50.2 62.3H81Zm252.6-.4c-1 0-1.8-.4-2.5-1s-1.1-1.6-1.1-2.6.3-1.8 1-2.5 1.6-1 2.6-1 1.8.3 2.5 1a3.4 3.4 0 0 1 .6 4.3 3.7 3.7 0 0 1-3 1.8zm23.2-33.5h6v23.3c0 2.1-.4 4-1.3 5.5a9.1 9.1 0 0 1-3.8 3.5c-1.6.8-3.5 1.3-5.7 1.3-2 0-3.7-.4-5.3-1s-2.8-1.8-3.7-3.2c-.9-1.3-1.4-3-1.4-5h6c.1.8.3 1.6.7 2.2s1 1.2 1.6 1.5c.7.4 1.5.5 2.4.5 1 0 1.8-.2 2.4-.6a4 4 0 0 0 1.6-1.8c.3-.8.5-1.8.5-3V45.5zm30.9 9.1a4.4 4.4 0 0 0-2-3.3 7.5 7.5 0 0 0-4.3-1.1c-1.3 0-2.4.2-3.3.5-.9.4-1.6 1-2 1.6a3.5 3.5 0 0 0-.3 4c.3.5.7.9 1.3 1.2l1.8 1 2 .5 3.2.8c1.3.3 2.5.7 3.7 1.2a13 13 0 0 1 3.2 1.8 8.1 8.1 0 0 1 3 6.5c0 2-.5 3.7-1.5 5.1a10 10 0 0 1-4.4 3.5c-1.8.8-4.1 1.2-6.8 1.2-2.6 0-4.9-.4-6.8-1.2-2-.8-3.4-2-4.5-3.5a10 10 0 0 1-1.7-5.6h6a5 5 0 0 0 3.5 4.6c1 .4 2.2.6 3.4.6 1.3 0 2.5-.2 3.5-.6 1-.4 1.8-1 2.4-1.7a4 4 0 0 0 .8-2.4c0-.9-.2-1.6-.7-2.2a11 11 0 0 0-2.1-1.4l-3.2-1-3.8-1c-2.8-.7-5-1.7-6.6-3.2a7.2 7.2 0 0 1-2.4-5.7 8 8 0 0 1 1.7-5 10 10 0 0 1 4.3-3.5c2-.8 4-1.2 6.4-1.2 2.3 0 4.4.4 6.2 1.2 1.8.8 3.2 2 4.3 3.4 1 1.4 1.5 3 1.5 5h-5.8z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

+1
View File
@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2000 719.8" style="enable-background:new 0 0 2000 719.8" xml:space="preserve"><path d="M256.2 31.9C126 184.8 1.3 374.3 0 516c-.5 53.3 16.5 99.8 57.3 135.1 58.7 50.8 123.5 68.7 187.9 68.8 94.1.1 187.6-37.8 260.8-67.1 123.2-49.4 1485.6-641 1485.6-641 13.1-6.6 10.7-14.8-5.8-10.7-6.6 1.7-1483.1 401.8-1483.1 401.8-28 7.9-56.9 12-85.9 12.3-113.5.7-214.4-62.3-213.6-195 .3-52 16.1-114.6 53-188.3z" style="fill-rule:evenodd;clip-rule:evenodd"/></svg>

After

Width:  |  Height:  |  Size: 497 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 436 KiB

+1
View File
@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2078.3 304.3" style="enable-background:new 0 0 2078.3 304.3" xml:space="preserve"><path d="M1139.6 141.3s-20.2-12.5-32.7-17.3c0 0-38.7-17.9-46.4-26.5 0 0-15.1-14.2-6.3-30.7 0 0 3.7-10.8 19.6-10.8 0 0 20.8 1.1 20.8 18.2v24.1h74.4l-.1-35.4s5.7-58-87.6-60.6c0 0-73.4-4.8-94.4 34.7 0 0-8.3 8.8-8.3 39.5v22.2s-.8 25.6 12.2 42.1c0 0 7.4 10.8 25.6 22.7 0 0 37 19.9 59.2 31.3 0 0 22.4 12.8 19.5 33.1 0 0-1.8 20.9-23.5 20 0 0-19.8-.9-19.8-21.4v-24h-79.2v34.9s-2.2 66.8 99.6 66.8c0 0 97.3 2 101.8-68.5v-28.4s3.5-43.2-34.4-66zM758.9 10.5 734 166.6h-5.8L704.4 11.9H580.2L574 294.5h73.6l.9-212.9h5.8l39 212.9h77.4L809 81.7h5.1l1.8 212.8h73.9l-8-284H758.9zm-437.8 1.2-48.9 282.5h79.2l29-219h6.5l29 219H495L446 11.7H321.1zm1661.4 125.7v41.7h20.3v44.7c0 21.9-18.7 22.3-18.7 22.3-22.7 0-21.9-20.8-21.9-20.8V70.6c0-15.9 20.2-16.8 20.2-16.8 19.4 0 19.5 19 19.5 19v23.5h74.6c2.4-45.9-6.7-57-6.7-57C2051.3-2.2 1981.3 0 1981.3 0c-107.5 0-95.6 82.5-95.6 82.5v149.6c2.3 77.4 108.2 69.5 110 69.4 47.1-5.2 61.3-20.2 61.3-20.2 13.1-9.7 16.5-23.2 16.5-23.2 3.7-7.8 4.7-32.9 4.7-32.9v-87.9l-95.7.1zm-247.1 46h-3.2l-75.7-172.8H1566v283.9h73.7l-4.4-172.8h3.3l78.4 172.8h87.8v-284h-74.6l5.2 172.9zm-349.2 40.4s1.1 23.3-20.5 23.3c0 0-22.7 1.2-22.7-22.7l-.2-213.6H1262v211.9s-8.3 80.2 104.9 80.2c0 0 98.4 1.2 98.4-76.5V10.8h-79l-.1 213zM167 141.3s-20.2-12.5-32.7-17.3c0 0-38.7-17.9-46.4-26.5 0 0-15.1-14.2-6.2-30.7 0 0 3.7-10.8 19.6-10.8 0 0 20.8 1.1 20.8 18.2v24.1h74.4l-.1-35.4s5.7-58-87.6-60.6c0 0-7-.5-17.3.1 0 0-56.5 3-76.7 34-.1.2-.3.4-.4.6 0 0-8.2 8.8-8.2 39.5v22.2s-.9 25.6 12.2 42.1c0 0 7.4 10.8 25.6 22.7 0 0 37 19.9 59.2 31.3 0 0 22.4 12.8 19.5 33.1 0 0-1.8 20.9-23.4 20 0 0-19.8-.9-19.8-21.4v-24.1H0v35s-2.2 66.8 99.6 66.8c0 0 97.3 2 101.9-68.5v-28.4s3.4-43.2-34.5-66z" style="fill-rule:evenodd;clip-rule:evenodd"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1155 1000"><path d="m577.3 0 577.4 1000H0z" fill="#fff"/></svg>

After

Width:  |  Height:  |  Size: 128 B

+1
View File
@@ -0,0 +1 @@
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.5 2.5h13v10a1 1 0 0 1-1 1h-11a1 1 0 0 1-1-1zM0 1h16v11.5a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 0 12.5zm3.75 4.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5M7 4.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m1.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5" fill="#666"/></svg>

After

Width:  |  Height:  |  Size: 385 B