mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-05-15 18:55:56 +00:00

* CSS corrections * HTML corrections * JS corrections * JAVA corrections * remove tab * CSS corrections 2 * JS corrections 2 * back to the roots * max-linie 127 * add slash hr|br * return bootstrap-icons.css * return bootstrap-icons.min.css * return bootstrap.min.css * Update bootstrap-icons.css * Update bootstrap-icons.min.css * Update bootstrap-icons.min.css * Update bootstrap.min.css * CSS corrections * HTML corrections * JS corrections * JAVA corrections * remove tab * CSS corrections 2 * JS corrections 2 * back to the roots * max-linie 127 * add slash hr|br * return bootstrap-icons.css * Update bootstrap-icons.css * Bootstrap CSS * Update prism.css
40 lines
693 B
CSS
40 lines
693 B
CSS
select#font-select,
|
|
select#font-select option {
|
|
height: 60px; /* Adjust as needed */
|
|
font-size: 30px; /* Adjust as needed */
|
|
}
|
|
|
|
.drawing-pad-container {
|
|
text-align: center;
|
|
}
|
|
|
|
#drawing-pad-canvas {
|
|
background: rgba(125, 125, 125, 0.2);
|
|
width: 100%;
|
|
height: 300px;
|
|
}
|
|
#box-drag-container {
|
|
position: relative;
|
|
margin: 20px 0;
|
|
}
|
|
.draggable-buttons-box {
|
|
position: absolute;
|
|
top: 0;
|
|
padding: 10px;
|
|
width: 100%;
|
|
display: flex;
|
|
gap: 5px;
|
|
}
|
|
.draggable-buttons-box > button {
|
|
z-index: 10;
|
|
background-color: rgba(13, 110, 253, 0.1);
|
|
}
|
|
.draggable-canvas {
|
|
border: 1px solid red;
|
|
position: absolute;
|
|
touch-action: none;
|
|
user-select: none;
|
|
top: 0px;
|
|
left: 0;
|
|
}
|