2017-06-13 21:07:42 +02:00
|
|
|
#conversejs {
|
|
|
|
#controlbox {
|
|
|
|
min-width: $controlbox-width;
|
|
|
|
width: 200px;
|
|
|
|
float: left;
|
|
|
|
margin: 0;
|
|
|
|
|
2017-09-16 18:11:31 +02:00
|
|
|
.toggle-register-login {
|
|
|
|
line-height: $line-height-huge;
|
|
|
|
}
|
|
|
|
|
|
|
|
.brand-heading-container {
|
2017-09-17 01:30:52 +02:00
|
|
|
text-align: center;
|
2017-06-13 21:07:42 +02:00
|
|
|
.brand-heading {
|
2017-09-17 01:30:52 +02:00
|
|
|
text-align: center;
|
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%;
|
|
|
|
}
|
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-18 08:58:26 +02:00
|
|
|
.controlbox-panes {
|
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
.controlbox-pane {
|
|
|
|
@include calc(height, '100% - #{$controlbox-head-height}');
|
|
|
|
}
|
2017-09-09 11:20:28 +02:00
|
|
|
&.logged-out {
|
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%;
|
2017-09-08 19:50:34 +02:00
|
|
|
.controlbox-head {
|
|
|
|
background-color: white;
|
2017-09-16 19:29:13 +02:00
|
|
|
height: 0;
|
2017-09-08 19:50:34 +02:00
|
|
|
}
|
2017-09-18 08:58:26 +02:00
|
|
|
.controlbox-pane {
|
|
|
|
height: auto;
|
|
|
|
}
|
2017-06-13 21:07:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.box-flyout {
|
|
|
|
border: 0;
|
|
|
|
min-width: $controlbox-width;
|
|
|
|
width: 200px;
|
|
|
|
z-index: 1;
|
|
|
|
background-color: $controlbox-head-color;
|
|
|
|
}
|
|
|
|
.controlbox-head {
|
2017-09-16 19:29:13 +02:00
|
|
|
height: $controlbox-head-height;
|
2017-06-13 21:07:42 +02:00
|
|
|
padding: 6px 0 6px 0;
|
2017-06-17 23:48:46 +02:00
|
|
|
margin-top: 0.5em;
|
2017-06-13 21:07:42 +02:00
|
|
|
}
|
|
|
|
#converse-register, #converse-login {
|
2017-09-24 11:03:00 +02:00
|
|
|
margin: 2em 30% 3em 30%;
|
2017-08-15 21:46:47 +02:00
|
|
|
.title, .instructions, label {
|
|
|
|
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
|
|
|
input {
|
|
|
|
width: 100%;
|
|
|
|
margin: 1em 0;
|
|
|
|
&.pure-button {
|
|
|
|
margin: 1em 0.5em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media screen and (max-width: $mobile-portrait-length) {
|
|
|
|
#converse-register,
|
|
|
|
#converse-login {
|
|
|
|
margin: 3em 10% 3em 10%;
|
|
|
|
}
|
2017-06-13 21:07:42 +02:00
|
|
|
}
|
|
|
|
#controlbox-tabs {
|
|
|
|
/* single tab */
|
|
|
|
li {
|
|
|
|
width: 50%;
|
|
|
|
a {
|
|
|
|
height: $controlbox-head-height - 1px;
|
|
|
|
line-height: $controlbox-head-height - 1px;
|
|
|
|
&.current,
|
|
|
|
&.current:hover {
|
|
|
|
height: $controlbox-head-height;
|
|
|
|
}
|
|
|
|
font-size: $font-size-large;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|