Spaces:
Running
Running
File size: 2,716 Bytes
36b33f4 c0bfc77 36b33f4 c0bfc77 36b33f4 c0bfc77 |
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 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 |
body {
font-family: 'Roboto', sans-serif;
line-height: 1.6;
color: #333;
background-color: #f0f4f8;
margin: 0;
padding: 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 40px 20px;
}
header {
background-color: #2c3e50;
color: white;
text-align: center;
padding: 60px 0;
margin-bottom: 40px;
}
h1 {
font-size: 2.5em;
margin: 0;
text-transform: uppercase;
letter-spacing: 2px;
}
.subtitle {
font-size: 1.2em;
font-weight: 300;
margin-top: 10px;
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.map-item {
background-color: white;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
transition: all 0.3s ease;
display: flex;
flex-direction: column;
}
.map-item:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
.map-preview {
position: relative;
height: 200px;
overflow: hidden;
flex: 1;
min-height: 200px;
}
.map-preview iframe {
width: 100%;
height: 100%;
border: none;
pointer-events: none;
}
.map-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(44, 62, 80, 0.7);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s ease;
}
.map-item:hover .map-overlay {
opacity: 1;
}
.view-button {
padding: 10px 20px;
background-color: #e74c3c;
color: white;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
text-transform: uppercase;
transition: background-color 0.3s ease;
}
.view-button:hover {
background-color: #c0392b;
}
.map-info {
padding: 20px;
}
.map-info h2 {
margin: 0 0 10px 0;
color: #2c3e50;
font-size: 1.4em;
}
.map-info p {
margin: 0;
color: #7f8c8d;
font-size: 0.9em;
}
.stats {
background-color: #f8f9fa;
padding: 10px;
font-size: 0.9em;
border-top: 1px solid #e9ecef;
}
.stats p {
margin: 5px 0;
}
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.8);
}
.modal-content {
position: relative;
width: 90%;
height: 90%;
margin: 2% auto;
background-color: #fff;
border-radius: 10px;
overflow: hidden;
}
.close-modal {
position: absolute;
top: 10px;
right: 20px;
color: #fff;
font-size: 30px;
font-weight: bold;
cursor: pointer;
z-index: 1001;
}
.modal iframe {
width: 100%;
height: 100%;
border: none;
} |