|
7 | 7 | <style>
|
8 | 8 | section {
|
9 | 9 | display: inline-flex;
|
10 |
| - margin: 2% 25%; |
| 10 | + margin: 1% 25%; |
11 | 11 | text-align: center;
|
12 | 12 | }
|
13 | 13 |
|
|
16 | 16 | color: #6b4d41;
|
17 | 17 | text-transform: uppercase;
|
18 | 18 | }
|
| 19 | + .aviso { |
| 20 | + background:#fff6e5; |
| 21 | + padding:10px; |
| 22 | + margin: auto 1%; |
| 23 | + border-radius: 5px; |
| 24 | + transition: ease 2s; |
| 25 | + color: #5E3F34; |
| 26 | + font: bold 10pt Comic Sans MS; |
| 27 | + } |
19 | 28 |
|
20 | 29 | .container_pesq {
|
21 | 30 | padding: 5%;
|
|
43 | 52 | border-radius: 5px;
|
44 | 53 | background-color: #b09081;
|
45 | 54 | transition: 0.5s;
|
| 55 | + } |
| 56 | + .btn_limpar { |
| 57 | + font: normal 12pt Comic Sans MS, "sans-serif"; |
| 58 | + color: #fff; |
| 59 | + border: none; |
| 60 | + padding: 5px; |
| 61 | + border-radius: 5px; |
| 62 | + background-color: #33cef7; |
| 63 | + transition: 0.5s; |
46 | 64 | }
|
47 | 65 | .btn_busca:hover {
|
48 | 66 | background: #6b4d41;
|
|
96 | 114 | {
|
97 | 115 | <h2>Buscar Cliente</h2>
|
98 | 116 | <div class="container_pesq">
|
| 117 | + <span class="aviso">@ViewBag.Msgaviso <i class="fa fa-arrow-right"></i></span> |
99 | 118 | <input type="search" class="busca_cli" name="txtRG" id="txtRG" placeholder="Informe o RG do Cliente" value="@ViewBag.rg_usu">
|
100 | 119 | <input type="submit" value="Buscar" name="btn" id="btn" class="btn_busca">
|
| 120 | + <input type="submit" value="Limpar" name="btn" id="btn" class="btn_limpar"> |
101 | 121 | </div>
|
102 | 122 | <div class="container_resul">
|
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/> |
| 123 | + <input type="text" name="txtNome" id="txtNome" value="@ViewBag.id_usu" placeholder="ID" disabled /> |
| 124 | + <input type="text" name="txtNome" id="txtNome" value="@ViewBag.user_login" placeholder="NOME DE USUÁRIO" disabled /> |
| 125 | + <input type="text" name="txtNome" id="txtNome" value="@ViewBag.rg_usu" placeholder="RG" disabled /> |
| 126 | + <input type="text" name="txtNome" id="txtNome" value="@ViewBag.senha_login" placeholder="SENHA" disabled /> |
107 | 127 | </div>
|
108 | 128 | <div class="footer">
|
109 |
| - @Html.ActionLink("VER CLIENTES", "ClientesCadastrados", "Funcionario", new { @class="btnVerCli"}) |
| 129 | + @Html.ActionLink("VER CLIENTES", "ClientesCadastrados", "Funcionario", new { @class = "btnVerCli" }) |
110 | 130 | </div>
|
111 | 131 | }
|
112 | 132 | </section>
|
|
0 commit comments