Alcime commited on
Commit
c0bfc77
1 Parent(s): 6bb169f

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +143 -24
style.css CHANGED
@@ -1,28 +1,147 @@
1
  body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  }
5
-
6
  h1 {
7
- font-size: 16px;
8
- margin-top: 0;
9
- }
10
-
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
- }
17
-
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
24
- }
25
-
26
- .card p:last-child {
27
- margin-bottom: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  }
 
 
 
 
 
 
1
  body {
2
+ font-family: 'Roboto', sans-serif;
3
+ line-height: 1.6;
4
+ color: #333;
5
+ background-color: #f0f4f8;
6
+ margin: 0;
7
+ padding: 0;
8
+ }
9
+ .container {
10
+ max-width: 1200px;
11
+ margin: 0 auto;
12
+ padding: 40px 20px;
13
+ }
14
+ header {
15
+ background-color: #2c3e50;
16
+ color: white;
17
+ text-align: center;
18
+ padding: 60px 0;
19
+ margin-bottom: 40px;
20
  }
 
21
  h1 {
22
+ font-size: 2.5em;
23
+ margin: 0;
24
+ text-transform: uppercase;
25
+ letter-spacing: 2px;
26
+ }
27
+ .subtitle {
28
+ font-size: 1.2em;
29
+ font-weight: 300;
30
+ margin-top: 10px;
31
+ }
32
+ .gallery {
33
+ display: grid;
34
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
35
+ gap: 30px;
36
+ }
37
+ .map-item {
38
+ background-color: white;
39
+ border-radius: 10px;
40
+ overflow: hidden;
41
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
42
+ transition: all 0.3s ease;
43
+ display: flex;
44
+ flex-direction: column;
45
+ }
46
+ .map-item:hover {
47
+ transform: translateY(-10px);
48
+ box-shadow: 0 15px 30px rgba(0,0,0,0.2);
49
+ }
50
+ .map-preview {
51
+ position: relative;
52
+ height: 200px;
53
+ overflow: hidden;
54
+ flex: 1;
55
+ min-height: 200px;
56
+ }
57
+ .map-preview iframe {
58
+ width: 100%;
59
+ height: 100%;
60
+ border: none;
61
+ pointer-events: none;
62
+ }
63
+ .map-overlay {
64
+ position: absolute;
65
+ top: 0;
66
+ left: 0;
67
+ width: 100%;
68
+ height: 100%;
69
+ background: rgba(44, 62, 80, 0.7);
70
+ display: flex;
71
+ align-items: center;
72
+ justify-content: center;
73
+ opacity: 0;
74
+ transition: opacity 0.3s ease;
75
+ }
76
+ .map-item:hover .map-overlay {
77
+ opacity: 1;
78
+ }
79
+ .view-button {
80
+ padding: 10px 20px;
81
+ background-color: #e74c3c;
82
+ color: white;
83
+ text-decoration: none;
84
+ border-radius: 5px;
85
+ font-weight: bold;
86
+ text-transform: uppercase;
87
+ transition: background-color 0.3s ease;
88
+ }
89
+ .view-button:hover {
90
+ background-color: #c0392b;
91
+ }
92
+ .map-info {
93
+ padding: 20px;
94
+ }
95
+ .map-info h2 {
96
+ margin: 0 0 10px 0;
97
+ color: #2c3e50;
98
+ font-size: 1.4em;
99
+ }
100
+ .map-info p {
101
+ margin: 0;
102
+ color: #7f8c8d;
103
+ font-size: 0.9em;
104
+ }
105
+ .stats {
106
+ background-color: #f8f9fa;
107
+ padding: 10px;
108
+ font-size: 0.9em;
109
+ border-top: 1px solid #e9ecef;
110
+ }
111
+ .stats p {
112
+ margin: 5px 0;
113
+ }
114
+ .modal {
115
+ display: none;
116
+ position: fixed;
117
+ z-index: 1000;
118
+ left: 0;
119
+ top: 0;
120
+ width: 100%;
121
+ height: 100%;
122
+ background-color: rgba(0,0,0,0.8);
123
+ }
124
+ .modal-content {
125
+ position: relative;
126
+ width: 90%;
127
+ height: 90%;
128
+ margin: 2% auto;
129
+ background-color: #fff;
130
+ border-radius: 10px;
131
+ overflow: hidden;
132
+ }
133
+ .close-modal {
134
+ position: absolute;
135
+ top: 10px;
136
+ right: 20px;
137
+ color: #fff;
138
+ font-size: 30px;
139
+ font-weight: bold;
140
+ cursor: pointer;
141
+ z-index: 1001;
142
  }
143
+ .modal iframe {
144
+ width: 100%;
145
+ height: 100%;
146
+ border: none;
147
+ }