.container{ background-color: #343a40; width: 80vmin; height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: space-around; padding: 2rem; } .title{ color: #feffff; } .rooms-list{ height: 90%; width: 100%; background-color: #212529; overflow: auto; overflow-x: hidden; display: flex; flex-direction: column; align-items: center; padding-top: 1rem; } .room{ background-color: #6c757d; width: 94%; border-radius: 4px; display: flex; align-items: center; flex-wrap: wrap; gap: .2rem; margin-bottom: 2rem; height: auto; &-buttons{ margin-left: auto; justify-self: end; align-items: center; justify-content: space-around; display: flex; width: 100%; //height: 30%; gap: 0; } &-description{ padding: 0 5px; white-space: nowrap; overflow: hidden !important; text-overflow: ellipsis; display: inline-block; //height: 20%; width: 100%; } &-title{ white-space: nowrap; overflow: hidden !important; text-overflow: ellipsis; display: inline-block; font-weight: bold; padding: 0 5px; position: relative; &-date{ margin-left: 1rem; margin-right: 1rem; font-size: 65%; } width: 100%; //height: 20%; border: none; } &-color{ display: flex; align-items: center; flex-wrap: wrap; font-weight: bold; font-size: 115%; border-radius: 4px 0 0 4px; position: relative; justify-content: flex-start; padding-left: .5rem; width: 100%; //height: 20%; } } .highlight{ box-shadow: 0 0 8px 3px white; //padding-bottom: 1.2rem; } .btn{ background-color: #495057; filter: brightness(95%); color: #e9ecef; padding: .3rem .5rem; border: none; cursor: pointer; font-weight: bold; transition: all .3s; border-radius: 0; width: 100%; &:hover{ filter: brightness(85%); } &-edit{ border-bottom: 4px solid #003f88; } &-delete{ border-bottom: 4px solid #d90429; } } .task-search{ background-color: #6c757d; color: #feffff; padding: 5px; width: 80%; margin: 1rem; border: none; outline: none; &::placeholder{ color: #feffff; } &:focus, &:active{ outline: none; } } .form-group{ width: 100%; display: flex; flex-wrap: wrap; justify-content: center; gap: 10%; color: #feffff; &-top{ color: #feffff; display: flex; width: 80%; justify-content: flex-start; gap: 1rem; margin-bottom: 5px; font-weight: bold; &-group{ justify-self: center; display: flex; gap: .2rem; } } &-checkbox{ margin-bottom: 10px; display: flex; gap: .2rem; transform: scale(1.1); &-red{ border-bottom: 3px solid #c1121f; } &-green{ border-bottom: 3px solid #1a7431; } &-blue{ border-bottom: 3px solid #0466c8; } &-luck{ border-bottom: 3px solid #ffea00; } &-winner{ border-bottom: 3px solid #ff7b00; } } } .todayClass{ display: block; width: 100%; right: 0; color: white; text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; } .loading{ color: #feffff; }