jiti-meet/css/deep-linking/_mobile.scss

138 lines
2.8 KiB
SCSS
Raw Normal View History

.deep-linking-mobile {
2016-12-22 12:50:20 +00:00
background-color: #fff;
height: 100vh;
overflow: auto;
position: relative;
2017-01-13 22:37:53 +00:00
width: 100vw;
2016-12-22 12:50:20 +00:00
.header {
width: 100%;
height: 70px;
background-color: #f1f2f5;
text-align: center;
.logo {
margin-top: 15px;
margin-left: auto;
margin-right: auto;
height: 40px;
}
}
a {
text-decoration: none
}
2016-12-22 12:50:20 +00:00
&__body {
2017-01-19 15:47:22 +00:00
color: $unsupportedBrowserTextColor;
2016-12-22 12:50:20 +00:00
margin: auto;
max-width: 40em;
padding: 35px 0 40px 0;
2016-12-22 12:50:20 +00:00
text-align: center;
width: 90%;
2016-12-23 16:21:51 +00:00
a:active {
text-decoration: none;
}
.image {
max-width: 80%;
}
}
&__text {
font-weight: bolder;
padding: 10px 10px 0px 10px;
2016-12-22 12:50:20 +00:00
}
&__text,
.deep-linking-dial-in {
font-size: 1em;
2016-12-22 12:50:20 +00:00
line-height: em(29px, 21px);
2017-01-13 22:37:53 +00:00
margin-bottom: 0.65em;
2016-12-22 12:50:20 +00:00
&_small {
2017-01-25 22:11:44 +00:00
font-size: 1.5em;
2016-12-22 12:50:20 +00:00
margin-bottom: 1em;
2017-01-13 22:37:53 +00:00
margin-top: em(21, 18);
2016-12-22 12:50:20 +00:00
strong {
font-size: em(21, 18);
}
}
table {
font-size: 1em;
}
.dial-in-conference-id {
margin: 10px 0 10px 0;
}
.dial-in-conference-description {
font-size: 0.8em;
}
.toll-free-list {
min-width: 80px;
}
.numbers-list {
min-width: 150px;
}
2016-12-22 12:50:20 +00:00
}
&__href {
height: 2.2857142857142856em;
line-height: 2.2857142857142856em;
margin: 18px auto 20px;
max-width: 300px;
width: auto;
font-weight: bolder;
2016-12-22 12:50:20 +00:00
}
&__button {
border: 0;
height: 2.2857142857142856em;
line-height: 2.2857142857142856em;
margin: 18px auto 10px;
padding: 0px 10px 0px 10px;
2016-12-22 12:50:20 +00:00
max-width: 300px;
width: auto;
@include border-radius(3px);
2017-01-19 15:47:22 +00:00
background-color: $unsupportedBrowserButtonBgColor;
color: #505F79;
font-weight: bold;
2016-12-22 12:50:20 +00:00
&:active {
2017-01-19 15:47:22 +00:00
background-color: $unsupportedBrowserButtonBgColor;
2016-12-22 12:50:20 +00:00
}
&_primary {
2017-01-19 15:47:22 +00:00
background-color: $primaryUnsupportedBrowserButtonBgColor;
color: #FFFFFF;
2016-12-22 12:50:20 +00:00
&:active {
2017-01-19 15:47:22 +00:00
background-color: $primaryUnsupportedBrowserButtonBgColor;
2016-12-22 12:50:20 +00:00
}
}
}
.deep-linking-dial-in {
display: none;
&.has-numbers {
align-items: center;
display: flex;
flex-direction: column;
}
.dial-in-numbers-list {
color: $unsupportedBrowserTextColor;
}
.dial-in-numbers-body {
vertical-align: top;
}
}
2017-01-13 22:37:53 +00:00
}