Correção css html - Login e cadastro

parent d8fd845b
...@@ -741,8 +741,9 @@ pre code { ...@@ -741,8 +741,9 @@ pre code {
position: relative; position: relative;
width: 100%; width: 100%;
min-height: 1px; min-height: 1px;
padding-right: 15px; padding-right: 2px;
padding-left: 15px padding-left: 0px;
/* O Padding R L estava em 15px */
} }
.col { .col {
...@@ -1292,6 +1293,7 @@ pre code { ...@@ -1292,6 +1293,7 @@ pre code {
flex: 0 0 66.66666667%; flex: 0 0 66.66666667%;
max-width: 66.66666667%; */ max-width: 66.66666667%; */
text-align: center; text-align: center;
/* width: 60%; */
} }
.col-md-9 { .col-md-9 {
-webkit-box-flex: 0; -webkit-box-flex: 0;
...@@ -2135,6 +2137,23 @@ pre code { ...@@ -2135,6 +2137,23 @@ pre code {
transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out
} }
.form-control-C {
display: block;
width: 100%;
padding: .375rem .75rem;
font-size: .9rem;
line-height: 1.6;
color: #495057;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #ced4da;
border-radius: .25rem;
-webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out
}
@media screen and (prefers-reduced-motion:reduce) { @media screen and (prefers-reduced-motion:reduce) {
.form-control { .form-control {
-webkit-transition: none; -webkit-transition: none;
...@@ -2318,7 +2337,8 @@ select.form-control-lg:not([size]):not([multiple]) { ...@@ -2318,7 +2337,8 @@ select.form-control-lg:not([size]):not([multiple]) {
.form-check { .form-check {
position: relative; position: relative;
display: block; display: block;
padding-left: 1.25rem padding-left: 1.25rem;
margin-left: 1.7em;
} }
.form-check-input { .form-check-input {
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<div class="row"> <div class="row">
<div class="form-group col-6"> <div class="form-group col-6">
<!-- <label for="nome">{{ __('agendamento.name') }}</label> --> <!-- <label for="nome">{{ __('agendamento.name') }}</label> -->
<input type="text" class="form-control{{ $errors->has('nome') ? ' is-invalid' : '' }}" name="nome" placeholder="{{ __('agendamento.name') }}" value="{{ old('nome') ?? ($register->nome ?? '')}}"> <input type="text" class="form-control-C{{ $errors->has('nome') ? ' is-invalid' : '' }}" name="nome" placeholder="{{ __('agendamento.name') }}" value="{{ old('nome') ?? ($register->nome ?? '')}}">
@if ($errors->has('nome')) @if ($errors->has('nome'))
<span class="invalid-feedback" role="alert"> <span class="invalid-feedback" role="alert">
<strong>{{ $errors->first('nome') }}</strong> <strong>{{ $errors->first('nome') }}</strong>
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</div> </div>
<div class="form-group col-6"> <div class="form-group col-6">
<!-- <label for="sobrenome">{{ __('agendamento.sobrenome') }}</label> --> <!-- <label for="sobrenome">{{ __('agendamento.sobrenome') }}</label> -->
<input type="text" class="form-control{{ $errors->has('sobrenome') ? ' is-invalid' : '' }}" name="sobrenome" placeholder="{{ __('agendamento.sobrenome') }}" value="{{ old('sobrenome') ?? ($register->sobrenome ?? '')}}"> <input type="text" class="form-control-C{{ $errors->has('sobrenome') ? ' is-invalid' : '' }}" name="sobrenome" placeholder="{{ __('agendamento.sobrenome') }}" value="{{ old('sobrenome') ?? ($register->sobrenome ?? '')}}">
@if ($errors->has('sobrenome')) @if ($errors->has('sobrenome'))
<span class="invalid-feedback" role="alert"> <span class="invalid-feedback" role="alert">
<strong>{{ $errors->first('sobrenome') }}</strong> <strong>{{ $errors->first('sobrenome') }}</strong>
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
</div> </div>
<div class="form-group col-6"> <div class="form-group col-6">
<!-- <label for="email">{{ __('agendamento.email') }}</label> --> <!-- <label for="email">{{ __('agendamento.email') }}</label> -->
<input type="email" class="form-control{{ $errors->has('email') ? ' is-invalid' : '' }}" name="email" placeholder="{{ __('agendamento.email') }}" value="{{ old('email') ?? ($register->email ?? '')}}"> <input type="email" class="form-control-C{{ $errors->has('email') ? ' is-invalid' : '' }}" name="email" placeholder="{{ __('agendamento.email') }}" value="{{ old('email') ?? ($register->email ?? '')}}">
@if ($errors->has('email')) @if ($errors->has('email'))
<span class="invalid-feedback" role="alert"> <span class="invalid-feedback" role="alert">
<strong>{{ $errors->first('email') }}</strong> <strong>{{ $errors->first('email') }}</strong>
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
</div> </div>
<div class="form-group col-6"> <div class="form-group col-6">
<!-- <label for="cpf">{{ __('agendamento.cpf') }}</label> --> <!-- <label for="cpf">{{ __('agendamento.cpf') }}</label> -->
<input type="text" class="form-control{{ $errors->has('cpf') ? ' is-invalid' : '' }}" name="cpf" placeholder="{{ __('agendamento.cpf') }}" value="{{ old('cpf') ?? ($register->cpf ?? '')}}"> <input type="text" class="form-control-C{{ $errors->has('cpf') ? ' is-invalid' : '' }}" name="cpf" placeholder="{{ __('agendamento.cpf') }}" value="{{ old('cpf') ?? ($register->cpf ?? '')}}">
@if ($errors->has('cpf')) @if ($errors->has('cpf'))
<span class="invalid-feedback" role="alert"> <span class="invalid-feedback" role="alert">
<strong>{{ $errors->first('cpf') }}</strong> <strong>{{ $errors->first('cpf') }}</strong>
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
<div class="form-group col-6"> <div class="form-group col-6">
<!-- <label for="telefone">{{ __('agendamento.telefone') }}</label> --> <!-- <label for="telefone">{{ __('agendamento.telefone') }}</label> -->
<input type="text" class="form-control{{ $errors->has('telefone') ? ' is-invalid' : '' }}" name="telefone" placeholder="{{ __('agendamento.telefone') }}" value="{{ old('telefone') ?? ($register->telefone ?? '')}}"> <input type="text" class="form-control-C{{ $errors->has('telefone') ? ' is-invalid' : '' }}" name="telefone" placeholder="{{ __('agendamento.telefone') }}" value="{{ old('telefone') ?? ($register->telefone ?? '')}}">
@if ($errors->has('telefone')) @if ($errors->has('telefone'))
<span class="invalid-feedback" role="alert"> <span class="invalid-feedback" role="alert">
<strong>{{ $errors->first('telefone') }}</strong> <strong>{{ $errors->first('telefone') }}</strong>
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
</div> </div>
<div class="form-group col-6"> <div class="form-group col-6">
<!-- <label for="data_nascimento">{{ __('agendamento.data_nascimento') }}</label> --> <!-- <label for="data_nascimento">{{ __('agendamento.data_nascimento') }}</label> -->
<input type="text" class="form-control{{ $errors->has('data_nascimento') ? ' is-invalid' : '' }}" name="data_nascimento" placeholder="{{ __('agendamento.data_nascimento') }}" value="{{ old('data_nascimento') ?? ($register->data_nascimento ?? '')}}"> <input type="text" class="form-control-C{{ $errors->has('data_nascimento') ? ' is-invalid' : '' }}" name="data_nascimento" placeholder="{{ __('agendamento.data_nascimento') }}" value="{{ old('data_nascimento') ?? ($register->data_nascimento ?? '')}}">
@if ($errors->has('data_nascimento')) @if ($errors->has('data_nascimento'))
<span class="invalid-feedback" role="alert"> <span class="invalid-feedback" role="alert">
<strong>{{ $errors->first('data_nascimento') }}</strong> <strong>{{ $errors->first('data_nascimento') }}</strong>
...@@ -60,7 +60,7 @@ ...@@ -60,7 +60,7 @@
</div> </div>
<div class="form-group col-6"> <div class="form-group col-6">
<!-- <label for="password">{{ __('agendamento.password') }}</label> --> <!-- <label for="password">{{ __('agendamento.password') }}</label> -->
<input type="password" class="form-control{{ $errors->has('password') ? ' is-invalid' : '' }}" name="password" placeholder="{{ __('agendamento.password') }}" value=""> <input type="password" class="form-control-C{{ $errors->has('password') ? ' is-invalid' : '' }}" name="password" placeholder="{{ __('agendamento.password') }}" value="">
@if ($errors->has('password')) @if ($errors->has('password'))
<span class="invalid-feedback" role="alert"> <span class="invalid-feedback" role="alert">
<strong>{{ $errors->first('password') }}</strong> <strong>{{ $errors->first('password') }}</strong>
...@@ -69,6 +69,6 @@ ...@@ -69,6 +69,6 @@
</div> </div>
<div class="form-group col-6"> <div class="form-group col-6">
<!-- <label for="password_confirmation">{{ __('agendamento.confirm_password') }}</label> --> <!-- <label for="password_confirmation">{{ __('agendamento.confirm_password') }}</label> -->
<input type="password" class="form-control" name="password_confirmation" placeholder="{{ __('agendamento.confirm_password') }}" value=""> <input type="password" class="form-control-C" name="password_confirmation" placeholder="{{ __('agendamento.confirm_password') }}" value="">
</div> </div>
</div> </div>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment