-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
102 lines (93 loc) · 1.74 KB
/
Copy pathstyles.css
File metadata and controls
102 lines (93 loc) · 1.74 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
102
.pdf-upload-title,
.api-key-title {
text-align: center;
}
/* Conteneur principal */
.pdf-upload-container {
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
padding: 1.5rem;
border-radius: 10px;
max-width: 500px;
margin: auto;
}
.api-key-container {
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
padding: 1.5rem;
border-radius: 10px;
max-width: 500px;
margin: auto;
}
/* Conteneur des inputs */
.pdf-input-container {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
width: 100%;
gap: 1rem;
}
/* Styles des inputs */
.api-key-input,
.pdf-upload-input,
.folder-upload-input {
flex-grow: 1;
padding: 0.5rem;
border-radius: 4px;
font-size: 14px;
text-align: center;
cursor: pointer;
display: block;
width: 100%;
}
.pdf-upload-input::file-selector-button {
background-color: #007bff;
color: white;
border: none;
padding: 0.5rem;
border-radius: 4px;
font-size: 14px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.pdf-upload-input::file-selector-button:hover {
background-color: #0056b3;
}
.folder-upload-input::placeholder {
text-align: center;
color: #666;
}
/* Style du bouton */
.pdf-upload-button {
background-color: #007bff;
color: white;
border: none;
padding: 0.75rem 1.5rem;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
width: 100%;
text-align: center;
}
.api-key-button {
background-color: #007bff;
color: white;
border: none;
padding: 0.75rem 1.5rem;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
width: 60%;
text-align: center;
}
.api-key-button:hover,
.pdf-upload-button:hover {
background-color: #0056b3;
}