-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
113 lines (99 loc) · 2.07 KB
/
app.css
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
:root {
--primary-color: #4CAF50;
--secondary-color: #f0f0f0;
--text-color: #333;
--border-color: #ddd;
--button-hover-color: #45a049;
--danger-color: #f44336;
--font-family: 'Nunito', sans-serif;
}
body {
font-family: var(--font-family);
line-height: 1.6;
padding: 2rem;
margin: 0;
background-color: var(--secondary-color);
color: var(--text-color);
}
.signature-pad-form {
max-width: 600px;
margin: 0 auto;
border: 1px solid var(--border-color);
border-radius: 10px;
padding: 20px;
background-color: var(--white-color);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
margin-bottom: 20px;
color: var(--primary-color);
font-size: 1.75rem;
}
.clear-button {
color: var(--danger-color);
cursor: pointer;
margin-top: 10px;
text-decoration: none;
}
.clear-button:hover {
color: darkred;
}
.submit-button {
width: 100%;
background-color: var(--primary-color);
border: none;
padding: 10px 20px;
color: var(--white-color);
cursor: pointer;
margin-top: 20px;
font-size: 1rem;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.submit-button:hover {
background-color: var(--button-hover-color);
}
.canvas-container {
display: flex;
align-items: center;
justify-content: center;
margin-top: 20px;
}
#pdf-canvas {
border: 1px solid var(--border-color);
border-radius: 5px;
display: none;
.tools {
display: flex;
flex-direction: column;
margin-bottom: 20px;
width: 100%;
}
.tools label {
margin-bottom: 5px;
color: var(--text-color);
}
.tools input[type="number"] {
margin-bottom: 20px;
padding: 10px;
border: 1px solid var(--border-color);
border-radius: 5px;
width: 100%;
box-sizing: border-box;
}
button, a {
cursor: pointer;
text-decoration: none;
}
@media(pointer: coarse) {
body {
overflow: hidden;
}
}
.ad-container {
margin-top: 20px;
text-align: center;
}