123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- .user-info-cards-container {
- display: flex;
- flex-wrap: wrap;
- gap: 16px;
- justify-content: flex-start;
- }
-
- .user-info-card {
- background-color: #f9f9f9;
- border-radius: 8px;
- padding: 16px;
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
- width: 300px;
- transition: transform 0.2s ease-in-out;
- }
-
- .user-info-card:hover {
- transform: scale(1.05);
- }
-
- .user-info-card-content p {
- margin: 8px 0;
- font-size: 14px;
- }
-
- .user-info-create-role-button {
- background-color: #007aff;
- color: white;
- border: none;
- padding: 10px 20px;
- border-radius: 10px;
- cursor: pointer;
- font-size: 16px;
- font-weight: 500;
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
- transition: background-color 0.3s;
- margin-left: 20px;
- }
-
- .user-info-create-role-button:hover {
- background-color: #005bb5;
- }
-
-
-
-
- .user-info-modal {
- display: none;
- position: fixed;
- z-index: 1;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- overflow: auto;
- background-color: rgba(0, 0, 0, 0.5);
- }
- .user-info-modal-content {
- background-color: #fefefe;
- margin: 15% auto;
- padding: 20px;
- border: 1px solid #888;
- width: 400px;
- border-radius: 8px;
- }
- .user-info-close {
- color: #aaa;
- float: right;
- font-size: 28px;
- font-weight: bold;
- }
- .user-info-close:hover {
- color: #ff3b30;
- }
- .user-info-close:focus {
- color: black;
- text-decoration: none;
- cursor: pointer;
- }
- .user-info-modal-buttons {
- margin-top: 20px;
- display: flex;
- justify-content: space-between;
- }
- .user-info-button {
- padding: 10px 20px;
- background-color: #4CAF50;
- color: white;
- border: none;
- border-radius: 4px;
- cursor: pointer;
- transition: background-color 0.3s;
- }
- .user-info-button:hover {
- background-color: #45a049;
- }
- .add-user-modal {
- display: none;
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.5);
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .add-user-modal-content {
- background-color: #fefefe;
- margin: 1% auto;
- padding: 20px;
- border: 1px solid #888;
- max-width: 1000px;
- width: 550px;
- border-radius: 8px;
- }
- .add-user-close {
- position: absolute;
- right: 20px;
- top: 20px;
- color: #888;
- font-size: 24px;
- font-weight: bold;
- cursor: pointer;
- transition: color 0.2s ease;
- }
- .add-user-close:hover {
- color: #ff3b30;
- }
- .add-user-form-group {
- margin-bottom: 20px;
- }
- .add-user-flat-rounded-input {
- width: 100%;
- padding: 12px;
- font-size: 16px;
- border: none;
- border-radius: 12px;
- background-color: #f7f7f7;
- box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
- margin: 10px 0;
- transition: background-color 0.2s ease;
- appearance: none;
- }
- .add-user-flat-rounded-input:focus {
- outline: none;
- background-color: #e8e8e8;
- }
- .add-user-flat-rounded-button {
- width: 100%;
- background-color: #007aff;
- color: white;
- padding: 14px 0;
- font-size: 16px;
- border: none;
- border-radius: 12px;
- cursor: pointer;
- transition: background-color 0.2s ease;
- font-weight: 600;
- }
- .add-user-flat-rounded-button:hover {
- background-color: #005ecb;
- }
- .add-user-flat-rounded-button:active {
- background-color: #004a99;
- }
|