mirror of
https://github.com/OpenSignLabs/OpenSign.git
synced 2026-08-17 21:25:54 +02:00
79 lines
1.5 KiB
CSS
79 lines
1.5 KiB
CSS
.addusercontainer {
|
|
height: 100%;
|
|
padding: 10px 20px 10px 20px;
|
|
}
|
|
|
|
.loaderdiv {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
|
|
}
|
|
|
|
.form-wrapper {
|
|
width: 100%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
padding: 8px;
|
|
}
|
|
|
|
.form-section {
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
.checkbox-label {
|
|
margin-left: 0.5rem;
|
|
color: #4b5563;
|
|
}
|
|
|
|
.addUserInput {
|
|
padding: 0.5rem 0.75rem;
|
|
width: 100%;
|
|
border-width: 1px;
|
|
border-color: #d1d5db;
|
|
border-radius: 0.375rem;
|
|
outline: none;
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
|
|
.buttoncontainer {
|
|
margin-top: 1rem;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.submitbutton {
|
|
background: #1ab6ce;
|
|
border-radius: 2px;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.18);
|
|
border: none;
|
|
text-transform: uppercase;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
padding: 0.375rem 0.75rem;
|
|
text-align: center;
|
|
color: #ffffff;
|
|
outline: none;
|
|
}
|
|
/* For classes: bg-[#188ae2] text-sm text-white px-4 py-2 rounded ml-2 shadow focus:outline-none */
|
|
.resetbutton {
|
|
background-color: #188ae2;
|
|
border-radius: 2px;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.18);
|
|
border: none;
|
|
text-transform: uppercase;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
padding: 0.375rem 0.75rem;
|
|
text-align: center;
|
|
color: #ffffff;
|
|
outline: none;
|
|
margin-left: 8px;
|
|
} |