Mudaças no CSS e HTML do calendário.

parent 9d193ca2
...@@ -10320,41 +10320,45 @@ p .button_agendar { ...@@ -10320,41 +10320,45 @@ p .button_agendar {
/* ************* CALENDÁRIO AGENDAR ********** */ /* ************* CALENDÁRIO AGENDAR ********** */
.fieldAgendar {
width: 45rem;
height: 6rem;
margin: 40px auto 40px;
text-align: center;
}
.calendario {
text-align: center;
}
#agendar { #agendar {
width: 450px; width: 45rem;
height: 20px; height: 2rem;
font-size: 5em; font-size: 3rem;
color: #fd9727; color: #fd9727;
font-weight: 600; font-weight: 600;
margin: 4px auto 0; margin: 4px auto 0;
} }
.fieldAgendar {
width: 450px;
height: 60px;
margin: 40px auto 40px;
border-radius: 10px;
background-color: white;
}
#data, #data,
#hora { #hora {
width: 450px; width: 13rem;
height: 20px; height: 3rem;
border-radius: 5px; border-radius: 5px;
} }
#enviarButton { .enviarbtn {
width: 100px; width: 13rem;
height: 50px; height: 3rem;
font-size: 2em; font-size: 1.5rem;
font-weight: 400; font-weight: 400;
text-align: center;
margin: 40px auto 0; margin: 40px auto 0;
border-radius: 5px; border-radius: 5px;
background: linear-gradient(174deg, rgb(206, 128, 93) 0%, rgb(165, 78, 7) 71%); background: linear-gradient(174deg, rgb(206, 128, 93) 0%, rgb(165, 78, 7) 71%);
color: white; color: white;
} }
#enviarButton:hover { .enviarbtn:hover {
background: linear-gradient(174deg, rgb(138, 158, 139) 4%, rgb(16, 157, 23) 10%, rgb(4, 36, 7) 100%); background: linear-gradient(174deg, rgb(138, 158, 139) 4%, rgb(16, 157, 23) 10%, rgb(4, 36, 7) 100%);
} }
\ No newline at end of file
...@@ -12,25 +12,16 @@ ...@@ -12,25 +12,16 @@
@form(['action'=>route('agendamentoTituloSede'), 'method'=>'POST']) @form(['action'=>route('agendamentoTituloSede'), 'method'=>'POST'])
<fieldset class="fieldAgendar"> <fieldset class="fieldAgendar">
<p id="agendar">Agendar</p> <p id="agendar">Agendar</p>
</fieldset> </fieldset>
<fieldset class="calendario"> <fieldset class="calendario">
<label for="data">Data Agendamento</label>
<br>
<input type="date" id="data" name="dataAgendamento"> <input type="date" id="data" name="dataAgendamento">
<br> <br>
<!-- <label for="hora">Hora agendamento</label> <button class="enviarbtn" onclick="window.location = '{{route('agendamentoTituloSede')}}'">@lang('Próximo')</button>
<br>
<input type="time" id="hora" name="horaAgendamento"> -->
</fieldset> </fieldset>
@endform @endform
@endpage @endpage
@endsection @endsection
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