1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- @mixin teams-theme() {
- app-teams {
- .teams-list {
- width: 100%;
- height: 100%;
- background-color: $off-white;
- border-radius: 20px;
- margin: 2rem 0;
- .teams-filter {
- width: 100%;
- padding: 20px;
- padding-bottom: 40px;
- h1 {
- color: $main-color;
- font-weight: bold;
- font-size: 25px;
- }
- &__filter {
- button {
- background-color: #009fe33f;
- border: 1px dashed $main-color;
- padding: 10px 20px;
- border-radius: 10px;
- color: $main-color;
- font-weight: bold;
- font-size: 16px;
- cursor: pointer;
- }
- select {
- background-color: #2f2c8333;
- border: 1px solid #2f2c8333;
- padding: 10px 30px;
- border-radius: 10px;
- }
- }
- .team-setting {
- /* UI Properties */
- background: #2f2c830d;
- box-shadow: -2px 6px 9px #2f2c8333;
- border-radius: 10px;
- opacity: 1;
- border: none;
- }
- }
- .team-card,
- .team-info-card {
- padding: 40px 20px;
- width: 100%;
- border-radius: 20px;
- background: $white-color;
- box-shadow: -2px 6px 9px #2f2c8333;
- margin-bottom: 8px;
- h2 {
- color: $main-color;
- font-size: 20px;
- }
- p {
- padding: 15px 20px;
- border-radius: 12px;
- background-color: $light-blue;
- color: $white-color;
- }
- }
- .team-info-card {
- img {
- width: 80px;
- height: 80px;
- border-radius: 50%;
- margin-bottom: 10px;
- }
- .chat {
- width: 20px;
- height: 20px;
- object-fit: cover;
- margin-top: 5px;
- }
- h2 {
- color: #4b5155;
- font-size: 18px;
- }
- span {
- color: $span-color;
- font-size: 15px;
- }
- }
- }
- }
- }
|