You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

182 lines
2.6 KiB
CSS

*,
*:before,
*:after {
box-sizing: border-box;
}
.toast-basic {
padding: 12px 20px;
color: #ffffff;
display: inline-block;
box-shadow: 0 3px 6px -1px rgba(0, 0, 0, 0.12), 0 10px 36px -4px rgba(77, 96, 232, 0.3);
background: -webkit-linear-gradient(315deg, #73a5ff, #5477f5);
background: linear-gradient(135deg, #73a5ff, #5477f5);
position: fixed;
top: -150px;
right: 15px;
opacity: 0;
transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
border-radius: 2px;
cursor: pointer;
}
.toastify.on {
opacity: 1;
}
input[type=text],
input[type=email],
input[type=password] {
padding: 10px 5px;
border-radius: .25rem;
border: 2px solid black;
font-size: 16px;
}
body {
font-family: 'Roboto', "Helvetica Neue";
font-size: 18px;
background-color: #f9fafb;
color: #1f2937;
-webkit-font-smoothing: antialiased;
font-weight: 400;
}
a {
text-decoration: none;
}
table a {
color: cadetblue;
}
table a:hover {
color: #5477f5;
transition: all 0.2s ease-in-out;
cursor: pointer;
border-bottom: 2.5px solid;
}
.button {
padding: 12px 15px;
color: #ffffff;
background-color: cadetblue;
border: none;
border-radius: .25rem;
font-size: 16px;
font-weight: 600;
}
.button:hover {
background-color: #5477f5;
transition: all 0.2s ease-in-out;
color: #ffffff;
}
.button a:hover {
color: #ffffff;
}
.container {
width: 100%;
text-align: center;
}
.width-60 table {
margin-top: 30px;
width: 100%;
text-align: left;
margin-left: auto;
margin-right: auto;
border-collapse: collapse;
border-bottom: 2px solid black;
}
th,
td {
padding: 5px;
}
table {
margin-bottom: 20px;
}
.width-60 {
width: 60%;
margin-left: auto;
margin-right: auto;
}
.width-60 form {
text-align: left;
}
.width-60 table thead {
border-bottom: 2px solid black;
}
.form-container {
margin-top: 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
label {
display: block;
}
fieldset {
font-size: 20px;
border-radius: 5px;
}
.red {
background-color: crimson;
}
.flex-row {
display: flex;
}
.flex-space-betw {
justify-content: space-between;
align-items: center;
}
.flex-center {
justify-content: center;
align-items: center;
}
.flex-column {
display: flex;
flex-direction: column;
}
.font-red {
color: crimson;
}
form span {
display: block;
}
.width-375-px {
width: 375px;
}
.width-100 {
width: 100%;
}
.mb-4 {
margin-bottom: 1rem;
}
.flex-right {
justify-content: right;
}