-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidepanel.css
More file actions
70 lines (60 loc) · 1.06 KB
/
sidepanel.css
File metadata and controls
70 lines (60 loc) · 1.06 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
body {
margin: 0;
padding: 15px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.container {
display: flex;
flex-direction: column;
gap: 20px;
}
.header {
padding-bottom: 10px;
border-bottom: 1px solid #eee;
}
.header h2 {
margin: 0px;
color: #1a73e8;
}
.actions {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
button {
padding: 8px 16px;
background-color: #1a73e8;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #1557b0;
}
.notes textarea {
width: 100%;
height: 200px;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
resize: vertical;
margin-bottom: 10px;
}
#results {
padding: 10px;
background-color: #f8f9fa;
border-radius: 4px;
margin-top: 20px;
}
.result-item {
background: white;
padding: 15px;
border-radius: 4px;
margin-bottom: 10px;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.result-content {
margin-bottom: 10px;
line-height: 1.5;
}