Skip to content
Snippets Groups Projects
maps.component.scss 1.64 KiB
Newer Older
#map{
	width:700px;
	height:100%;
	max-height:600px;
	display:inline-block;
	vertical-align: top;
}
.row {
    display: table;
    margin:5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hospital-selector{
	background-color:rgba(0,0,0,0.1);
	height:100%;
	max-height:600px;
	overflow:auto;
	display:inline-block;
	vertical-align: top;
	padding:5px;
}
.row-hospital-selector{
	height:600px;
	overflow:hidden;
}

[class*="col-"] {
    float: none;
    display: table-cell;
    vertical-align: top;
    padding:5px;
    min-width:100px;
}

.arrow_box {
    position: relative;
    background: #fff;
    border: 1px solid #003c88;
}
.arrow_box:after, .arrow_box:before {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.arrow_box:after {
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #fff;
    border-width: 10px;
    margin-left: -10px;
}
.arrow_box:before {
    border-color: rgba(153, 153, 153, 0);
    border-top-color: #003c88;
    border-width: 11px;
    margin-left: -11px;
}

.arrow_box {
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 50px;
}


Luiz Fernando A. Vasconcellos's avatar
Luiz Fernando A. Vasconcellos committed
@import '../../sass/styles';

ul.breadcrumb {
    padding: 10px 16px;
    list-style: none;
    background-color: #eee;
}
ul.breadcrumb li {
    display: inline;
    font-size: 18px;
ul.breadcrumb li+li:before {
    padding: 8px;
    color: black;
    content: "/\00a0";
ul.breadcrumb li a {
    color: #0275d8;
    text-decoration: none;
}
ul.breadcrumb li a:hover {
    color: #01447e;
    text-decoration: underline;
}

a:hover{
	cursor:pointer;
}