-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
105 lines (85 loc) · 2.08 KB
/
styles.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
/* Custom styles for boxed content */
.container-boxed {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px; /* Add padding on left and right */
}
.otp-display {
font-weight: bold;
font-family: monospace;
}
/* Table mobile responsiveness */
@media (max-width: 767px) {
.container-boxed {
padding: 0 20px; /* Add extra padding on mobile */
}
.table-responsive {
overflow-x: auto;
}
.table th, .table td {
font-size: 12px; /* Smaller font size on mobile */
white-space: nowrap; /* Prevent text from wrapping */
}
.table td button {
font-size: 10px; /* Smaller button size on mobile */
}
/* Make form inputs and buttons larger on mobile */
.form-control {
font-size: 14px;
}
.btn {
font-size: 14px;
padding: 8px 12px;
}
}
/* Responsive adjustments */
@media (max-width: 767px) {
.row .col-12 {
padding: 0 15px;
}
.form-control {
font-size: 14px;
}
.btn {
font-size: 14px;
padding: 8px 12px;
}
}
body {
background-color: #f4f4f4;
color: #343a40;
}
.navbar, .footer {
// background-color: #ffffff;
// border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn-copy {
color: #6c757d;
transition: color 0.2s;
}
.btn-copy.copied {
color: #28a745;
}
.modal-content {
background-color: #f8f9fa;
color: #343a40;
border-radius: 10px;
}
.table-hover tbody tr:hover {
background-color: #e9ecef;
}
.pagination {
justify-content: flex-end;
}
.modal-dialog {
max-width: 500px;
}
.modal .row > div {
padding-top: 10px;
}
/* Ensure tooltip can grow dynamically */
.tooltip-inner {
max-width: none; /* Disable Bootstrap's default max-width */
white-space: nowrap; /* Prevent text wrapping */
}