mapPage_style.css 1.39 KB

*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body{
    background-color: #fff;
}
.nav-bar
{
    position: relative;
    background: rgb(0,0,0,0.5);
    height: 80px;
}

.logo{
    margin: 10px 50px;
    height: 60px;
}

.menu{
    float: right;
    list-style: none;
    margin:20px;
}

.menu li{
    display: inline-block;
    margin: 10px 5px;
}

.menu li a{
    text-decoration: none;
    color: #fff;
    padding: 5px 10px;
    font-family: sans-serif;
    letter-spacing: 2px;
    border: 1px solid #fff;
}

.menu li a:hover{
    background: #fff;
    transition: .4s;
    color: #000;
}

.welcome{
    position: absolute;
    font-size: 30px;
    width: 100%;
    height: 50px;
    margin-top: 40px;

    text-align:center;
    font-family: sans-serif;
    color:#000;
}
.map-box{
    width:100%
}
.empty-box{
    position:absolute;
    bottom:0%;
}
table{
    position: absolute;
    z-index: 2;
    left:50%;
    top: 150vh;
    transform: translate(-50%,-50%);
    width: 70%;
    border-collapse: collapse;
    border-spacing: 0;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    background: #fafafa;
    text-align: center;
}
th,td{
    padding:12px 15px;
}
th{
    background: #303f9f;
    color: #fafafa;
    text-transform: uppercase;
}

tr:nth-child(odd){
    background-color: #eeeeee;
}

.box1{
    float: left;
}
.box2{
    float: right;
}