-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
81 lines (70 loc) · 1.37 KB
/
Copy pathstyles.css
File metadata and controls
81 lines (70 loc) · 1.37 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
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.upload-section {
text-align: center;
margin-bottom: 20px;
padding: 20px;
border: 2px dashed #ccc;
border-radius: 8px;
}
.upload-section h2 {
margin-bottom: 15px;
color: #333;
}
#pdf-upload {
margin-right: 10px;
}
.toolbar {
margin-bottom: 20px;
padding: 10px;
background-color: #f5f5f5;
border-radius: 4px;
display: flex;
justify-content: center;
gap: 10px;
}
.tool-btn {
padding: 8px 16px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}
.tool-btn:hover {
background-color: #45a049;
}
.tool-btn.active {
background-color: #2E7D32;
}
.pdf-text-input {
position: absolute;
font-family: Arial, sans-serif;
font-size: 16px;
background: rgba(255, 255, 255, 0.9);
border: 2px solid #4CAF50;
padding: 4px 8px;
min-width: 120px;
z-index: 1000;
border-radius: 4px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.pdf-text-input:focus {
outline: none;
border-color: #4CAF50;
box-shadow: 0 0 3px rgba(76, 175, 80, 0.5);
}
#pdf-viewer {
border: 1px solid #ddd;
min-height: 500px;
background-color: #f9f9f9;
padding: 20px;
border-radius: 4px;
}
#pdf-container {
margin: 0 auto;
}