polyglot/app/assets/stylesheets/pages/_contacts.scss

198 lines
2.8 KiB
SCSS
Raw Normal View History

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;
}
button {
height: 0;
width: 0;
}
2018-08-28 16:18:58 +00:00
}
}
.video-feed {
padding-top: 67px;
padding-left: 50px;
}
.video-content {
// 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;
}
// Modal
2018-08-28 16:18:58 +00:00
.modal-header {
border-bottom: 0px;
i {
font-size: 50px;
}
}
.modal-color {
background-color: $card-background;
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;
}
.modal-text {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.modal-flex {
display: flex;
flex-wrap: wrap;
}
@media only screen and (max-width: 1100px) {
.modal-picture {
width: 50px;
}
}
// Contact
.contact {
color: white;
}
.contacts {
2018-09-01 17:03:32 +00:00
display: flex;
flex-direction: column;
justify-content: center;
}
2018-09-03 13:10:45 +00:00
.close {
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);
}
.contacts-list{
2018-09-01 18:30:03 +00:00
height: 90vh;
overflow: scroll;
}