|
| 1 | +.members-page-container { |
| 2 | + margin: 0rem 2rem; |
| 3 | + margin-top: 2rem; |
| 4 | + |
| 5 | + display: flex; |
| 6 | + flex-direction: column; |
| 7 | + align-items: center; |
| 8 | + justify-content: center; |
| 9 | + height: 100%; |
| 10 | + |
| 11 | + .back-title-container { |
| 12 | + display: flex; |
| 13 | + align-items: center; |
| 14 | + justify-content: space-between; |
| 15 | + width: 100%; |
| 16 | + } |
| 17 | +} |
| 18 | + |
| 19 | +.options { |
| 20 | + width: 100%; |
| 21 | + display: flex; |
| 22 | + flex-direction: row; |
| 23 | + justify-content: space-between; |
| 24 | +} |
| 25 | + |
| 26 | +.button { |
| 27 | + outline: none; |
| 28 | + border: none; |
| 29 | + color: white; |
| 30 | + font-size: 1.4rem; |
| 31 | + padding: 1rem 2rem; |
| 32 | + border-radius: 3rem; |
| 33 | + background: #402aa4; |
| 34 | +} |
| 35 | + |
| 36 | +.add-people { |
| 37 | + font-size: 1.2rem; |
| 38 | + padding: 0.6rem 1.4rem; |
| 39 | +} |
| 40 | + |
| 41 | +.title { |
| 42 | + color: rgba(237, 237, 237, 0.7); |
| 43 | + font-family: Poppins; |
| 44 | + font-size: 20px; |
| 45 | + font-style: normal; |
| 46 | + font-weight: 400; |
| 47 | + line-height: normal; |
| 48 | + letter-spacing: 1.6px; |
| 49 | + text-transform: capitalize; |
| 50 | + .arrow { |
| 51 | + color: rgba(237, 237, 237, 0.7); |
| 52 | + font-family: Poppins; |
| 53 | + font-size: 20px; |
| 54 | + font-style: normal; |
| 55 | + font-weight: 400; |
| 56 | + line-height: normal; |
| 57 | + letter-spacing: -7.6px; |
| 58 | + text-transform: capitalize; |
| 59 | + } |
| 60 | +} |
| 61 | + |
| 62 | +.member-view { |
| 63 | + margin-top: 1rem; |
| 64 | + width: 60%; |
| 65 | +} |
| 66 | + |
| 67 | +.members-list { |
| 68 | + background: transparent; |
| 69 | + margin-top: 2rem; |
| 70 | + display: flex; |
| 71 | + flex-direction: column; |
| 72 | + gap: 2rem; |
| 73 | +} |
| 74 | +.member-card { |
| 75 | + border-radius: 20px; |
| 76 | + border: 0.5px solid #406a80; |
| 77 | + background: #191938; |
| 78 | + display: flex; |
| 79 | + flex-direction: row; |
| 80 | + align-items: center; |
| 81 | + justify-content: space-between; |
| 82 | + gap: 1rem; |
| 83 | + padding: 1rem 2rem; |
| 84 | + position: relative; |
| 85 | + |
| 86 | + .member-info { |
| 87 | + display: flex; |
| 88 | + flex-direction: row; |
| 89 | + align-items: center; |
| 90 | + justify-content: space-between; |
| 91 | + width: 40%; |
| 92 | + gap: 0.5rem; |
| 93 | + img { |
| 94 | + width: 80px; |
| 95 | + height: 80px; |
| 96 | + border-radius: 50%; |
| 97 | + } |
| 98 | + .member-name { |
| 99 | + font-size: 20px; |
| 100 | + font-style: normal; |
| 101 | + font-weight: 400; |
| 102 | + line-height: normal; |
| 103 | + letter-spacing: 1.6px; |
| 104 | + text-transform: capitalize; |
| 105 | + } |
| 106 | + } |
| 107 | + |
| 108 | + .member-actions { |
| 109 | + width: 50%; |
| 110 | + padding: 1rem; |
| 111 | + display: flex; |
| 112 | + flex-direction: row; |
| 113 | + align-items: center; |
| 114 | + justify-content: space-between; |
| 115 | + .member-remove-btn { |
| 116 | + right: 1rem; |
| 117 | + text-decoration: none; |
| 118 | + background: transparent; |
| 119 | + border: none; |
| 120 | + outline: none; |
| 121 | + color: #db1b24; |
| 122 | + font-size: 1.2rem; |
| 123 | + } |
| 124 | + .select-overlay { |
| 125 | + padding-right: 1rem; |
| 126 | + background: #402aa4; |
| 127 | + cursor: pointer; |
| 128 | + } |
| 129 | + select { |
| 130 | + border: none; |
| 131 | + outline: none; |
| 132 | + color: white; |
| 133 | + font-size: 1.2rem; |
| 134 | + padding: 0.6rem 1.4rem; |
| 135 | + background: #402aa4; |
| 136 | + cursor: pointer; |
| 137 | + } |
| 138 | + option { |
| 139 | + padding: 1rem; |
| 140 | + margin: 2rem; |
| 141 | + } |
| 142 | + } |
| 143 | +} |
| 144 | + |
| 145 | +@media only screen and (max-width: 1400px) { |
| 146 | + .member-view { |
| 147 | + width: 80%; |
| 148 | + } |
| 149 | +} |
| 150 | + |
| 151 | +@media only screen and (max-width: 1100px) { |
| 152 | + .member-card { |
| 153 | + flex-direction: column; |
| 154 | + .member-info { |
| 155 | + width: 100%; |
| 156 | + } |
| 157 | + .member-actions { |
| 158 | + width: 100%; |
| 159 | + } |
| 160 | + } |
| 161 | +} |
| 162 | + |
| 163 | +@media only screen and (max-width: 600px) { |
| 164 | + .member-view { |
| 165 | + width: 90%; |
| 166 | + } |
| 167 | +} |
0 commit comments