2018-08-28 16:18:58 +00:00
|
|
|
a:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2018-08-31 14:06:42 +00:00
|
|
|
.contacts-header {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
a {
|
2018-09-03 13:10:45 +00:00
|
|
|
align-self: center;
|
|
|
|
margin-top: 19px;
|
2018-08-31 14:06:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-28 16:18:58 +00:00
|
|
|
.card {
|
2018-09-01 17:03:32 +00:00
|
|
|
min-width: 360px;
|
2018-08-28 16:18:58 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
background: $card-background;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
|
|
border-radius: 5px;
|
|
|
|
box-shadow: 1px 1px 15px 1px rgba(0, 0, 0, 0.2);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
box-shadow: inset 0px 0px 0px 2px $primary;
|
|
|
|
}
|
|
|
|
|
|
|
|
.info {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
.text {
|
|
|
|
p {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.darker {
|
|
|
|
color: $text-darker;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.profile {
|
|
|
|
margin-left: 15px;
|
|
|
|
margin-right: 15px;
|
|
|
|
margin-top: 15px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
img {
|
|
|
|
width: 50px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.call {
|
|
|
|
margin-left: 20px;
|
|
|
|
margin-right: 20px;
|
|
|
|
transform: scaleX(-1);
|
|
|
|
-moz-transform: scaleX(-1);
|
|
|
|
-webkit-transform: scaleX(-1);
|
|
|
|
-ms-transform: scaleX(-1);
|
|
|
|
i {
|
|
|
|
color: $icon;
|
|
|
|
font-size: 25px;
|
|
|
|
}
|
2018-08-30 02:00:09 +00:00
|
|
|
button {
|
|
|
|
height: 0;
|
|
|
|
width: 0;
|
|
|
|
}
|
2018-08-28 16:18:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-feed {
|
|
|
|
padding-top: 67px;
|
|
|
|
padding-left: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-content {
|
2018-09-01 16:36:46 +00:00
|
|
|
// height: 485px;
|
|
|
|
|
|
|
|
padding-left: 0.2vw;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
.flex-video {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
2018-08-31 14:49:10 +00:00
|
|
|
// background-color: black;
|
2018-08-28 16:18:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.half {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-color {
|
2018-08-28 19:36:56 +00:00
|
|
|
color: white !important;
|
2018-08-28 16:18:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.contacts-container {
|
|
|
|
display:flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2018-09-03 09:25:20 +00:00
|
|
|
// Modal
|
|
|
|
|
2018-08-28 16:18:58 +00:00
|
|
|
.modal-header {
|
|
|
|
border-bottom: 0px;
|
|
|
|
i {
|
|
|
|
font-size: 50px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-color {
|
|
|
|
background-color: $card-background;
|
2018-09-03 09:25:20 +00:00
|
|
|
min-width: 296px;
|
2018-08-28 16:18:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.vertical-alignment-helper {
|
|
|
|
display:table;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.vertical-align-center {
|
|
|
|
/* To center vertically */
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
.modal-content {
|
|
|
|
/* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
|
|
|
|
width:35%;
|
|
|
|
height:inherit;
|
|
|
|
/* To center horizontally */
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-container {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
2018-09-03 17:32:03 +00:00
|
|
|
flex-wrap: wrap;
|
2018-08-28 16:18:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.modal-text {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2018-08-31 09:54:11 +00:00
|
|
|
|
2018-09-03 09:25:20 +00:00
|
|
|
@media only screen and (max-width: 1100px) {
|
|
|
|
.modal-picture {
|
|
|
|
width: 50px;
|
|
|
|
}
|
|
|
|
}
|
2018-08-31 09:54:11 +00:00
|
|
|
|
|
|
|
|
2018-09-03 09:25:20 +00:00
|
|
|
// Contact
|
2018-08-31 09:54:11 +00:00
|
|
|
|
|
|
|
.contact {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.contacts {
|
2018-09-01 17:03:32 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2018-09-06 10:08:08 +00:00
|
|
|
// justify-content: center;
|
|
|
|
|
|
|
|
height: calc(100vh - 3.5em);
|
2018-08-31 09:54:11 +00:00
|
|
|
}
|
|
|
|
|
2018-09-03 17:59:32 +00:00
|
|
|
.close-location {
|
2018-09-03 13:10:45 +00:00
|
|
|
margin-right: 8px;
|
|
|
|
margin-top: -46px;
|
|
|
|
float: right;
|
|
|
|
font-size: 27px;
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 1;
|
|
|
|
color: #F55E4F;
|
|
|
|
text-shadow: 0 1px 0 #000;
|
|
|
|
opacity: 0.8;
|
|
|
|
filter: alpha(opacity=20);
|
|
|
|
}
|
|
|
|
|
2018-09-01 16:36:46 +00:00
|
|
|
.contacts-list{
|
|
|
|
overflow: scroll;
|
2018-09-06 10:08:08 +00:00
|
|
|
overflow-x: hidden;
|
2018-09-01 16:36:46 +00:00
|
|
|
}
|
2018-08-31 09:54:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|