2018-01-23 20:47:16 +01:00
|
|
|
#conversejs.fullscreen {
|
2017-06-13 21:07:42 +02:00
|
|
|
#controlbox {
|
2018-03-09 11:02:28 +01:00
|
|
|
@include make-col-ready();
|
2018-03-09 10:12:05 +01:00
|
|
|
@include media-breakpoint-up(md) {
|
|
|
|
@include make-col(3);
|
|
|
|
}
|
|
|
|
@include media-breakpoint-up(xl) {
|
|
|
|
@include make-col(2);
|
|
|
|
}
|
|
|
|
|
2018-03-09 20:06:47 +01:00
|
|
|
&.logged-out {
|
|
|
|
@include make-col(12);
|
|
|
|
}
|
|
|
|
|
2017-06-13 21:07:42 +02:00
|
|
|
margin: 0;
|
|
|
|
|
2018-01-27 10:07:54 +01:00
|
|
|
.controlbox-pane {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
2018-02-19 22:36:37 +01:00
|
|
|
.flyout {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
2018-02-24 18:43:32 +01:00
|
|
|
#converse-login-panel {
|
2018-02-15 14:37:44 +01:00
|
|
|
border-radius: 0;
|
2018-01-25 12:14:20 +01:00
|
|
|
.converse-form {
|
|
|
|
padding: 3em 2em 3em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-16 18:11:31 +02:00
|
|
|
.toggle-register-login {
|
|
|
|
line-height: $line-height-huge;
|
|
|
|
}
|
|
|
|
|
|
|
|
.brand-heading-container {
|
2018-03-09 23:42:42 +01:00
|
|
|
@include make-col(12);
|
2017-09-17 01:30:52 +02:00
|
|
|
text-align: center;
|
2017-06-13 21:07:42 +02:00
|
|
|
.brand-heading {
|
2018-01-23 11:20:51 +01:00
|
|
|
font-size: 150%;
|
2017-06-15 15:09:34 +02:00
|
|
|
font-size: 600%;
|
2017-09-16 18:11:31 +02:00
|
|
|
padding: 0.7em 0 0 0;
|
2017-09-08 19:50:34 +02:00
|
|
|
opacity: 0.8;
|
2017-06-15 11:02:20 +02:00
|
|
|
color: $blue;
|
2017-06-13 21:07:42 +02:00
|
|
|
}
|
2017-09-08 19:50:34 +02:00
|
|
|
.brand-subtitle {
|
|
|
|
font-size: 90%;
|
2018-01-18 11:14:06 +01:00
|
|
|
padding: 0.5em;
|
2017-09-08 19:50:34 +02:00
|
|
|
}
|
2017-09-16 18:11:31 +02:00
|
|
|
@media screen and (max-width: $mobile-portrait-length) {
|
|
|
|
.brand-heading {
|
|
|
|
font-size: 400%;
|
|
|
|
}
|
|
|
|
}
|
2017-06-13 21:07:42 +02:00
|
|
|
}
|
|
|
|
|
2017-09-09 11:20:28 +02:00
|
|
|
&.logged-out {
|
2018-03-09 11:02:28 +01:00
|
|
|
@include make-col(12);
|
2017-09-17 01:30:52 +02:00
|
|
|
@include fade-in;
|
2017-06-13 21:07:42 +02:00
|
|
|
width: 100%;
|
|
|
|
.box-flyout {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.box-flyout {
|
|
|
|
border: 0;
|
2018-01-25 12:14:20 +01:00
|
|
|
width: 100%;
|
2017-06-13 21:07:42 +02:00
|
|
|
z-index: 1;
|
|
|
|
background-color: $controlbox-head-color;
|
2018-02-15 15:49:16 +01:00
|
|
|
|
|
|
|
.controlbox-head {
|
|
|
|
display: none;
|
|
|
|
}
|
2017-06-13 21:07:42 +02:00
|
|
|
}
|
2018-01-25 12:14:20 +01:00
|
|
|
|
2017-06-13 21:07:42 +02:00
|
|
|
#converse-register, #converse-login {
|
2018-03-07 17:48:53 +01:00
|
|
|
@include make-col-ready();
|
|
|
|
@include make-col(8);
|
|
|
|
@include make-col-offset(2);
|
|
|
|
|
|
|
|
@include media-breakpoint-up(sm) {
|
|
|
|
@include make-col(8);
|
|
|
|
@include make-col-offset(2);
|
|
|
|
}
|
|
|
|
@include media-breakpoint-up(md) {
|
|
|
|
@include make-col(8);
|
|
|
|
@include make-col-offset(2);
|
|
|
|
}
|
|
|
|
@include media-breakpoint-up(lg) {
|
|
|
|
@include make-col(6);
|
|
|
|
@include make-col-offset(3);
|
|
|
|
}
|
2018-01-23 11:20:51 +01:00
|
|
|
.title, .instructions {
|
2017-08-15 21:46:47 +02:00
|
|
|
margin: 1em 0;
|
|
|
|
}
|
|
|
|
input[type=submit],
|
|
|
|
input[type=button] {
|
2017-06-13 21:07:42 +02:00
|
|
|
width: auto;
|
|
|
|
}
|
2017-09-17 01:30:52 +02:00
|
|
|
}
|
2017-06-13 21:07:42 +02:00
|
|
|
}
|
|
|
|
}
|