Skip to content

Commit 467ed1b

Browse files
committed
FINISH STYLE PAGE BUSCACLIENTE
1 parent 211626c commit 467ed1b

File tree

3 files changed

+93
-12
lines changed

3 files changed

+93
-12
lines changed

.vs/CoffeeForCode/v16/.suo

0 Bytes
Binary file not shown.

CoffeeForCode/Views/Funcionario/BuscaCliente.cshtml

Lines changed: 93 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,111 @@
55
}
66

77
<style>
8-
section{
8+
section {
99
display: inline-flex;
10-
background: red;
11-
margin-left: 15%;
10+
margin: 2% 25%;
11+
text-align: center;
1212
}
13+
14+
section h2 {
15+
font: bold 20pt Comic Sans MS, "sans-serif";
16+
color: #6b4d41;
17+
text-transform: uppercase;
18+
}
19+
20+
.container_pesq {
21+
padding: 5%;
22+
}
23+
24+
.busca_cli {
25+
font: normal 16pt Comic Sans MS, "sans-serif";
26+
border: none;
27+
border-bottom: solid 3px #9f4845;
28+
background: none;
29+
width: 50%;
30+
}
31+
32+
.busca_cli::placeholder {
33+
font: bold 16pt Comic Sans MS, "sans-serif";
34+
color: #707070;
35+
opacity: 50%;
36+
}
37+
38+
.btn_busca {
39+
font: normal 12pt Comic Sans MS, "sans-serif";
40+
color: #fff;
41+
border: none;
42+
padding: 5px;
43+
border-radius: 5px;
44+
background-color: #b09081;
45+
transition: 0.5s;
46+
}
47+
.btn_busca:hover {
48+
background: #6b4d41;
49+
}
50+
.container_resul {
51+
background-color: none;
52+
}
53+
54+
.container_resul > input {
55+
font: bold 15pt Candara;
56+
padding: 8px;
57+
width: 25vw;
58+
border-radius: 5px;
59+
border: solid 4px #FFD500;
60+
outline: none;
61+
margin: 2rem 5em;
62+
}
63+
.container_resul > input::placeholder{
64+
font: bold 16pt Comic Sans MS, "sans-serif";
65+
opacity: 60%;
66+
}
67+
.footer{
68+
justify-content: center;
69+
display:flex;
70+
padding:2%;
71+
}
72+
.footer > .btnVerCli {
73+
cursor: pointer;
74+
width: 16vw;
75+
display: flex;
76+
padding: 15px;
77+
justify-content: center;
78+
text-align: center;
79+
text-decoration: none;
80+
border-radius: 25px;
81+
border: none;
82+
color: #fff;
83+
font: bold 14pt Candara;
84+
text-transform: uppercase;
85+
background-color: #b78278;
86+
color: #fff;
87+
transition: 0.5s;
88+
}
89+
.footer > .btnVerCli:hover {
90+
background: #6b4d41;
91+
}
1392
</style>
1493
<body>
1594
<section>
1695
@using (Html.BeginForm("BuscaCliente", "Funcionario", FormMethod.Post, new { enctype = "multipart/form-data" }))
1796
{
1897
<h2>Buscar Cliente</h2>
1998
<div class="container_pesq">
20-
<input type="search" class="busca_cli" name="txtRG" id="txtRG" placeholder="Buscar Cliente" value="@ViewBag.rg_usu">
21-
<input type="submit" value="Buscar" name="btn" id="btn">
99+
<input type="search" class="busca_cli" name="txtRG" id="txtRG" placeholder="Informe o RG do Cliente" value="@ViewBag.rg_usu">
100+
<input type="submit" value="Buscar" name="btn" id="btn" class="btn_busca">
22101
</div>
23102
<div class="container_resul">
24-
<input type="text" name="txtNome" id="txtNome" value="@ViewBag.id_usu" />
25-
<input type="text" name="txtNome" id="txtNome" value="@ViewBag.user_login" />
26-
<input type="text" name="txtNome" id="txtNome" value="@ViewBag.rg_usu" />
27-
<input type="text" name="txtNome" id="txtNome" value="@ViewBag.senha_login" />
103+
<input type="text" name="txtNome" id="txtNome" value="@ViewBag.id_usu" placeholder="ID" disabled/>
104+
<input type="text" name="txtNome" id="txtNome" value="@ViewBag.user_login" placeholder="NOME DE USUÁRIO" disabled/>
105+
<input type="text" name="txtNome" id="txtNome" value="@ViewBag.rg_usu" placeholder="RG" disabled/>
106+
<input type="text" name="txtNome" id="txtNome" value="@ViewBag.senha_login" placeholder="SENHA" disabled/>
28107
</div>
29-
<div>
30-
@Html.ActionLink("VER CLIENTES", "ClientesCadastrados")
108+
<div class="footer">
109+
@Html.ActionLink("VER CLIENTES", "ClientesCadastrados", "Funcionario", new { @class="btnVerCli"})
31110
</div>
32111
}
33112
</section>
34-
</body>
113+
</body>
114+
115+
Binary file not shown.

0 commit comments

Comments
 (0)