72 lines
1.2 KiB
CSS
72 lines
1.2 KiB
CSS
/* Toaster */
|
|
.toaster {
|
|
position: fixed;
|
|
bottom: 20px;
|
|
right: 20px;
|
|
background: #4caf50;
|
|
color: #fff;
|
|
padding: 12px 20px;
|
|
border-radius: 6px;
|
|
box-shadow: 0 2px 8px rgba(0,0,0,0.2);
|
|
}
|
|
|
|
input[type="text"],
|
|
input[type="email"],
|
|
input[type="password"],
|
|
input[type="date"],
|
|
select {
|
|
width: 100%;
|
|
font-size: 13pt;
|
|
padding: 5px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 5px;
|
|
color: #656363;
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
select {
|
|
width: calc(100% + 10px);
|
|
}
|
|
|
|
input[type="text"]:focus,
|
|
input[type="email"]:focus,
|
|
input[type="password"]:focus,
|
|
input[type="date"]:focus,
|
|
select:focus {
|
|
outline: none;
|
|
border-color: #1d4899;
|
|
color: #1d4899;
|
|
}
|
|
|
|
|
|
table {
|
|
width: 100%;
|
|
}
|
|
|
|
input[type="button"],
|
|
input[type="submit"] {
|
|
cursor: pointer;
|
|
background-color: #ffffff;
|
|
border: 1px solid #809dd5 !important;
|
|
padding: 10px 20px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
input[type="button"]:hover,
|
|
input[type="submit"]:hover {
|
|
background-color: #1d4899;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.error_text {
|
|
color: red;
|
|
display: block;
|
|
}
|
|
|
|
.link {
|
|
cursor: pointer;
|
|
text-decoration: underline;
|
|
font-weight: bold;
|
|
color: #2a7caf;
|
|
}
|