-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdummy.css
More file actions
50 lines (42 loc) · 1.07 KB
/
dummy.css
File metadata and controls
50 lines (42 loc) · 1.07 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
/* soldier-details.css */
.marker-content {
display: none;
width: 30vw;
height: 70vh;
background-color: white;
margin-top: -80vh;
z-index: 10000;
position: relative;
left: 100%;
transition: left 0.5s ease-in-out;
border: none; /* Remove any border by default */
}
.marker-content.slide-in {
left: 65vw;
}
.marker-content.slide-in {
border: none; /* Remove border when detail section slides in */
}
.soldier-details {
background-color: lightblue;
border: 2px solid #ccc;
border-radius: 5px;
padding: 20px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
text-align: center;
}
.soldier-details img {
width: 350px; /* Adjust the width as needed */
height: 250px;
border-radius: 20%; /* To make the image circular */
margin-bottom: 15px;
}
.soldier-details h1,
.soldier-details h2 {
margin-bottom: 10px;
}
.soldier-details p {
margin: 5px 0;
font-weight: bold;
}
/* You can add more styles as needed */