-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
150 lines (132 loc) · 2.16 KB
/
style.css
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
148
149
150
/*------------style.css--------*/
.dancemap {
background-color: #01171b;
}
svg path {
fill: #00394f;
stroke: #eee;
stroke-width: .25;
}
svg path:hover{
fill: #006284;
transition: .6s;
cursor: pointer;
}
#navbar {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px;
}
/* Styling for the footer */
#footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px;
position: absolute;
bottom: 0;
width: 100%;
}
circle {
transition: fill 0.3s ease, r 0.3s ease, transform 0.1s ease; /* Add transition for radius and transform */
transform-origin: center; /* Set the transform origin to the center of the circle */
}
/* Style the country labels */
.label {
display: none;
position: absolute;
background: rgba(255, 255, 255, 0.8);
padding: 5px;
border: 1px solid #000;
border-radius: 3px;
}
path.country {
pointer-events: none;
}
body {
font-family: Arial, sans-serif;
background-color: #000;
color: #fff;
margin: 0;
padding: 0;
}
header {
background-color: #000000;
text-align: center;
padding: 20px 0;
}
h1 {
font-size: 36px;
margin: 0;
}
.container {
max-width: 1000px;
margin: 0px auto;
background-color: #240808;
padding: 40px;
border-radius: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
img {
max-width: 60%;
display: block;
margin: 0 auto;
}
p {
font-size: 18px;
line-height: 1.5;
text-align: justify;
}
.nav-container {
background-color: #0c0707; /* Green background color */
padding: 10px 0;
}
.logo {
margin: 0;
font-size: 36px;
color: #fff;
}
.nav-links {
list-style: none;
padding: 0;
margin: 0;
display: flex;
}
.nav-links li {
margin-right: 20px;
}
.nav-links a {
text-decoration: none;
color: #fff;
font-weight: bold;
transition: color 0.3s;
}
.nav-links a:hover {
color: #ff5b60;
}
.color-key {
margin: 10px;
padding: 10px;
border: 1px solid #000;
border-radius: 5px;
}
.color-item {
display: flex;
align-items: center;
margin-bottom: 5px;
}
.color-swatch {
width: 20px;
height: 20px;
margin-right: 10px;
border: 1px solid #000;
}
.color-label {
font-weight: bold;
}
.label {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}