75 lines
1004 B
CSS
75 lines
1004 B
CSS
body {
|
|
margin: 0;
|
|
font-family: Arial, sans-serif;
|
|
background: #111319;
|
|
color: #e9ecf1;
|
|
}
|
|
|
|
.popup {
|
|
width: 380px;
|
|
max-height: 520px;
|
|
padding: 12px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.popup-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 8px;
|
|
}
|
|
|
|
.popup-header h1 {
|
|
margin: 0;
|
|
font-size: 15px;
|
|
}
|
|
|
|
button {
|
|
border: 1px solid #2f66ff;
|
|
background: #2f66ff;
|
|
color: white;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
padding: 6px 9px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
button.secondary {
|
|
border-color: #445;
|
|
background: #1e2230;
|
|
}
|
|
|
|
.status {
|
|
margin: 12px 0;
|
|
color: #adb6cb;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.url-list {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.url-item {
|
|
border: 1px solid #2a2f40;
|
|
border-radius: 8px;
|
|
background: #171b26;
|
|
padding: 8px;
|
|
}
|
|
|
|
.url-text {
|
|
margin: 0 0 8px;
|
|
font-size: 11px;
|
|
word-break: break-all;
|
|
color: #c6d0e5;
|
|
}
|
|
|
|
.actions {
|
|
display: flex;
|
|
gap: 8px;
|
|
}
|