-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
76 lines (62 loc) · 5.52 KB
/
styles.css
File metadata and controls
76 lines (62 loc) · 5.52 KB
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
*, *::before, *::after { box-sizing: border-box; }
:root {
--bg: #f8fafc; --surface: #ffffff;
--primary: #3b82f6; --text: #334155;
--border: #e2e8f0; --success: #22c55e;
--danger: #ef4444; --warn: #f59e0b;
}
body { width: 420px; height: 600px; margin: 0; font-family: 'Segoe UI', system-ui, sans-serif; background: var(--bg); color: var(--text); }
/* --- GOOGLE PREVIEW FIX --- */
.google-preview {
background: #fff; padding: 15px; border-radius: 8px; border: 1px solid #dfe1e5;
font-family: arial, sans-serif; margin-bottom: 10px;
}
.g-cite { color: #202124; font-size: 12px; display: flex; align-items: center; margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.g-cite span { background: #f1f3f4; border-radius: 50%; width: 16px; height: 16px; display: inline-block; margin-right: 8px; }
.g-title { color: #1a0dab; font-size: 18px; line-height: 1.3; cursor: pointer; text-decoration: none; display: block; margin-bottom: 3px; }
.g-title:hover { text-decoration: underline; }
.g-desc { color: #4d5156; font-size: 13px; line-height: 1.5; word-wrap: break-word; }
/* ... Diğer stiller (Header, Tabs, Cards) aynen kalabilir veya aşağıdakileri kullanın ... */
header { background: var(--surface); padding: 12px 15px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.brand h1 { margin: 0; font-size: 16px; color: #0f172a; font-weight: 700; }
.score-badge { background: var(--primary); color: white; padding: 2px 8px; border-radius: 12px; font-weight: bold; font-size: 13px; margin-left: 8px; }
.tabs { display: flex; background: white; border-bottom: 1px solid var(--border); }
.tab-link { flex: 1; border: none; background: none; padding: 12px 0; cursor: pointer; font-size: 12px; font-weight: 600; color: #64748b; border-bottom: 2px solid transparent; }
.tab-link.active { color: var(--primary); border-bottom-color: var(--primary); }
#content-area { padding: 15px; overflow-y: auto; flex: 1; }
.hidden { display: none !important; }
/* Components */
.card, .section { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 12px; margin-bottom: 12px; box-shadow: 0 1px 2px rgba(0,0,0,0.03); }
.card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
h3 { margin: 0 0 10px 0; font-size: 12px; text-transform: uppercase; color: #94a3b8; font-weight: 700; letter-spacing: 0.5px; }
.stat-row { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 5px; border-bottom: 1px dashed #f1f5f9; padding-bottom: 3px; }
.progress-bg { background: #e2e8f0; height: 8px; border-radius: 4px; overflow: hidden; margin-bottom: 8px; }
.progress-fill { width: 0%; height: 100%; background: var(--success); transition: width 0.6s ease-out; }
.bad-text { color: var(--danger) !important; font-weight: bold; }
/* Start Screen */
.start-screen { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: white; text-align: center; }
.btn-big-pulse { background: var(--primary); color: white; border: none; padding: 15px 30px; font-size: 16px; font-weight: bold; border-radius: 50px; cursor: pointer; animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); } 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); } }
.loading { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: #94a3b8; }
.spinner { width: 40px; height: 40px; border: 4px solid #e2e8f0; border-top-color: var(--primary); border-radius: 50%; animation: spin 1s linear infinite; margin-bottom: 15px; }
@keyframes spin { to { transform: rotate(360deg); } }
/* Tech Tags */
.tech-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.badge { display: inline-block; padding: 2px 6px; border-radius: 4px; font-size: 10px; background: #eee; margin-right: 5px; }
.badge.ok { background: #dbeafe; color: #1e40af; border: 1px solid #bfdbfe; }
.badge.err { background: #fee2e2; color: #991b1b; }
.suggestion-list { list-style: none; padding: 0; margin: 0; }
.suggestion-item { padding: 10px; border-radius: 6px; margin-bottom: 8px; font-size: 12px; border-left: 3px solid #ccc; background: #f9fafb; }
.suggestion-item.error { background: #fef2f2; border-color: #ef4444; }
.suggestion-item.warn { background: #fffbeb; border-color: #f59e0b; }
.suggestion-item.good { background: #f0fdf4; border-color: #22c55e; }
.s-header { font-weight: bold; margin-bottom: 4px; color: #334155; }
.s-fix { color: #64748b; font-style: italic; }
.action-btn { background: var(--primary); color: white; border: none; padding: 8px; border-radius: 6px; width: 100%; cursor: pointer; margin-top: 5px; font-size: 11px; font-weight: 600; }
.btn-danger { background: var(--danger); }
.btn-xs { font-size: 11px; padding: 5px 12px; border:none; background:#1e293b; color:white; border-radius:6px; cursor:pointer; }
.keyword-tag { display: inline-block; background: #eff6ff; color: #1e40af; padding: 2px 6px; border-radius: 4px; font-size: 11px; margin: 2px; }
.break-word { word-break: break-all; font-size: 11px; } .simple-list { padding-left: 15px; margin: 0; font-size: 11px; }
::-webkit-scrollbar { width: 6px; } ::-webkit-scrollbar-thumb { background-color: #cbd5e1; border-radius: 3px; }
.warn-text { color: #d97706 !important; font-weight: bold; }
.history-link { margin-top: 15px; font-size: 11px; color: #2563eb; cursor: pointer; text-decoration: underline; }