You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
535 B
CSS
34 lines
535 B
CSS
4 years ago
|
:root{
|
||
|
font-family: Arial, Helvetica, sans-serif;
|
||
|
--background-color: white
|
||
|
}
|
||
|
|
||
|
body{
|
||
|
margin: 0 ;
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
background-color: var(--background-color);
|
||
|
background-image: url('map.png');
|
||
|
background-size: 100%;
|
||
|
background-repeat: no-repeat;
|
||
|
height: auto;
|
||
|
overflow: hidden;
|
||
|
/* filter: invert(); */
|
||
|
|
||
|
}
|
||
|
|
||
|
#pic{width: 100px;}
|
||
|
|
||
|
|
||
|
|
||
|
.pic{width: 100px;}
|
||
|
|
||
|
#container{z-index: 1;}
|
||
|
#background{z-index: 0;}
|
||
|
|
||
|
#map{width: 100%;
|
||
|
height: auto;}
|
||
|
|
||
|
p:hover{box-shadow: 0px 0px 40px black}
|
||
|
|