Skip to content

Commit

Permalink
rework-tela-de-inicio
Browse files Browse the repository at this point in the history
  • Loading branch information
Fernandaellen002 committed Feb 27, 2025
1 parent bfa111c commit 729a9f5
Show file tree
Hide file tree
Showing 19 changed files with 206 additions and 3,765 deletions.
4 changes: 2 additions & 2 deletions cadastro.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ body {
}

.wrapper {
background: rgba(255, 255, 255, 0.123);
background: rgba(0, 0, 0, 0.397);
padding: 40px;
border-radius: 12px;
text-align: center;
color: rgb(255, 255, 255);
width: 400px;
backdrop-filter: blur(3px);
backdrop-filter: blur(4px);
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

Expand Down
Binary file added images/Bem-vindo ao iMenu - cliente.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/Bem-vindo ao iMenu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/card-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/card.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/config-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/config.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/editor .png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/editor-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/home-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/home.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/local-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/local.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/perfil-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/perfil.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
340 changes: 54 additions & 286 deletions index.html

Large diffs are not rendered by default.

3,482 changes: 6 additions & 3,476 deletions js/script.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion js/server_script.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
const webservice = "https://imenu-backend-qfa2.onrender.com" //"http://localhost:3006"
const webservice = "https://imenu-backend-qfa2.onrender.com" //"http://localhost:3006"

async function criaruser() {

var nome = document.getElementById("nome").value;
Expand Down
142 changes: 142 additions & 0 deletions teste.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,142 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
height: 100vh;
}


.container {
display: flex;
width: 100%;
}

.sidebar {
width: 250px;
background: #3b1d0f;
padding: 20px;
box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.logo {
font-size: 24px;
color: #ffffff;
font-weight: bold;
}

.nav-button {
width: 100%;
padding: 10px;
margin: 5px 0;
border: none;
text-align: left;
background: none;
cursor: pointer;
font-size: 16px;
display: flex;
align-items: center;
gap: 10px;
color: white;
}

.nav-button img {
width: 40px;
height: 40px;
}

.nav-button.active, .nav-button:hover {
background: #664637;
border-radius: 5px;
}

.content {
flex: 1;
padding: 20px;
background: #cfc9c7
}

.topbar {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}

.search-box {
position: relative;
}

.search-box i {
position: absolute;
top: 10px;
left: 10px;
color: gray;
}

.search-box input {
padding: 8px 8px 8px 30px;
border-radius: 5px;
border: 1px solid #ddd;
}

.promo-banner {
width: 95%;
margin-bottom: 20px;
align-items: center;
}

.promo-banner img {
width: 100%;
max-height: 200px;
object-fit: cover;
border-radius: 10px;
}

.auth-buttons {
display: flex;
gap: 10px;
}

.register-button {
background: #3b1d0f;
color: white;
border: none;
padding: 10px 15px;
border-radius: 5px;
cursor: pointer;
}

.login-button {
background: none;
color: #3b1d0f;
border: 2px solid #3b1d0f;
padding: 8px 15px;
border-radius: 5px;
cursor: pointer;
}

.cards {
display: flex;
gap: 10px;
}

.card {
background: white;
padding: 20px;
flex: 1;
text-align: center;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
#perfil{
width: 50px;
height: 50px;
}

#conta{
text-decoration: none;
color: black;

display: flex;
}

0 comments on commit 729a9f5

Please sign in to comment.