123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850 |
- body {
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
- margin: 0;
- padding: 0;
- background-color: #ffffff;
- }
- header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- background-color: #ffffff;
- color: #333;
- height: 100px;
- padding: 0 20px;
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
- }
- header h1 {
- flex: 1;
-
- margin: 0;
- }
- .right-container {
- display: flex;
- flex: 1;
- justify-content: flex-end;
- }
- .right-container div {
- border: 1px solid #ccc;
- padding: 10px;
- margin-left: 10px;
- }
- .capture-license-button {
- background-color: #76b2f1;
- color: white;
- padding: 12px 0;
- border-radius: 15px;
- font-size: 14px;
- font-weight: 600;
- cursor: pointer;
- transition: background-color 0.3s ease;
- border: none;
- width: 60px;
- text-align: center;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- margin-left: 10px;
- flex-shrink: 0;
- }
- .capture-license-button:hover {
- background-color: #005bb5;
- }
- .login-button {
- background-color: #76b2f1;
- color: white;
- padding: 12px 0;
- border-radius: 15px;
- font-size: 14px;
- font-weight: 600;
- cursor: pointer;
- transition: background-color 0.3s ease;
- border: none;
- width: 60px;
- text-align: center;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- margin-left: 10px;
- flex-shrink: 0;
- }
- .login-button:hover {
- background-color: #005bb5;
- }
- .login-modal {
- display: none;
- position: fixed;
- z-index: 1000;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.4);
- justify-content: center;
- align-items: center;
- }
- .login-modal-content {
- background-color: #ffffff;
- padding: 20px;
- border-radius: 15px;
- box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
- max-width: 400px;
- width: 80%;
- text-align: center;
- animation: fadeIn 0.3s ease-in-out;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
- position: relative;
- }
- .login-modal-close {
- position: absolute;
- top: 10px;
- right: 10px;
- font-size: 24px;
- color: #007aff;
- cursor: pointer;
- font-weight: bold;
- z-index: 1001;
- }
- #userInfoContainer p {
- margin: 10px 0;
- font-size: 16px;
- color: #333;
- font-weight: 500;
- line-height: 1.5;
- }
- @keyframes fadeIn {
- from {
- opacity: 0;
- transform: scale(0.95);
- }
- to {
- opacity: 1;
- transform: scale(1);
- }
- }
- .logout-button {
- background-color: #ff3b30;
- color: white;
- padding: 12px 20px;
- border-radius: 15px;
- font-size: 16px;
- font-weight: 600;
- cursor: pointer;
- transition: background-color 0.3s ease;
- border: none;
- width: 100%;
- margin-top: 20px;
- }
- .logout-button:hover {
- background-color: #d12a1f;
- }
- .container {
- display: flex;
-
- height: 100vh;
- }
- aside {
- top: 0;
- left: 0;
- width: 200px;
- height: 100vh;
- background-color: #2c3e50;
- color: #ffffff;
- display: flex;
- flex-direction: column;
- align-items: center;
- padding-top: 20px;
- box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
-
- }
- nav ul {
- list-style: none;
- padding: 0;
- width: 100%;
- }
- nav ul li {
- width: 100%;
- margin-bottom: 10px;
- }
- nav ul li a {
- display: flex;
- align-items: center;
- padding: 15px 20px;
- color: #ffffff;
- text-decoration: none;
- font-size: 16px;
- font-weight: 500;
- transition: background 0.3s;
- }
- nav ul li a.active,
- nav ul li a:hover {
- background-color: #1abc9c;
- color: #ffffff;
- border-radius: 5px;
- }
- nav ul li a i {
- font-size: 20px;
- margin-right: 10px;
- }
- main {
- flex: 1;
- padding: 20px;
- overflow-y: scroll;
- background-color: #ecf0f1;
- height: auto;
- }
- .license-info-container {
- display: flex;
-
- flex-wrap: wrap;
- gap: 20px;
- }
- .license-info-card {
- position: relative;
- width: calc(25% - 20px);
- background-color: #ffffff;
- border-radius: 15px;
- box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
- overflow: hidden;
- transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
- margin-bottom: 20px;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
- padding-bottom: 20px;
- }
- .license-info-card:hover {
- transform: translateY(-3px);
- box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
- }
- .license-info-card-header {
- background-color: #007aff;
- height: 50px;
- border-top-left-radius: 15px;
- border-top-right-radius: 15px;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 10px;
- text-align: center;
- color: white;
- }
- .card-title {
- font-size: 20px;
- font-weight: 600;
- color: white;
- margin: 0;
- line-height: 1.2;
- }
- .license-info-card-content {
- padding: 20px;
- color: #333;
- }
- .card-text {
- margin: 10px 0;
- font-size: 18px;
- color: #3a3a3c;
- line-height: 1.6;
- }
- .license-status-green {
- color: #34c759;
- }
- .license-status-yellow {
- color: #ffcc00;
- }
- .license-status-red {
- color: #ff3b30;
- }
- @media (max-width: 768px) {
-
- .license-info-card {
- width: calc(50% - 20px);
- height: auto;
- }
- }
- @media (max-width: 768px) {
- .license-info-modal-content.show {
- width: 90vw;
- height: 90vh;
- }
- }
- .license-info-modal {
- display: none;
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.2);
- justify-content: center;
- align-items: center;
-
- overflow: hidden;
- }
- .license-info-modal-content {
- background-color: white;
- padding: 20px;
- border-radius: 20px;
- position: absolute;
- transform-origin: center;
- opacity: 0;
- transition: opacity 0.3s ease, transform 0.3s ease;
- box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
- max-height: 80vh;
- overflow-y: auto;
- }
- .license-info-modal-content {
- transform: scale(0.95);
- }
- .license-info-modal-content.show {
- opacity: 1;
- width: 80vw;
- height: 70vh;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%) scale(1);
- }
- .license-info-close {
- position: absolute;
- top: 10px;
- right: 20px;
- font-size: 28px;
- color: #007aff;
- cursor: pointer;
- font-weight: 600;
- }
- .license-info-modal-header {
- display: flex;
- flex-direction: column;
- align-items: center;
- margin-bottom: 20px;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
- }
- .license-info-modal-header h2 {
- font-size: 24px;
- font-weight: 600;
- color: #333;
- margin-bottom: 10px;
- }
- .license-info-modal-button-group {
- display: flex;
- justify-content: space-around;
- width: 100%;
- margin-top: 10px;
- }
- .license-info-group-box {
- border: 1px solid #ccc;
- border-radius: 8px;
- padding: 15px;
- margin-bottom: 15px;
- background-color: #f9f9f9;
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
- }
- .license-info-group-box p {
- margin: 5px 0;
- font-size: 16px;
- color: #333;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
- }
- .license-info-group-title {
- font-weight: 600;
- margin-bottom: 10px;
- color: #007aff;
- }
- .license-info-modal-button {
- padding: 12px 20px;
- background-color: #007aff;
- color: white;
- border: none;
- border-radius: 12px;
- font-size: 16px;
- font-weight: 500;
- cursor: pointer;
- transition: background-color 0.3s ease;
- }
- .license-info-modal-button:hover {
- background-color: #005bb5;
- }
- .license-info-modal-button:disabled {
- background-color: #ccc;
- cursor: not-allowed;
- }
- .license-info-modal-body {
- overflow-y: auto;
- flex-grow: 1;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
- color: #3a3a3c;
- font-size: 18px;
- line-height: 1.6;
- }
- .license-info-modal-body::-webkit-scrollbar {
- width: 6px;
- }
- .license-info-modal-body::-webkit-scrollbar-thumb {
- background-color: rgba(0, 0, 0, 0.2);
- border-radius: 3px;
- }
- .license-info-modal-pagination {
- display: flex;
- justify-content: center;
- margin-top: 20px;
- }
- .license-info-modal-pagination button {
- padding: 10px 15px;
- margin: 0 5px;
- background-color: #007aff;
- color: white;
- border: none;
- border-radius: 5px;
- cursor: pointer;
- font-size: 16px;
- transition: background-color 0.3s ease;
- }
- .license-info-modal-pagination button:hover {
- background-color: #005bb5;
- }
- .license-info-modal-pagination button:disabled {
- background-color: #ccc;
- cursor: not-allowed;
- }
- .license-info-modal-pagination select {
- padding: 10px 15px;
- margin: 0 5px;
- background-color: #007aff;
- color: white;
- border: none;
- border-radius: 5px;
- cursor: pointer;
- font-size: 16px;
- transition: background-color 0.3s ease;
- }
- .license-info-modal-pagination select option {
- background-color: white;
- color: black;
- }
- .license-info-modal-pagination select option:hover {
- background-color: #007aff;
- color: white;
- }
- .license-info-modal-pagination select option:checked {
- background-color: #ccc;
- color: white;
- }
- nav ul {
- padding-top: 20px;
- }
- nav ul li a.active {
- background-color: #007aff;
- color: white;
- }
- .loading-modal {
- position: fixed;
- z-index: 9999;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.5);
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .loading-modal-content {
- background-color: white;
- padding: 20px;
- border-radius: 8px;
- text-align: center;
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
- }
- .spinner {
- border: 4px solid rgba(0, 0, 0, 0.1);
- border-left-color: #09f;
- border-radius: 50%;
- width: 40px;
- height: 40px;
- animation: spin 1s linear infinite;
- margin-bottom: 10px;
- }
- @keyframes spin {
- from { transform: rotate(0deg); }
- to { transform: rotate(360deg); }
- }
- .loading-modal p {
- margin: 0;
- font-size: 16px;
- color: #333;
- }
- .search-container {
- display: flex;
- align-items: center;
- justify-content: center;
- gap: 10px;
- padding: 10px 0;
- background-color: #ffffff;
-
- }
- #license-status-filter, #start-date, #end-date, #search-bar {
- width: 18%;
- padding: 12px;
- border-radius: 15px;
- border: none;
- background-color: #ffffff;
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
- font-size: 16px;
- color: #333;
- transition: all 0.3s ease;
- }
- #start-date:focus, #end-date:focus {
- outline: none;
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
- }
- #submit-button,
- #reset-button {
- padding: 12px 20px;
- background-color: #007aff;
- color: white;
- border: none;
- border-radius: 15px;
- font-size: 16px;
- cursor: pointer;
- transition: background-color 0.3s ease;
- }
- #submit-button:hover,
- #reset-button:hover {
- background-color: #005bb5;
- }
- .distributionHistory-modal {
- display: none;
- position: fixed;
- z-index: 1000;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.5);
- justify-content: center;
- align-items: center;
- overflow: hidden;
- }
- .distributionHistory-modal-content {
- background-color: #fff;
- width: 400px;
- max-width: 90%;
- padding: 20px;
- border-radius: 10px;
- box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
- position: relative;
- text-align: center;
- }
- .distributionHistory-modal-close {
- position: absolute;
- top: 10px;
- right: 15px;
- font-size: 24px;
- color: #333;
- cursor: pointer;
- }
- .distributionHistory-modal-header h2,
- .distributionHistory-modal-body h2 {
- font-size: 20px;
- font-weight: bold;
- margin-bottom: 15px;
- color: #333;
- }
- .distributionHistory-modal-email-section {
- margin-bottom: 20px;
- }
- .distributionHistory-modal-email-section h2 {
- font-size: 18px;
- margin-bottom: 10px;
- color: #007bff;
- }
- .distributionHistory-modal-user-section {
- margin-top: 20px;
- }
- .distributionHistory-modal-user-section h2 {
- font-size: 18px;
- margin-bottom: 10px;
- color: #28a745;
- }
- .distributionHistory-modal-inputs,
- .distributionHistory-modal-user-inputs {
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- }
- .distributionHistory-modal-inputs div,
- .distributionHistory-modal-user-inputs div {
- margin-bottom: 10px;
- }
- .distributionHistory-modal input[type="checkbox"] {
- margin-right: 10px;
- }
- .distributionHistory-modal-label {
- font-size: 16px;
- color: #555;
- cursor: pointer;
- }
- .distributionHistory-modal-confirm-button {
- background-color: #007bff;
- color: white;
- padding: 10px 20px;
- border: none;
- border-radius: 5px;
- cursor: pointer;
- margin-top: 20px;
- font-size: 16px;
- }
- .distributionHistory-modal-confirm-button:hover {
- background-color: #0056b3;
- }
- .distributionHistory-modal-user-select-container {
- margin-bottom: 15px;
- width: 100%;
- display: flex;
- justify-content: center;
- }
- .distributionHistory-modal-user-select {
- width: 80%;
- padding: 10px;
- border-radius: 8px;
- border: 1px solid #ccc;
- font-size: 16px;
- background-color: #f9f9f9;
- color: #333;
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
- transition: border-color 0.3s ease;
- }
- .distributionHistory-modal-user-select:focus {
- border-color: #007bff;
- outline: none;
- box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
- }
- .distributionHistory-modal-user-select option {
- background-color: white;
- color: black;
- }
- .distributionHistory-modal-user-select option:hover {
- background-color: #007bff;
- color: white;
- }
- .distributionHistory-modal-user-select option:checked {
- background-color: #0056b3;
- color: white;
- }
- .distributionHistory-modal-add-user-button {
- padding: 10px 15px;
- background-color: #007bff;
- color: white;
- border: none;
- border-radius: 5px;
- cursor: pointer;
- margin-top: 10px;
- transition: background-color 0.3s ease;
- }
- .distributionHistory-modal-add-user-button:hover {
- background-color: #0056b3;
- }
|