Primer Commit
This commit is contained in:
139
assets/css/hmngypasarela.css
Normal file
139
assets/css/hmngypasarela.css
Normal file
@@ -0,0 +1,139 @@
|
||||
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
|
||||
.boton-modal {
|
||||
padding: 12px 24px;
|
||||
font-size: 16px;
|
||||
background-color: #28a745;
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 8px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.modal-personalizado {
|
||||
display: none;
|
||||
position: fixed;
|
||||
z-index: 1000;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
background-color: rgba(0, 0, 0, 0.6);
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 20px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.modal-contenido {
|
||||
background: white;
|
||||
width: 100%;
|
||||
max-width: 720px;
|
||||
border-radius: 12px;
|
||||
box-shadow: 0px 0px 36px 0px rgba(131, 28, 45, 0.952);
|
||||
transform: scale(0.7);
|
||||
opacity: 0;
|
||||
transition: all 0.3s ease;
|
||||
box-sizing: border-box;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.animar-entrada {
|
||||
transform: scale(1);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.animar-salida {
|
||||
transform: scale(0.7);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.modal-header-personalizada {
|
||||
background-image: url('https://pasarela.test/assets/images/header-modalpago.png');
|
||||
background-size: 100% !important;
|
||||
background-repeat: no-repeat !important;
|
||||
padding: 40px 20px 60px 20px;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.cerrar {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 15px;
|
||||
font-size: 24px;
|
||||
color: #fff;
|
||||
cursor: pointer;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.modal-body, .modal-footer {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.form-control, .form-select {
|
||||
width: 100%;
|
||||
padding: 10px;
|
||||
margin-top: 4px;
|
||||
border-radius: 6px;
|
||||
border: 1px solid #ccc;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.row {
|
||||
display: flex;
|
||||
gap: 15px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.col {
|
||||
flex: 1;
|
||||
min-width: 150px;
|
||||
}
|
||||
|
||||
.btn-success {
|
||||
padding: 10px 20px;
|
||||
background-color: #28a745;
|
||||
color: black;
|
||||
border: none;
|
||||
border-radius: 6px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.modal-contenido {
|
||||
max-width: 95%;
|
||||
}
|
||||
|
||||
.modal-header-personalizada img {
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.cerrar {
|
||||
font-size: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.spinner-border {
|
||||
display: inline-block;
|
||||
width: 2rem;
|
||||
height: 2rem;
|
||||
border: 0.25em solid rgba(0, 0, 0, 0.1);
|
||||
border-top-color: #007bff; /* Color azul típico */
|
||||
border-radius: 50%;
|
||||
animation: spin 0.75s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
to { transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
.visually-hidden {
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
padding: 0;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
clip: rect(0, 0, 0, 0);
|
||||
border: 0;
|
||||
}
|
||||
155
assets/css/style.css
Normal file
155
assets/css/style.css
Normal file
@@ -0,0 +1,155 @@
|
||||
/* Import Google Font - Poppins */
|
||||
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
|
||||
*{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
font-family: 'Poppins', sans-serif;
|
||||
}
|
||||
::selection{
|
||||
color: #fff;
|
||||
background: #4285f4;
|
||||
}
|
||||
.wrapper{
|
||||
width: 370px;
|
||||
margin: 85px auto 0;
|
||||
}
|
||||
.select-btn, li{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
.select-btn{
|
||||
height: 65px;
|
||||
padding: 0 20px;
|
||||
font-size: 22px;
|
||||
background: #fff;
|
||||
border-radius: 7px;
|
||||
justify-content: space-between;
|
||||
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
|
||||
}
|
||||
.select-btn i{
|
||||
font-size: 31px;
|
||||
transition: transform 0.3s linear;
|
||||
}
|
||||
.wrapper.active .select-btn i{
|
||||
transform: rotate(-180deg);
|
||||
}
|
||||
.content{
|
||||
display: none;
|
||||
padding: 20px;
|
||||
margin-top: 15px;
|
||||
background: #fff;
|
||||
border-radius: 7px;
|
||||
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
|
||||
}
|
||||
.wrapper.active .content{
|
||||
display: block;
|
||||
}
|
||||
.content .search{
|
||||
position: relative;
|
||||
}
|
||||
.search i{
|
||||
top: 50%;
|
||||
left: 15px;
|
||||
color: #999;
|
||||
font-size: 20px;
|
||||
pointer-events: none;
|
||||
transform: translateY(-50%);
|
||||
position: absolute;
|
||||
}
|
||||
.search input{
|
||||
height: 50px;
|
||||
width: 100%;
|
||||
outline: none;
|
||||
font-size: 17px;
|
||||
border-radius: 5px;
|
||||
padding: 0 20px 0 43px;
|
||||
border: 1px solid #B3B3B3;
|
||||
}
|
||||
.search input:focus{
|
||||
padding-left: 42px;
|
||||
border: 2px solid #4285f4;
|
||||
}
|
||||
.search input::placeholder{
|
||||
color: #bfbfbf;
|
||||
}
|
||||
.content .options{
|
||||
margin-top: 10px;
|
||||
max-height: 250px;
|
||||
overflow-y: auto;
|
||||
padding-right: 7px;
|
||||
}
|
||||
.options::-webkit-scrollbar{
|
||||
width: 7px;
|
||||
}
|
||||
.options::-webkit-scrollbar-track{
|
||||
background: #f1f1f1;
|
||||
border-radius: 25px;
|
||||
}
|
||||
.options::-webkit-scrollbar-thumb{
|
||||
background: #ccc;
|
||||
border-radius: 25px;
|
||||
}
|
||||
.options::-webkit-scrollbar-thumb:hover{
|
||||
background: #b3b3b3;
|
||||
}
|
||||
.options li{
|
||||
height: 50px;
|
||||
padding: 0 13px;
|
||||
font-size: 21px;
|
||||
}
|
||||
.options li:hover, li.selected{
|
||||
border-radius: 5px;
|
||||
background: #f2f2f2;
|
||||
}
|
||||
|
||||
.textonorm{
|
||||
color: rgb(24, 24, 24);
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.textomin{
|
||||
color: rgb(24, 24, 24);
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.textominex{
|
||||
color: rgb(24, 24, 24);
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.textonormbold{
|
||||
color: rgb(24, 24, 24);
|
||||
font-size: 1rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.titulo{
|
||||
color: rgb(24, 24, 24);
|
||||
font-size: 3rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.subtitulo{
|
||||
color: rgb(24, 24, 24);
|
||||
font-size: 1.5rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.subtitulo2{
|
||||
color: rgb(24, 24, 24);
|
||||
font-size: 1.2rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.barragris{
|
||||
background-color: rgb(224, 224, 224);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user