Skip to content

Commit c51dadd

Browse files
committed
Website updates
1 parent 068ad56 commit c51dadd

17 files changed

+468
-25
lines changed

dist/en/main/examples/azure-maps.css

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
#auth-interface {
2+
background: #f5f5f5;
3+
padding: 20px;
4+
border-radius: 8px;
5+
margin-bottom: 20px;
6+
}
7+
#map-container {
8+
display: none;
9+
border: 1px solid #ddd;
10+
border-radius: 8px;
11+
overflow: hidden;
12+
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
13+
}
14+
#map {
15+
width: 100%;
16+
height: 500px;
17+
}
18+
.layer-switcher {
19+
display: flex;
20+
gap: 10px;
21+
padding: 15px;
22+
background: #f9f9f9;
23+
border-top: 1px solid #eee;
24+
}
25+
.layer-btn {
26+
padding: 8px 15px;
27+
background: #fff;
28+
border: 1px solid #ddd;
29+
border-radius: 4px;
30+
cursor: pointer;
31+
transition: all 0.2s;
32+
}
33+
.layer-btn:hover {
34+
background: #f0f0f0;
35+
}
36+
.layer-btn.active {
37+
background: #4CAF50;
38+
color: white;
39+
border-color: #4CAF50;
40+
}
41+
#auth-form {
42+
display: flex;
43+
gap: 10px;
44+
}
45+
#secret {
46+
flex: 1;
47+
padding: 10px;
48+
border: 1px solid #ddd;
49+
border-radius: 4px;
50+
}
51+
button[type="submit"] {
52+
padding: 10px 20px;
53+
background: #4CAF50;
54+
color: white;
55+
border: none;
56+
border-radius: 4px;
57+
cursor: pointer;
58+
}

0 commit comments

Comments
 (0)