-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.css
More file actions
101 lines (88 loc) · 2.01 KB
/
Copy pathexample.css
File metadata and controls
101 lines (88 loc) · 2.01 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
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
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: #f5f5f5;
overflow: hidden;
}
.toolbar {
background: #333;
color: white;
padding: 15px;
display: flex;
gap: 10px;
align-items: center;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
height: 60px;
box-sizing: border-box;
}
.toolbar button {
background: #007bff;
color: white;
border: none;
padding: 8px 16px;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
}
.toolbar button:hover {
background: #0056b3;
}
.toolbar button.active {
background: #28a745;
}
.toolbar input {
padding: 8px 12px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 14px;
}
.toolbar .separator {
width: 1px;
height: 30px;
background: #555;
margin: 0 10px;
}
#status {
margin-left: auto;
font-size: 14px;
color: #aaa;
}
.view-toggle {
display: flex;
gap: 5px;
background: #444;
padding: 2px;
border-radius: 4px;
}
.view-toggle button {
background: transparent;
padding: 6px 12px;
font-size: 12px;
}
.view-toggle button.active {
background: #007bff;
}
.link-type-selector {
display: flex;
gap: 5px;
align-items: center;
}
.link-type-selector select {
padding: 6px 10px;
border: 1px solid #ddd;
border-radius: 4px;
background: white;
color: #333;
font-size: 14px;
}
.help-text {
position: fixed;
bottom: 20px;
left: 20px;
background: rgba(0,0,0,0.8);
color: white;
padding: 10px 15px;
border-radius: 8px;
font-size: 12px;
max-width: 300px;
}