|
| 1 | +.nco-container { |
| 2 | + padding: 2rem; |
| 3 | +} |
| 4 | + |
| 5 | +@media (max-width: 576px) { |
| 6 | + .nco-container { |
| 7 | + padding: 1.25rem; |
| 8 | + } |
| 9 | +} |
| 10 | + |
| 11 | +.nco-connected-section { |
| 12 | + border-top: 1px solid #f1f5f9; |
| 13 | +} |
| 14 | + |
| 15 | +.nco-muted { |
| 16 | + color: #64748b; |
| 17 | +} |
| 18 | + |
| 19 | +.nco-pulse-dot { |
| 20 | + display: inline-block; |
| 21 | + width: 8px; |
| 22 | + height: 8px; |
| 23 | + background-color: #326ce5; |
| 24 | + border-radius: 50%; |
| 25 | + margin-right: 0.45rem; |
| 26 | + vertical-align: middle; |
| 27 | + animation: nco-pulse 2s infinite ease-in-out; |
| 28 | +} |
| 29 | + |
| 30 | +@keyframes nco-pulse { |
| 31 | + 0% { transform: scale(0.9); opacity: 0.6; box-shadow: 0 0 0 0 rgba(50, 108, 229, 0.4); } |
| 32 | + 50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 4px rgba(50, 108, 229, 0); } |
| 33 | + 100% { transform: scale(0.9); opacity: 0.6; box-shadow: 0 0 0 0 rgba(50, 108, 229, 0); } |
| 34 | +} |
| 35 | + |
| 36 | +.nco-loader { |
| 37 | + width: 28px; |
| 38 | + height: 28px; |
| 39 | + border: 3px solid #f1f5f9; |
| 40 | + border-top-color: #326ce5; |
| 41 | + border-radius: 50%; |
| 42 | + animation: nco-spin 0.8s linear infinite; |
| 43 | +} |
| 44 | + |
| 45 | +@keyframes nco-spin { |
| 46 | + to { transform: rotate(360deg); } |
| 47 | +} |
| 48 | + |
| 49 | +.nco-state { |
| 50 | + animation: nco-fade-in 0.25s cubic-bezier(0.16, 1, 0.3, 1); |
| 51 | +} |
| 52 | + |
| 53 | +@keyframes nco-fade-in { |
| 54 | + from { opacity: 0; transform: translateY(4px); } |
| 55 | + to { opacity: 1; transform: translateY(0); } |
| 56 | +} |
| 57 | + |
| 58 | +.nco-session-row { |
| 59 | + border-bottom: 1px solid #f1f5f9; |
| 60 | + transition: all 0.2s ease; |
| 61 | + margin-left: -0.5rem; |
| 62 | + margin-right: -0.5rem; |
| 63 | + padding: 0.5rem; |
| 64 | + border-radius: 8px; |
| 65 | +} |
| 66 | + |
| 67 | +.nco-session-row:hover { |
| 68 | + background-color: #f8fafc; |
| 69 | + border-color: transparent; |
| 70 | +} |
| 71 | + |
| 72 | +.nco-session-row:last-child { |
| 73 | + border-bottom: none; |
| 74 | +} |
| 75 | + |
| 76 | +.nco-session-row--unconfirmed { |
| 77 | + opacity: 0.85; |
| 78 | +} |
| 79 | + |
| 80 | +.nco-session-row--unconfirmed .nco-session-title-text { |
| 81 | + font-weight: 600; |
| 82 | +} |
| 83 | + |
| 84 | +.nco-globe-icon-wrapper { |
| 85 | + display: flex; |
| 86 | + align-items: center; |
| 87 | + justify-content: center; |
| 88 | + width: 38px; |
| 89 | + height: 38px; |
| 90 | + border-radius: 50%; |
| 91 | + background-color: #eff6ff; |
| 92 | + color: #326ce5; |
| 93 | + font-size: 1.1rem; |
| 94 | + transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); |
| 95 | +} |
| 96 | + |
| 97 | +.nco-session-row:hover .nco-globe-icon-wrapper { |
| 98 | + background-color: #326ce5; |
| 99 | + color: #ffffff; |
| 100 | + transform: rotate(12deg); |
| 101 | +} |
| 102 | + |
| 103 | +.nco-session-link:link, |
| 104 | +.nco-session-link:visited { |
| 105 | + color: inherit; |
| 106 | + transition: all 0.2s ease; |
| 107 | + cursor: pointer; |
| 108 | + flex-grow: 1; |
| 109 | + text-decoration: none; |
| 110 | +} |
| 111 | + |
| 112 | +.nco-session-title-text { |
| 113 | + font-size: 0.95rem; |
| 114 | + color: #1e293b; |
| 115 | + transition: color 0.2s ease; |
| 116 | +} |
| 117 | + |
| 118 | +.nco-session-link:hover .nco-session-title-text { |
| 119 | + color: #326ce5; |
| 120 | +} |
| 121 | + |
| 122 | +.nco-session-time-text { |
| 123 | + color: #64748b; |
| 124 | + transition: color 0.2s ease; |
| 125 | +} |
| 126 | + |
| 127 | +.nco-session-link:hover .nco-session-time-text { |
| 128 | + color: #326ce5; |
| 129 | + opacity: 0.9; |
| 130 | +} |
| 131 | + |
| 132 | +.nco-action-btn:link, |
| 133 | +.nco-action-btn:visited { |
| 134 | + display: inline-flex; |
| 135 | + align-items: center; |
| 136 | + justify-content: center; |
| 137 | + width: 36px; |
| 138 | + height: 36px; |
| 139 | + border-radius: 50%; |
| 140 | + background-color: #f1f5f9; |
| 141 | + color: #64748b; |
| 142 | + transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); |
| 143 | + border: 1px solid transparent; |
| 144 | + text-decoration: none; |
| 145 | +} |
| 146 | + |
| 147 | +.nco-action-btn:hover { |
| 148 | + background-color: #eff6ff; |
| 149 | + color: #326ce5; |
| 150 | + border-color: #bfdbfe; |
| 151 | + transform: translateY(-1px); |
| 152 | + box-shadow: 0 4px 6px -1px rgba(50, 108, 229, 0.08); |
| 153 | +} |
| 154 | + |
| 155 | +.nco-connected-link:link, |
| 156 | +.nco-connected-link:visited { |
| 157 | + display: flex; |
| 158 | + align-items: center; |
| 159 | + gap: 0.625rem; |
| 160 | + padding: 0.5rem 0.75rem; |
| 161 | + margin-left: -0.75rem; |
| 162 | + border-radius: 6px; |
| 163 | + color: #334155; |
| 164 | + font-weight: 500; |
| 165 | + font-size: 0.9rem; |
| 166 | + transition: all 0.2s ease; |
| 167 | + text-decoration: none; |
| 168 | +} |
| 169 | + |
| 170 | +.nco-connected-link:hover { |
| 171 | + background-color: #f1f5f9; |
| 172 | + color: #326ce5; |
| 173 | +} |
| 174 | + |
| 175 | +.nco-connected-link i { |
| 176 | + color: #94a3b8; |
| 177 | + font-size: 1rem; |
| 178 | + width: 18px; |
| 179 | + text-align: center; |
| 180 | + transition: color 0.2s ease; |
| 181 | +} |
| 182 | + |
| 183 | +.nco-connected-link:hover i { |
| 184 | + color: #326ce5; |
| 185 | +} |
| 186 | + |
| 187 | +.nco-connected-invite { |
| 188 | + color: #64748b; |
| 189 | + margin-left: 0.5rem; |
| 190 | + padding-left: 0.75rem; |
| 191 | + border-left: 1px solid #e2e8f0; |
| 192 | +} |
| 193 | + |
| 194 | +.nco-inline-link:link, |
| 195 | +.nco-inline-link:visited { |
| 196 | + color: #326ce5; |
| 197 | + text-decoration: underline; |
| 198 | +} |
| 199 | + |
| 200 | +.nco-footer-links { |
| 201 | + display: grid; |
| 202 | + grid-template-columns: repeat(3, 1fr); |
| 203 | + gap: 0.75rem; |
| 204 | + width: 100%; |
| 205 | +} |
| 206 | + |
| 207 | +@media (max-width: 576px) { |
| 208 | + .nco-footer-links { |
| 209 | + grid-template-columns: 1fr; |
| 210 | + gap: 0.5rem; |
| 211 | + } |
| 212 | +} |
| 213 | + |
| 214 | +.nco-footer-btn:link, |
| 215 | +.nco-footer-btn:visited { |
| 216 | + display: flex; |
| 217 | + align-items: center; |
| 218 | + justify-content: center; |
| 219 | + gap: 0.5rem; |
| 220 | + padding: 0.625rem; |
| 221 | + border-radius: 6px; |
| 222 | + background-color: #f8fafc; |
| 223 | + border: 1px solid #e2e8f0; |
| 224 | + color: #475569; |
| 225 | + font-weight: 600; |
| 226 | + font-size: 0.85rem; |
| 227 | + text-align: center; |
| 228 | + transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); |
| 229 | + text-decoration: none; |
| 230 | +} |
| 231 | + |
| 232 | +.nco-footer-btn .fa-youtube { |
| 233 | + color: #dc3545; |
| 234 | +} |
| 235 | + |
| 236 | +.nco-footer-btn:hover { |
| 237 | + background-color: #eff6ff; |
| 238 | + border-color: #bfdbfe; |
| 239 | + color: #326ce5; |
| 240 | + transform: translateY(-1px); |
| 241 | +} |
0 commit comments