-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmap-pg.css
More file actions
119 lines (100 loc) · 1.71 KB
/
Copy pathmap-pg.css
File metadata and controls
119 lines (100 loc) · 1.71 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
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
*{
margin: 0;
padding: 0;
}
body{
background-color: #333;
}
.mapdiv{
width: 38%;
margin: auto;
margin-top: 100px;
}
svg path{
cursor: pointer;
stroke:rgb(255, 255, 255);
fill: darkgreen;
}
svg path:hover{
fill:#ff3c78;
fill-opacity: 0.7;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*, *::before, *::after{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
font-family: "Poppins", sans-serif;
}
.logo{
width: 150px;
}
header{
width: 100%;
position: absolute;
z-index: 9999;
padding: 0.9rem 0;
top: 0;
left: 0;
border-bottom: 1px solid rgba(255,255,255,0.1);
}
header nav{
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
justify-content: space-between;
}
header ul{
display: flex;
align-items: center;
}
header ul a{
text-decoration: none;
color: #353;
padding: 0 1.5em;
text-transform: uppercase;
font-weight: 300;
font-size: 0.83rem;
position: relative;
font-family: 'Poppins',sans-serif;
letter-spacing: 0.5px;
}
header ul a:after{
content: "";
position: absolute;
background-color: #ff3c78;
height: 3px;
width: 0;
left: 0;
bottom: -10px;
transition: 0.3s;
}
header ul a:hover{
color: #333;
}
a:hover:after{
width: 100%;
}
main{
height: 100vh;
width: 100vw;
overflow: hidden;
position: relative;
}
.bg-img{
position: absolute;
width: 2000px;
top: calc(50% - 90px);
left: calc(50% + 10px);
transform: translate(-50%, -50%);
z-index: -1;
}
footer {
padding: 20px;
text-align: center;
color: #353;
margin: 10px;
}