-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
73 lines (61 loc) · 1.02 KB
/
Copy pathstyles.css
File metadata and controls
73 lines (61 loc) · 1.02 KB
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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #0700C4;
color: white;
text-align: center;
padding: 1rem;
}
main {
padding: 20px;
}
.photo-selection {
text-align: center;
}
.photo-grid {
display: flex;
flex-direction: column;
align-items: center;
margin: 20px 0;
}
.photo-card {
margin: 10px 0;
cursor: pointer;
transition: transform 0.2s;
}
.photo-card:hover {
transform: scale(1.05);
}
.photo-card img {
width: 300px; /* Fixed width for uniformity */
border-radius: 8px;
border: 2px solid #ddd;
}
.selected-photo {
margin-top: 20px;
}
.result-table {
margin-top: 20px;
}
table {
width: 100%;
border-collapse: collapse;
}
th, td {
border: 1px solid #ddd;
padding: 8px;
text-align: center;
}
footer {
text-align: center;
background-color: #0700C4;
color: white;
padding: 10px 0;
position: relative;
bottom: 0;
width: 100%;
}