File size: 3,146 Bytes
8ad64dc 84629c8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 | :root {
--bg: #0b0c10;
--card: #12141b;
--text: #e9edf1;
--muted: #9aa3ad;
--line: #232733;
--accent: #6ea8ff;
}
* { box-sizing: border-box; }
body {
margin: 0;
font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
background: var(--bg);
color: var(--text);
}
.container { max-width: 980px; margin: 0 auto; padding: 24px; }
.topbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 16px; }
.title { font-size: 20px; font-weight: 650; }
.subtitle { color: var(--muted); font-size: 13px; margin-top: 2px; }
.tabs { display: flex; gap: 8px; }
.tab {
background: transparent;
border: 1px solid var(--line);
color: var(--text);
padding: 8px 12px;
border-radius: 10px;
cursor: pointer;
}
.tab.active { border-color: var(--accent); }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 18px; }
.cardHeader h2 { margin: 0 0 4px 0; }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.form { margin-top: 14px; display: grid; gap: 12px; }
.grid2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.field { display: grid; gap: 6px; }
label { font-size: 13px; color: var(--muted); }
input, select {
background: #0e1016;
border: 1px solid var(--line);
color: var(--text);
padding: 10px 12px;
border-radius: 12px;
outline: none;
}
input:focus, select:focus { border-color: var(--accent); }
.primary {
background: var(--accent);
color: #0b0c10;
border: 0;
padding: 10px 14px;
border-radius: 12px;
cursor: pointer;
font-weight: 600;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
border: 1px solid var(--line);
background: transparent;
color: var(--text);
padding: 6px 10px;
border-radius: 999px;
cursor: pointer;
font-size: 13px;
}
.chip.on { border-color: var(--accent); }
.results { margin-top: 16px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.item { border: 1px solid var(--line); border-radius: 14px; padding: 12px; background: #0e1016; }
.itemTitle { font-weight: 650; }
.row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.badge { font-size: 12px; color: var(--muted); border: 1px solid var(--line); padding: 4px 8px; border-radius: 999px; }
@media (max-width: 720px) {
.grid2 { grid-template-columns: 1fr; }
.results { grid-template-columns: 1fr; }
}
.resultsList{
display:flex;
flex-direction:column;
gap:12px;
margin-top:14px;
}
.resultCard{
border:1px solid rgba(255,255,255,0.10);
border-radius:14px;
padding:14px;
background:rgba(255,255,255,0.03);
}
.resultCard:hover{
background:rgba(255,255,255,0.05);
}
.resultRow{
display:flex;
align-items:flex-start;
justify-content:space-between;
gap:12px;
}
.resultLeft{
flex:1;
min-width:0;
}
.resultTitleRow{
display:flex;
align-items:baseline;
gap:10px;
}
.resultIndex{
opacity:0.65;
font-size:13px;
flex:0 0 auto;
}
.resultTitle{
font-size:18px;
font-weight:650;
line-height:1.25;
}
.whyBtn{
white-space:nowrap;
align-self:center;
}
|