-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage_custom.css
107 lines (93 loc) · 2.66 KB
/
page_custom.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
103
104
105
106
107
/* Neomorphic Theme for h1#bkmrk-page-title */
h1#bkmrk-page-title {
font-size: 2.5rem;
color: #1dbf72;
text-align: center;
margin: 40px 0;
text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}
/* Neomorphic Table Styling */
table {
width: 100%;
border-collapse: collapse;
margin: 20px auto;
background-color: #e0e0e0;
border-radius: 12px;
box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.1), -8px -8px 15px rgba(255, 255, 255, 0.7);
overflow: hidden;
transition: box-shadow 0.3s ease-in-out;
}
/* Table Hover Effect */
table:hover {
box-shadow: 12px 12px 20px rgba(0, 0, 0, 0.15), -12px -12px 20px rgba(255, 255, 255, 0.8);
}
/* Table Header Styling */
th, td {
padding: 15px;
text-align: left;
border-bottom: 1px solid #e2e2e2;
font-size: 1rem;
color: #555;
transition: background-color 0.3s, transform 0.2s ease-in-out;
background-color: #f5f5f5;
box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.1), inset -5px -5px 10px rgba(255, 255, 255, 0.7);
}
/* Table Header (th) Styling */
th {
background-color: #1dbf72;
color: #fff;
font-weight: bold;
box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.1), inset -5px -5px 10px rgba(255, 255, 255, 0.7);
}
/* Hover Effects for Header and Table Cells */
th:hover {
background-color: #159e5a;
cursor: pointer;
box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.15), inset -5px -5px 10px rgba(255, 255, 255, 0.75);
}
td:hover {
background-color: #e0f7e6;
transform: scale(1.02);
box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.15), inset -5px -5px 10px rgba(255, 255, 255, 0.75);
}
/* Row hover effect */
tr:hover td {
background-color: #f1fdf5;
}
/* Specific Styling for colspan="5" cells */
td[colspan="5"] {
background-color: #e0f7e6;
text-align: center;
font-size: 1.1rem;
font-weight: bold;
color: #1dbf72;
transition: background-color 0.3s;
box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.1), inset -5px -5px 10px rgba(255, 255, 255, 0.7);
}
tr:first-child td[colspan="5"],
tr:last-child td[colspan="5"] {
background-color: #fff;
color: #333;
}
/* Styling for first and last rows */
tr:first-child th {
border-top-left-radius: 12px;
border-top-right-radius: 12px;
}
tr:last-child td {
border-bottom-left-radius: 12px;
border-bottom-right-radius: 12px;
}
/* Table for specific sections (tables within tables) */
table td, table th {
text-align: center;
}
/* Responsive Design */
@media (max-width: 768px) {
table {
font-size: 0.9rem;
}
td, th {
padding: 10px;
}
}