Template
Map Location/styles.css
From Dogcraft Wiki
(created) |
No edit summary |
||
(20 intermediate revisions by the same user not shown) | |||
Line 6: | Line 6: | ||
object-position: top; | object-position: top; | ||
position: static; | position: static; | ||
border-radius: 10px; | |||
} | |||
#map-inner-container{ | |||
position: relative; | |||
height: 500px; | |||
} | |||
#coord-text{ | |||
width: 500px; | |||
text-align: center; | |||
} | } | ||
#map-outer-container{ | #map-outer-container{ | ||
position: relative; | position: relative; | ||
} | |||
#map-outer-container a.external{ | |||
width: 100%; | |||
height: 100%; | |||
display: block; | |||
position: absolute; | |||
top: 0; | |||
left: 0; | |||
z-index: 100; | |||
font-size: 0; | |||
border-radius: 10px; | |||
text-align: center; | |||
line-height: 500px; | |||
transition: 0.5s; | |||
} | |||
#map-outer-container a.external:hover{ | |||
background-color: #00000044; | |||
font-size: 25px; | |||
font-weight: bold; | |||
color: white; | |||
text-decoration: none; | |||
} | } |
Latest revision as of 19:10, 8 February 2024
#map-container img{
width: 500px;
height: 500px;
float: left;
object-fit: cover;
object-position: top;
position: static;
border-radius: 10px;
}
#map-inner-container{
position: relative;
height: 500px;
}
#coord-text{
width: 500px;
text-align: center;
}
#map-outer-container{
position: relative;
}
#map-outer-container a.external{
width: 100%;
height: 100%;
display: block;
position: absolute;
top: 0;
left: 0;
z-index: 100;
font-size: 0;
border-radius: 10px;
text-align: center;
line-height: 500px;
transition: 0.5s;
}
#map-outer-container a.external:hover{
background-color: #00000044;
font-size: 25px;
font-weight: bold;
color: white;
text-decoration: none;
}