Files
front_directorio/src/App.css
T

237 lines
3.7 KiB
CSS
Raw Normal View History

2024-06-21 16:23:14 -06:00
*{
margin: 0;
padding: 0;
}
2024-07-14 02:14:21 -06:00
p{
text-align: center;
}
2024-06-13 20:10:44 -06:00
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
2024-06-25 15:25:37 -06:00
background-color: #faefef7a;
2024-06-11 19:56:54 -06:00
}
2024-06-13 20:10:44 -06:00
.App {
2024-06-11 19:56:54 -06:00
display: flex;
flex-direction: column;
2024-06-13 20:10:44 -06:00
min-height: 100vh;
2024-06-11 19:56:54 -06:00
}
2024-06-13 20:10:44 -06:00
.main-content {
flex: 1;
display: flex;
2024-06-19 16:20:37 -06:00
flex-direction: column;
justify-content: center;
align-items: center;
2024-07-08 15:35:29 -06:00
padding: 0px !important;
2024-06-11 19:56:54 -06:00
}
2024-06-12 18:44:57 -06:00
2024-06-17 01:00:55 -06:00
form.login-form {
2024-06-19 16:20:37 -06:00
max-width: 300px;
2024-06-17 01:00:55 -06:00
width: 100%;
2024-06-12 18:44:57 -06:00
margin: auto;
2024-06-19 16:20:37 -06:00
padding: 1.5em;
2024-06-13 20:10:44 -06:00
background: white;
2024-06-17 01:00:55 -06:00
box-shadow: 0 4px 8px 2px rgba(0, 0, 0, 0.1);
}
h2.text-warning {
2024-06-20 17:40:28 -06:00
color: #002B7A;
2024-06-19 16:20:37 -06:00
font-size: 1.5em;
margin-bottom: 20px;
text-align: center;
2024-06-12 18:44:57 -06:00
}
2024-06-17 01:00:55 -06:00
.input-group {
2024-06-19 16:20:37 -06:00
margin-bottom: 0.75em;
2024-06-12 18:44:57 -06:00
}
label {
2024-06-17 01:00:55 -06:00
margin-bottom: 0.5em;
2024-06-12 18:44:57 -06:00
color: #333333;
display: block;
2024-06-19 16:20:37 -06:00
font-size: 0.9em;
2024-06-12 18:44:57 -06:00
}
input[type="text"],
input[type="password"] {
border: 1px solid #CCCCCC;
2024-06-19 16:20:37 -06:00
padding: 0.4em;
font-size: 0.9em;
2024-06-12 18:44:57 -06:00
width: 100%;
box-sizing: border-box;
2024-06-20 17:40:28 -06:00
border-radius: 5px !important;
2024-06-17 01:00:55 -06:00
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 2px 4px 1px rgba(0, 0, 0, 0.1);
transition: box-shadow 0.3s ease;
2024-06-13 20:10:44 -06:00
}
input[type="text"]:focus,
input[type="password"]:focus {
2024-06-17 01:00:55 -06:00
box-shadow: 0 0 8px 2px rgba(0, 123, 255, 0.5);
outline: none;
2024-06-12 18:44:57 -06:00
}
button {
2024-06-19 16:20:37 -06:00
padding: 0.6em;
font-size: 0.9em;
2024-06-12 18:44:57 -06:00
color: #fff;
2024-06-20 17:40:28 -06:00
background-color:#002B7A;
2024-06-12 18:44:57 -06:00
border: none;
border-radius: 1em;
cursor: pointer;
2024-06-13 20:10:44 -06:00
width: 100%;
2024-06-17 01:00:55 -06:00
box-shadow: 0 4px 8px 2px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s ease, box-shadow 0.3s ease;
2024-06-12 18:44:57 -06:00
}
button:hover {
background-color: #0056b3;
2024-06-17 01:00:55 -06:00
box-shadow: 0 6px 12px 4px rgba(0, 0, 0, 0.2);
2024-06-12 18:44:57 -06:00
}
input[type="checkbox"] {
margin-right: 0.5em;
}
2024-06-13 20:10:44 -06:00
footer {
margin-top: auto;
}
2024-06-17 01:00:55 -06:00
.nav-link.bg-warning {
2024-06-20 17:40:28 -06:00
background-color: #002B7A !important;
2024-06-19 16:20:37 -06:00
color: #212529 !important;
2024-06-17 01:00:55 -06:00
}
p.text-center.mt-3 {
margin-top: 1rem;
text-align: center;
2024-06-19 16:20:37 -06:00
font-size: 1em;
2024-06-17 01:00:55 -06:00
}
2024-06-20 17:40:28 -06:00
.remember-me-group {
display: flex;
align-items: center;
}
.remember-me-label {
margin-right: 1em;
font-size: 0.9em;
}
.container-fluid {
display: flex;
justify-content: center;
align-items: center;
}
.form-control {
width: 300px;
border-color: #002B7A!important ;
}
.btn-primary-subtle {
color: #ffffff!important;
background-color: #002B7A!important;
border-color: #002B7A!important ;
}
.btn-primary-subtle:hover {
background-color: #002B7A!important;
border-color: #ffffff!important;
}
2024-06-21 13:01:35 -06:00
2024-06-24 15:47:56 -06:00
.card-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.button-group {
display: flex;
gap: 10px;
justify-content: center;
margin-top: 10px;
}
.edit-button, .delete-button {
padding: 5px 10px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.edit-button {
background-color: green;
color: white;
}
.delete-button {
background-color: red;
color: white;
}
.dialog {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: white;
padding: 20px;
border: 1px solid black;
border-radius: 10px;
z-index: 1000;
}
2024-07-10 17:59:23 -06:00
.dialog p {
margin-bottom: 10px;
}
2024-06-24 15:47:56 -06:00
.dialog input {
2024-07-10 17:59:23 -06:00
padding: 8px;
2024-06-24 15:47:56 -06:00
margin-bottom: 10px;
2024-07-10 17:59:23 -06:00
width: 100%;
box-sizing: border-box;
2024-06-24 15:47:56 -06:00
}
2024-07-10 17:59:23 -06:00
.button-group button {
padding: 8px 20px;
margin: 0 5px;
2024-06-24 15:47:56 -06:00
border: none;
cursor: pointer;
2024-07-10 17:59:23 -06:00
border-radius: 4px;
font-weight: bold;
outline: none;
2024-06-24 15:47:56 -06:00
}
2024-07-10 17:59:23 -06:00
.button-group button:disabled {
background-color: grey !important;
2024-06-24 15:47:56 -06:00
cursor: not-allowed;
}
2024-07-10 17:59:23 -06:00
.dialog button:first-child {
padding: auto;
background-color: #007bff;
color: #fff;
}
.dialog button:last-child {
padding: auto;
background-color: #007bff;
color: #fff;
2024-07-14 13:01:56 -06:00
}
.blueButton{
background-color: #007bff ;
2024-07-15 00:57:58 -06:00
width: 180px;
2024-07-14 13:01:56 -06:00
}
.containerButton{
display: flex;
align-items: center;
2024-07-15 00:57:58 -06:00
justify-content: space-evenly;
width: 400px;
2024-07-14 13:01:56 -06:00
margin: 10px;
2024-07-10 17:59:23 -06:00
}