Skip to content
Snippets Groups Projects
OrganizationItemDetails.css 1.33 KiB
Newer Older
Sarthak Shrivastava's avatar
Sarthak Shrivastava committed
/* OrganizationItemDetails.css */
.organization-item-details {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    align-items: center;
}

.item-details {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the entire content */
    text-align: center;
}

.item-details span {
    display: block;
    margin-bottom: 10px;
    text-align: left;
    width: 100%;
}

.modify-item-button {
    display: block;
    margin-top: 20px;
    padding: 10px 20px;
    color: #fff;
    background-color: #5bc0de; /* Blue color for modify button */
    border: 1px solid #5bc0de;
    border-radius: 5px;
    cursor: pointer;
}

.modify-item-button:hover {
    background-color: #46b8da; /* Darker blue color on hover */
}
.delete-item-button {
    background-color: #8b0000; /* Dark red color */
    color: #fff;
    border: 1px solid #6b0000; /* Dark red border color */
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
}

.delete-item-button:hover
{
    background-color: #6b0000; /* Dark red color on hover */
}
/* Style for dropdowns */
.item-details select {
    padding: 8px;
    width: 100%;
    margin-bottom: 10px;
}