233 lines
8.3 KiB
PHP
233 lines
8.3 KiB
PHP
<link rel="stylesheet" href="{{ asset('css/styleProgressBar.css') }}">
|
|
|
|
{{-- <link rel="stylesheet" href="{{ asset('css/bootstrap.min.css') }}"> --}}
|
|
|
|
{{-- Scrpit nao funciona --}}
|
|
{{-- <script src="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-beta1/js/bootstrap.bundle.min.js"></script> --}}
|
|
|
|
|
|
{{-- Se sobrepoe ao nosso templete principal --}}
|
|
{{-- <link rel="stylesheet" href="{{ asset('css/profileStyle.css') }}"> --}}
|
|
|
|
<!-- Google Font: Source Sans Pro -->
|
|
{{--
|
|
<link rel="stylesheet"
|
|
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback">
|
|
|
|
<!-- Font Awesome -->
|
|
<link rel="stylesheet" href="{{ asset('plugins/fontawesome-free/css/all.min.css') }}">
|
|
<!-- Font Awesome 6.1.1 -->
|
|
<link rel="stylesheet" href="{{ asset('plugins/fontawesome-611/css/all.min.css') }}">
|
|
|
|
<!-- Ionicons -->
|
|
<link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
|
|
<!-- Tempusdominus Bootstrap 4 -->
|
|
<link rel="stylesheet"
|
|
href="{{ asset('plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.min.css') }}">
|
|
<!-- iCheck -->
|
|
<link rel="stylesheet" href="{{ asset('plugins/icheck-bootstrap/icheck-bootstrap.min.css') }}">
|
|
<!-- JQVMap -->
|
|
<link rel="stylesheet" href="{{ asset('plugins/jqvmap/jqvmap.min.css') }}"> --}}
|
|
<!-- Theme style -->
|
|
|
|
<!-- overlayScrollbars -->
|
|
{{-- <link rel="stylesheet" href="{{ asset('plugins/overlayScrollbars/css/OverlayScrollbars.min.css') }}">
|
|
<!-- Daterange picker -->
|
|
<link rel="stylesheet" href="{{ asset('plugins/daterangepicker/daterangepicker.css') }}">
|
|
<!-- summernote -->
|
|
<link rel="stylesheet" href="{{ asset('plugins/summernote/summernote-bs4.min.css') }}">
|
|
<!-- jQuery UI -->
|
|
<link rel="stylesheet" href="{{ asset('plugins/jquery-ui/jquery-ui.css') }}">
|
|
|
|
<!-- daterange picker -->
|
|
<link rel="stylesheet" href="{{ asset('plugins/daterangepicker/daterangepicker.css') }}">
|
|
|
|
<!-- DataTables -->
|
|
<link rel="stylesheet" href="{{ asset('plugins/datatables-bs4/css/dataTables.bootstrap4.min.css') }}">
|
|
|
|
<link rel="stylesheet" href="{{ asset('plugins/datatables-responsive/css/responsive.bootstrap4.min.css') }}">
|
|
|
|
<link rel="stylesheet" href="{{ asset('plugins/datatables-buttons/css/buttons.bootstrap4.min.css') }}"> --}}
|
|
|
|
{{-- <!-- jQuery -->
|
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
|
<!-- DataTables CSS -->
|
|
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.11.3/css/dataTables.bootstrap4.min.css">
|
|
<!-- DataTables JavaScript -->
|
|
<script src="https://cdn.datatables.net/1.11.3/js/jquery.dataTables.min.js"></script>
|
|
<!-- DataTables Bootstrap 4 JavaScript -->
|
|
<script src="https://cdn.datatables.net/1.11.3/js/dataTables.bootstrap4.min.js"></script>
|
|
<!-- DataTables Buttons JavaScript -->
|
|
<script src="https://cdn.datatables.net/buttons/1.7.1/js/dataTables.buttons.min.js"></script> --}}
|
|
|
|
|
|
<style>
|
|
.spin {
|
|
animation: spin 1s infinite linear;
|
|
}
|
|
|
|
@keyframes spin {
|
|
from {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
/* ***************************** */
|
|
.accordion {
|
|
overflow-anchor: none;
|
|
}
|
|
|
|
.accordion>.card {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.accordion>.card:not(:last-of-type) {
|
|
border-bottom: 0;
|
|
border-bottom-right-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
|
|
.accordion>.card:not(:first-of-type) {
|
|
border-top-left-radius: 0;
|
|
border-top-right-radius: 0;
|
|
}
|
|
|
|
.accordion>.card>.card-header {
|
|
border-radius: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/* Nome de baixo do circulo */
|
|
.steps {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 2rem;
|
|
position: relative;
|
|
|
|
}
|
|
|
|
/* Nome dentro do circulo de ainda não de chegar o progress bar */
|
|
.step-button {
|
|
width: 50px;
|
|
height: 50px;
|
|
border-radius: 50%;
|
|
border: none;
|
|
background-color: var(--prm-gray);
|
|
transition: .4s;
|
|
display: flex;
|
|
align-items: center;
|
|
text-align: center;
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
.step-button[aria-expanded="true"] {
|
|
width: 60px;
|
|
height: 60px;
|
|
background-color: var(--prm-color);
|
|
color: #fff;
|
|
}
|
|
|
|
.done {
|
|
background-color: var(--prm-color);
|
|
color: #fff;
|
|
|
|
|
|
}
|
|
|
|
|
|
.step-item {
|
|
z-index: 10;
|
|
text-align: center;
|
|
}
|
|
|
|
#progress {
|
|
-webkit-appearance: none;
|
|
position: absolute;
|
|
width: 95%;
|
|
z-index: 5;
|
|
height: 10px;
|
|
margin-left: 18px;
|
|
margin-bottom: 18px;
|
|
}
|
|
|
|
/* to customize progress bar */
|
|
#progress::-webkit-progress-value {
|
|
background-color: var(--prm-color);
|
|
transition: .5s ease;
|
|
}
|
|
|
|
#progress::-webkit-progress-bar {
|
|
background-color: var(--prm-gray);
|
|
|
|
}
|
|
</style>
|
|
|
|
|
|
|
|
|
|
{{-- Scripts TEmplate Principal --}}
|
|
|
|
{{-- Scripts-Plugins --}}
|
|
|
|
<script src="{{ asset('assets/dist/js/bootstrap.bundle.min.js') }}"></script>
|
|
|
|
|
|
<script src="{{ asset('plugins/jquery/jquery.min.js') }}"></script>
|
|
<!-- jQuery UI 1.11.4 -->
|
|
<script src="{{ asset('plugins/jquery-ui/jquery-ui.min.js') }}"></script>
|
|
<!-- Resolve conflict in jQuery UI tooltip with Bootstrap tooltip -->
|
|
<script>
|
|
$.widget.bridge('uibutton', $.ui.button)
|
|
</script>
|
|
<!-- Bootstrap 4 -->
|
|
<script src="{{ asset('plugins/bootstrap/js/bootstrap.bundle.min.js') }}"></script>
|
|
<script src="{{ asset('plugins/bootstrap/js/bootstrap.bundle.min.js') }}"></script>
|
|
|
|
|
|
<!-- ChartJS -->
|
|
<script src="{{ asset('plugins/chart.js/Chart.min.js') }}"></script>
|
|
<!-- Sparkline -->
|
|
<script src="{{ asset('plugins/sparklines/sparkline.js') }}"></script>
|
|
<!-- JQVMap -->
|
|
<script src="{{ asset('plugins/jqvmap/jquery.vmap.min.js') }}"></script>
|
|
<script src="{{ asset('plugins/jqvmap/maps/jquery.vmap.usa.js') }}"></script>
|
|
<!-- jQuery Knob Chart -->
|
|
<script src="{{ asset('plugins/jquery-knob/jquery.knob.min.js') }}"></script>
|
|
<!-- daterangepicker -->
|
|
<script src="{{ asset('plugins/moment/moment.min.js') }}"></script>
|
|
<script src="{{ asset('plugins/daterangepicker/daterangepicker.js') }}"></script>
|
|
<!-- Tempusdominus Bootstrap 4 -->
|
|
<script src="{{ asset('plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.min.js') }}"></script>
|
|
<!-- Summernote -->
|
|
<script src="{{ asset('plugins/summernote/summernote-bs4.min.js') }}"></script>
|
|
<!-- overlayScrollbars -->
|
|
<script src="{{ asset('plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js') }}"></script>
|
|
<!-- AdminLTE App -->
|
|
<script src="{{ asset('js/adminlte.js') }}"></script>
|
|
<!-- AdminLTE for demo purposes -->
|
|
{{-- <script src="{{ asset('js/demo.js') }}"></script>
|
|
<!-- AdminLTE dashboard demo (This is only for demo purposes) -->
|
|
<script src="{{ asset('js/pages/dashboard.js') }}"></script> --}}
|
|
<!-- jQuery Script fadeIn fadeOut for the dropdown -->
|
|
<script src="{{ asset('plugins/datatables/jquery.dataTables.min.js') }}"></script>
|
|
|
|
<script src="{{ asset('plugins/datatables-bs4/js/dataTables.bootstrap4.min.js') }}"></script>
|
|
<script src="{{ asset('plugins/datatables-responsive/js/dataTables.responsive.min.js') }}"></script>
|
|
<script src="{{ asset('plugins/datatables-responsive/js/responsive.bootstrap4.min.js') }}"></script>
|
|
|
|
<script src="{{ asset('plugins/datatables-buttons/js/dataTables.buttons.min.js') }}"></script>
|
|
<script src="{{ asset('plugins/datatables-buttons/js/buttons.bootstrap4.min.js') }}"></script>
|
|
<script src="{{ asset('plugins/jszip/jszip.min.js') }}"></script>
|
|
<script src="{{ asset('plugins/pdfmake/pdfmake.min.js') }}"></script>
|
|
<script src="{{ asset('plugins/pdfmake/vfs_fonts.js') }}"></script>
|
|
|
|
|
|
<script src="{{ asset('plugins/datatables-buttons/js/buttons.html5.min.js') }}"></script>
|
|
<script src="{{ asset('plugins/datatables-buttons/js/buttons.print.min.js') }}"></script>
|
|
<script src="{{ asset('plugins/datatables-buttons/js/buttons.colVis.min.js') }}"></script> |