-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
44 lines (41 loc) · 1020 Bytes
/
styles.css
File metadata and controls
44 lines (41 loc) · 1020 Bytes
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
#pdf_viewer {
overflow: auto;
padding: 10px;
}
.scrollable-textbox textarea {
height: 300px !important;
overflow-y: auto !important;
}
.gradio-container {
background-color: #f9f9f9; /* Light background for a clean look */
border-radius: 8px; /* Rounded corners */
padding: 20px; /* Inner padding */
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}
.gr-button:hover {
background-color: #5BA700; /* Darker green on hover */
}
.cost {
position: relative;
display: inline-block;
}
.tooltip {
visibility: hidden;
width: 280px;
background-color: #555;
color: #fff;
text-align: left;
border-radius: 5px;
padding: 5px;
position: absolute;
z-index: 1;
top: 125%; /* Position above the cost */
left: 50%;
margin-left: -100px; /* Center the tooltip */
opacity: 0;
transition: opacity 0.3s;
}
.cost:hover .tooltip {
visibility: visible;
opacity: 1;
}