-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (44 loc) · 927 Bytes
/
style.css
File metadata and controls
53 lines (44 loc) · 927 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
45
46
47
48
49
50
51
52
body {
font-family: 'Poppins', Arial, sans-serif;
text-align: center;
background-color: #f8f9fa;
color: #333;
}
h1 {
font-size: 2rem;
margin-bottom: 20px;
}
table {
width: 80%;
margin: auto;
border-collapse: collapse;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
background: white;
border-radius: 8px;
overflow: hidden;
}
th, td {
padding: 12px;
border: 1px solid #ddd;
}
th {
background-color: #007bff;
color: white;
font-weight: bold;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
tr:hover {
background-color: #d6e4f0;
}
img {
width: 150px; /* Increase the width */
height: auto; /* Maintain aspect ratio */
border-radius: 4px;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
transition: transform 0.2s ease-in-out; /* Add a slight zoom effect */
}
img:hover {
transform: scale(2); /* Slight zoom on hover */
}