2019-10-24 10:07:30 +09:00
|
|
|
@charset 'utf-8';
|
2020-01-23 15:56:24 +09:00
|
|
|
$tablet-l-width: 1024px;
|
2019-09-26 14:38:21 +09:00
|
|
|
.container {
|
|
|
|
display: flex;
|
2019-10-21 13:20:14 +09:00
|
|
|
flex-direction: column;
|
2019-09-26 14:38:21 +09:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
flex: 1;
|
2020-01-23 15:56:24 +09:00
|
|
|
padding: 0 2vw 2vh;
|
2019-10-21 13:20:14 +09:00
|
|
|
.add-option {
|
|
|
|
display: inline-flex;
|
|
|
|
margin-right: 20px;
|
2020-01-20 18:54:24 +09:00
|
|
|
justify-items: center;
|
|
|
|
width: 80px;
|
|
|
|
justify-content: space-between;
|
2020-01-23 15:56:24 +09:00
|
|
|
@media screen and (max-width: #{$tablet-l-width}), (max-height: 800px) {
|
|
|
|
margin-right: 10px;
|
2019-10-21 13:20:14 +09:00
|
|
|
}
|
2020-01-20 18:54:24 +09:00
|
|
|
button {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
2020-01-23 15:56:24 +09:00
|
|
|
line-height: normal;
|
|
|
|
|
|
|
|
.mat-icon {
|
|
|
|
font-size: 20px;
|
|
|
|
color: rgb(0, 0, 0, 0.87);
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
text-align: center;
|
|
|
|
&:hover {
|
|
|
|
color: rgb(0, 0, 0, 0.6);
|
|
|
|
background-color: #efefef;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-20 18:54:24 +09:00
|
|
|
svg {
|
2020-01-23 15:56:24 +09:00
|
|
|
fill: rgb(0, 0, 0, 0.87);
|
2020-01-20 18:54:24 +09:00
|
|
|
}
|
|
|
|
}
|
2019-10-21 13:20:14 +09:00
|
|
|
}
|
|
|
|
}
|
2019-12-17 09:18:48 +09:00
|
|
|
textarea[name='message'] {
|
2020-01-10 12:10:07 +09:00
|
|
|
min-height: 2em;
|
|
|
|
line-height: 1.2em;
|
|
|
|
font-size: 0.9em;
|
2019-12-17 09:18:48 +09:00
|
|
|
}
|
2020-01-28 20:50:52 +09:00
|
|
|
.mat-form-field-flex {
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
2019-12-17 09:18:48 +09:00
|
|
|
.mat-form-field-underline {
|
|
|
|
background-color: none;
|
2020-01-28 20:50:52 +09:00
|
|
|
transform: scaleY(0);
|
2019-10-21 13:20:14 +09:00
|
|
|
}
|
2020-01-08 20:42:14 +09:00
|
|
|
::ng-deep .send-message-button {
|
2019-10-21 13:20:14 +09:00
|
|
|
margin-left: 20px;
|
2020-01-23 15:56:24 +09:00
|
|
|
@media screen and (max-width: #{$tablet-l-width}), (max-height: 800px) {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
2020-01-08 20:42:14 +09:00
|
|
|
.mat-button-wrapper {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
justify-items: center;
|
|
|
|
}
|
2019-12-17 09:18:48 +09:00
|
|
|
i {
|
2019-10-21 13:20:14 +09:00
|
|
|
display: inline-block;
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
border-radius: 50%;
|
2019-12-17 09:18:48 +09:00
|
|
|
line-height: 40px;
|
2019-10-21 13:20:14 +09:00
|
|
|
font-size: 20px;
|
|
|
|
color: #ffffff;
|
2019-12-17 09:18:48 +09:00
|
|
|
&:hover {
|
2019-10-24 10:07:30 +09:00
|
|
|
opacity: 0.8;
|
2019-10-21 13:20:14 +09:00
|
|
|
}
|
|
|
|
}
|
2019-09-23 14:23:24 +09:00
|
|
|
}
|