-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
73 lines (59 loc) · 1.4 KB
/
style.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
/* style.css */
/* Include Tailwind's base styles */
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Custom styles */
/* Error input field */
.input-error {
@apply border-red-500 bg-red-100 dark:bg-red-200 transition-colors duration-300;
}
/* Error message */
.error-message {
@apply text-red-500 text-sm mt-1 hidden;
}
/* Tooltip styling */
.has-tooltip {
position: relative;
}
/* Dark mode adjustments for inputs */
input,
select {
@apply bg-white text-gray-800 border border-gray-300;
}
.dark input,
.dark select {
@apply bg-gray-800 text-gray-200 border-gray-600;
}
/* Ensure table cells have consistent height for better visualization */
#simulationTable td,
#simulationTable th {
@apply h-10;
}
/* Customize disabled buttons for better UX */
button:disabled {
@apply opacity-50 cursor-not-allowed;
}
/* Performance Chart Section Styles */
#performanceChartSection {
/* Optional: Add background color or padding adjustments */
padding: auto;
}
#showChartBtn,
#downloadChartBtn {
/* Optional: Add transition effects */
transition: background-color 0.3s;
}
#showChartBtn:hover,
#downloadChartBtn:hover {
/* Optional: Add hover effects */
background-color: #f3f4f6;
}
/* Page Fault */
.page-fault {
@apply bg-red-200 dark:bg-red-600 text-red-800 dark:text-red-200;
}
/* Page Hit */
.page-hit {
@apply bg-green-200 dark:bg-green-600 text-green-800 dark:text-green-200;
}