2015-01-29 18:53:49 -10:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2015-02-18 23:09:34 -08:00
|
|
|
html {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2015-01-29 18:53:49 -10:00
|
|
|
body {
|
2015-02-17 18:03:05 -08:00
|
|
|
position: relative;
|
2015-01-29 18:53:49 -10:00
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2015-02-18 23:09:34 -08:00
|
|
|
margin: 0;
|
2015-01-29 18:53:49 -10:00
|
|
|
font-family: $roboto;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2015-02-05 20:42:16 -10:00
|
|
|
.clearfix:before,
|
|
|
|
.clearfix:after {
|
|
|
|
display: table;
|
|
|
|
content: " ";
|
|
|
|
}
|
|
|
|
.clearfix:after {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
2015-02-23 12:50:07 -08:00
|
|
|
.hide {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2015-01-29 18:53:49 -10:00
|
|
|
#header {
|
2016-03-18 11:11:36 -07:00
|
|
|
h1 {
|
2016-03-18 15:54:40 -07:00
|
|
|
margin: 0;
|
2016-03-21 15:37:53 -07:00
|
|
|
line-height: $header-height;
|
2016-03-18 11:11:36 -07:00
|
|
|
padding-left: 20px;
|
|
|
|
font-size: 22px;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
2015-01-30 11:20:32 -10:00
|
|
|
}
|
|
|
|
|
2015-08-26 15:13:14 -07:00
|
|
|
.conversation-header button,
|
2015-02-23 12:50:07 -08:00
|
|
|
.title-bar button {
|
2016-03-21 15:37:53 -07:00
|
|
|
width: $button-height;
|
|
|
|
height: $button-height;
|
|
|
|
line-height: $button-height;
|
2015-02-23 12:50:07 -08:00
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
2016-08-24 16:19:24 -07:00
|
|
|
button {
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: inherit;
|
|
|
|
}
|
2016-09-08 11:25:46 -07:00
|
|
|
button.grey {
|
|
|
|
border-radius: $border-radius;
|
|
|
|
border: solid 1px #ccc;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 1em auto;
|
|
|
|
padding: 1em;
|
|
|
|
font-family: inherit;
|
|
|
|
color: $grey;
|
|
|
|
background: $grey_l;
|
|
|
|
box-shadow: 0 0 10px -5px rgba($grey, 0.5);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
box-shadow: 0 0 10px -3px rgba($grey, 0.7);
|
|
|
|
}
|
|
|
|
|
|
|
|
&[disabled=disabled] {
|
|
|
|
&, &:hover {
|
|
|
|
opacity: 0.5;
|
|
|
|
box-shadow: none;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-24 12:33:41 -07:00
|
|
|
a { color: $blue; }
|
2015-02-23 12:50:07 -08:00
|
|
|
|
2016-09-26 23:22:36 -07:00
|
|
|
button.back {
|
2016-04-01 11:03:26 -07:00
|
|
|
@include header-icon-black('/images/back.svg');
|
2016-03-21 15:37:53 -07:00
|
|
|
}
|
2016-09-26 23:22:36 -07:00
|
|
|
button.clock {
|
|
|
|
@include header-icon-black('/images/clock.svg');
|
|
|
|
}
|
|
|
|
button.hamburger {
|
|
|
|
@include header-icon-black('/images/menu.svg');
|
2015-02-23 12:50:07 -08:00
|
|
|
}
|
|
|
|
|
2016-09-26 23:22:36 -07:00
|
|
|
|
2015-10-16 18:14:50 -07:00
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
2016-03-18 11:11:36 -07:00
|
|
|
background: rgba(0,0,0,0.15);
|
2016-04-01 14:24:13 -07:00
|
|
|
border-radius: $border-radius;
|
2016-04-20 21:13:56 -07:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: rgba(0,0,0,0.25);
|
|
|
|
}
|
2015-10-16 18:14:50 -07:00
|
|
|
}
|
|
|
|
|
2016-03-18 15:54:40 -07:00
|
|
|
.header-buttons {
|
2016-03-22 11:01:04 -07:00
|
|
|
&.left {
|
|
|
|
float: left;
|
2016-04-01 14:20:00 -07:00
|
|
|
padding-left: 10px;
|
2016-03-22 11:01:04 -07:00
|
|
|
}
|
|
|
|
&.right {
|
|
|
|
float: right;
|
2016-04-01 14:20:00 -07:00
|
|
|
padding-right: 10px;
|
2016-03-22 11:01:04 -07:00
|
|
|
}
|
2016-03-18 15:54:40 -07:00
|
|
|
height: 0;
|
|
|
|
|
|
|
|
.vertical-align {
|
2016-03-21 15:37:53 -07:00
|
|
|
height: $header-height;
|
2016-03-18 15:54:40 -07:00
|
|
|
vertical-align: middle;
|
|
|
|
display: table-cell;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-28 16:47:57 -07:00
|
|
|
.conversation-header .timer-menu {
|
|
|
|
margin-right: 10px;
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
content: attr(data-time);
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
bottom: -10px;
|
|
|
|
height: 10px;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 8px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-30 11:20:32 -10:00
|
|
|
.menu {
|
|
|
|
position: relative;
|
2015-10-16 12:52:10 -07:00
|
|
|
float: right;
|
2015-01-30 11:20:32 -10:00
|
|
|
|
|
|
|
.hamburger {
|
2016-03-21 15:37:53 -07:00
|
|
|
width: $button-height;
|
|
|
|
height: $button-height;
|
2016-03-18 15:54:40 -07:00
|
|
|
vertical-align: middle;
|
2015-01-30 11:20:32 -10:00
|
|
|
}
|
|
|
|
.menu-list {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
2015-05-21 17:07:11 -07:00
|
|
|
color: $grey_d;
|
2016-03-18 13:09:45 -07:00
|
|
|
z-index: 50;
|
2016-03-18 15:54:40 -07:00
|
|
|
text-align: initial;
|
2015-05-21 17:07:11 -07:00
|
|
|
|
2015-01-30 11:20:32 -10:00
|
|
|
top: 100%;
|
2015-10-16 12:52:10 -07:00
|
|
|
right: 0;
|
2015-01-30 11:20:32 -10:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
background-color: white;
|
2016-04-01 14:20:00 -07:00
|
|
|
box-shadow: 0 0 1px 1px rgba(0,0,0, 0.2);
|
2015-01-30 11:20:32 -10:00
|
|
|
|
|
|
|
li {
|
|
|
|
display: block;
|
|
|
|
white-space: nowrap;
|
2016-03-24 12:57:04 -07:00
|
|
|
cursor: pointer;
|
|
|
|
padding: 5px 15px 5px 10px;
|
2015-03-12 17:39:56 -07:00
|
|
|
|
2016-03-24 12:57:04 -07:00
|
|
|
&:hover {
|
|
|
|
background-color: $grey_l;
|
2015-03-12 17:39:56 -07:00
|
|
|
}
|
2015-01-30 11:20:32 -10:00
|
|
|
}
|
|
|
|
}
|
2015-01-29 18:53:49 -10:00
|
|
|
}
|
2015-02-05 20:42:16 -10:00
|
|
|
|
|
|
|
.file-input {
|
|
|
|
position: relative;
|
2015-10-29 18:19:51 -07:00
|
|
|
.choose-file {
|
|
|
|
cursor: pointer;
|
2016-04-01 14:46:04 -07:00
|
|
|
padding-left: 10px;
|
2015-10-29 18:19:51 -07:00
|
|
|
}
|
2015-02-05 20:42:16 -10:00
|
|
|
|
|
|
|
.paperclip {
|
2016-08-31 14:45:23 -07:00
|
|
|
width: 36px;
|
2015-06-16 22:43:40 +02:00
|
|
|
height: 100%;
|
2016-08-31 14:45:23 -07:00
|
|
|
padding: 5px 0 0;
|
2016-04-01 14:46:04 -07:00
|
|
|
opacity: 0.5;
|
2016-08-31 14:45:23 -07:00
|
|
|
border: none;
|
|
|
|
background: transparent;
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
content: '';
|
|
|
|
display: inline-block;
|
|
|
|
width: $button-height;
|
|
|
|
height: $button-height;
|
|
|
|
@include color-svg('/images/paperclip.svg', $grey);
|
|
|
|
transform: rotateZ(-45deg);
|
|
|
|
}
|
2016-04-07 13:12:40 -07:00
|
|
|
|
|
|
|
&:focus, &:hover {
|
2016-04-01 14:46:04 -07:00
|
|
|
opacity: 1.0;
|
|
|
|
}
|
2015-02-05 20:42:16 -10:00
|
|
|
}
|
|
|
|
|
|
|
|
input[type=file] {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
opacity: 0;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
}
|
2015-03-10 12:11:32 -07:00
|
|
|
|
2015-12-04 00:34:19 +02:00
|
|
|
.dropoff {
|
2016-03-21 17:17:39 -07:00
|
|
|
outline: solid 1px #2090ea;
|
2015-12-04 00:34:19 +02:00
|
|
|
}
|
|
|
|
|
2015-06-18 22:35:40 +02:00
|
|
|
$avatar-size: 44px;
|
|
|
|
|
2015-03-23 14:01:18 -07:00
|
|
|
.avatar {
|
|
|
|
display: inline-block;
|
2015-06-18 22:35:40 +02:00
|
|
|
height: $avatar-size;
|
|
|
|
width: $avatar-size;
|
2015-03-23 14:01:18 -07:00
|
|
|
border-radius: 50%;
|
|
|
|
background-size: cover;
|
|
|
|
vertical-align: middle;
|
2015-06-18 17:05:00 -07:00
|
|
|
text-align: center;
|
|
|
|
line-height: $avatar-size;
|
|
|
|
overflow-x: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
color: white;
|
2016-03-18 18:02:58 -07:00
|
|
|
font-size: 18px;
|
2016-08-30 18:27:54 -07:00
|
|
|
@include avatar-colors;
|
2015-03-23 14:01:18 -07:00
|
|
|
}
|
|
|
|
|
2015-09-04 13:11:21 -07:00
|
|
|
.group-info-input {
|
2015-03-12 11:40:55 -07:00
|
|
|
background: white;
|
|
|
|
|
2015-03-12 16:14:21 -07:00
|
|
|
.group-avatar {
|
2015-09-04 13:11:21 -07:00
|
|
|
display: inline-block;
|
|
|
|
padding: 2px 0px 0px 2px;
|
2015-03-12 16:14:21 -07:00
|
|
|
}
|
2015-03-12 11:40:55 -07:00
|
|
|
|
2015-06-09 16:10:39 -07:00
|
|
|
.file-input .thumbnail, .thumbnail .avatar,
|
2015-03-12 11:40:55 -07:00
|
|
|
img {
|
|
|
|
height: 54px;
|
|
|
|
width: 54px;
|
|
|
|
border-radius: (54px / 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
.thumbnail:after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
height: 0;
|
|
|
|
width: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
border-bottom: 10px solid $grey;
|
|
|
|
border-left: 10px solid transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
input.name {
|
|
|
|
padding: 0.5em;
|
|
|
|
border: solid 1px #ccc;
|
|
|
|
border-width: 0 0 1px 0;
|
2015-09-04 13:11:21 -07:00
|
|
|
width: calc(100% - 84px);
|
2015-06-09 16:10:39 -07:00
|
|
|
}
|
2015-08-04 12:15:37 -07:00
|
|
|
}
|
2015-06-09 16:10:39 -07:00
|
|
|
|
2015-08-04 12:15:37 -07:00
|
|
|
.group-member-list,
|
2015-09-04 13:11:21 -07:00
|
|
|
.new-group-update {
|
2015-06-09 16:10:39 -07:00
|
|
|
.members .contact {
|
|
|
|
box-shadow: none;
|
|
|
|
border-bottom: 1px solid #eee;
|
|
|
|
.last-message, .last-timestamp {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2015-03-12 16:14:21 -07:00
|
|
|
}
|
2015-09-03 13:33:17 -07:00
|
|
|
.conversation-list-item {
|
|
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
|
|
background: #f8f8f8;
|
|
|
|
}
|
2015-09-04 13:11:21 -07:00
|
|
|
|
|
|
|
.number {
|
|
|
|
display: none;
|
|
|
|
}
|
2015-11-09 12:07:40 -08:00
|
|
|
|
|
|
|
.unread-count {
|
|
|
|
float: right;
|
|
|
|
margin: 3px 10px 0 20px;
|
|
|
|
display: inline-block;
|
2015-11-12 12:52:55 -08:00
|
|
|
padding: 0 3px;
|
|
|
|
min-width: $unread-badge-size;
|
2015-11-09 12:07:40 -08:00
|
|
|
height: $unread-badge-size;
|
|
|
|
line-height: $unread-badge-size;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
2016-04-01 14:24:13 -07:00
|
|
|
border-radius: $border-radius;
|
2015-11-09 12:07:40 -08:00
|
|
|
background-color: $blue;
|
|
|
|
color: white;
|
|
|
|
border: solid 1px rgba(255,255,255,0.6);
|
|
|
|
}
|
2015-09-03 13:33:17 -07:00
|
|
|
}
|
2016-04-01 11:04:20 -07:00
|
|
|
.inactive .contact.selected {
|
2016-04-01 11:51:53 -07:00
|
|
|
padding-left: 8px;
|
|
|
|
border-left: 4px solid $blue;
|
2016-04-01 11:04:20 -07:00
|
|
|
}
|
2015-03-12 11:40:55 -07:00
|
|
|
.contact {
|
|
|
|
position: relative;
|
|
|
|
padding: 12px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
2015-10-17 12:07:53 -07:00
|
|
|
background: rgba(255,255,255,0.6);
|
2016-03-18 11:11:36 -07:00
|
|
|
margin: 1px;
|
2015-03-12 16:14:21 -07:00
|
|
|
|
2015-08-27 17:01:34 -07:00
|
|
|
&.selected {
|
2016-03-18 11:11:36 -07:00
|
|
|
background: rgb(236, 243, 252);
|
2015-08-27 17:01:34 -07:00
|
|
|
}
|
|
|
|
|
2015-10-16 18:14:50 -07:00
|
|
|
&:first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2015-06-09 16:10:39 -07:00
|
|
|
&:last-child::after {
|
|
|
|
display: none;
|
2015-03-12 11:40:55 -07:00
|
|
|
}
|
2016-04-14 16:42:42 -07:00
|
|
|
}
|
|
|
|
.contact-details {
|
|
|
|
$left-margin: 8px;
|
2015-03-12 11:40:55 -07:00
|
|
|
|
2016-04-14 16:42:42 -07:00
|
|
|
vertical-align: middle;
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 0 0 $left-margin;
|
2016-08-24 16:19:24 -07:00
|
|
|
width: calc(100% - #{$avatar-size} - #{$left-margin} - #{(4/14) + em});
|
2016-07-08 16:37:25 +03:00
|
|
|
text-align: left;
|
2015-06-18 22:35:40 +02:00
|
|
|
|
2016-04-14 16:42:42 -07:00
|
|
|
p {
|
|
|
|
overflow-x: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2015-03-12 16:14:21 -07:00
|
|
|
}
|
2015-03-12 11:40:55 -07:00
|
|
|
|
2015-09-03 13:33:17 -07:00
|
|
|
.name {
|
2015-10-23 15:47:32 -07:00
|
|
|
display: block;
|
2015-03-12 11:40:55 -07:00
|
|
|
margin: 0;
|
|
|
|
font-size: 1em;
|
2015-08-26 15:13:14 -07:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow-x: hidden;
|
2016-07-08 16:37:25 +03:00
|
|
|
text-align: left;
|
2015-03-12 11:40:55 -07:00
|
|
|
}
|
|
|
|
|
2015-09-04 13:11:21 -07:00
|
|
|
.number {
|
|
|
|
color: $grey;
|
2016-08-24 15:15:55 -07:00
|
|
|
font-size: $font-size-small;
|
2015-09-04 13:11:21 -07:00
|
|
|
}
|
2015-03-12 11:40:55 -07:00
|
|
|
}
|
|
|
|
|
2016-04-14 16:42:42 -07:00
|
|
|
|
2015-03-12 11:40:55 -07:00
|
|
|
.recipients-input {
|
2015-09-04 13:11:21 -07:00
|
|
|
position: relative;
|
2015-03-12 11:40:55 -07:00
|
|
|
|
|
|
|
.recipients-container {
|
|
|
|
background-color: white;
|
|
|
|
padding: 2px;
|
|
|
|
border-bottom: 1px solid #f2f2f2;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.recipient {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 2px 2px 0;
|
|
|
|
padding: 0 5px;
|
|
|
|
border-radius: 10px;
|
|
|
|
background-color: $blue;
|
|
|
|
color: white;
|
|
|
|
|
|
|
|
&.error {
|
|
|
|
background-color: #f00;
|
|
|
|
}
|
|
|
|
|
|
|
|
.remove {
|
|
|
|
margin-left: 5px;
|
|
|
|
padding: 0 2px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-04 13:11:21 -07:00
|
|
|
.results {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 10;
|
|
|
|
margin: 0 0 0 20px;
|
|
|
|
width: calc(100% - 30px);
|
|
|
|
max-width: 300px;
|
|
|
|
max-height: 55px * 3;
|
|
|
|
overflow-y: auto;
|
|
|
|
box-shadow: 0px 0px 1px rgba(#aaa, 0.8);
|
2015-03-12 11:40:55 -07:00
|
|
|
|
2015-09-04 13:11:21 -07:00
|
|
|
.contact {
|
|
|
|
cursor: pointer;
|
2015-03-12 11:40:55 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.attachment-preview {
|
2015-10-29 18:19:51 -07:00
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
2015-03-12 11:40:55 -07:00
|
|
|
img {
|
2015-10-29 18:19:51 -07:00
|
|
|
max-width: 100%;
|
2015-03-12 11:40:55 -07:00
|
|
|
}
|
|
|
|
|
2015-03-12 16:14:21 -07:00
|
|
|
}
|
2015-08-31 15:11:00 -07:00
|
|
|
.new-conversation .recipients-input .recipients::before {
|
|
|
|
content: 'To: ';
|
|
|
|
}
|
2015-09-04 13:11:21 -07:00
|
|
|
.new-group-update .recipients-input .recipients::before {
|
2015-08-31 15:11:00 -07:00
|
|
|
content: 'Add: ';
|
|
|
|
}
|
|
|
|
|
2015-08-26 17:30:20 -07:00
|
|
|
.loading {
|
|
|
|
position: relative;
|
2015-11-10 16:03:19 -08:00
|
|
|
&::before {
|
2015-08-26 17:30:20 -07:00
|
|
|
display: block;
|
2015-11-12 10:35:29 -08:00
|
|
|
margin: 0px auto;
|
2015-08-26 17:30:20 -07:00
|
|
|
content: " ";
|
2015-11-12 10:35:29 -08:00
|
|
|
height: $loading-height;
|
|
|
|
width: $loading-height;
|
|
|
|
border-radius: 2 * $loading-height;
|
2015-08-26 17:30:20 -07:00
|
|
|
border: solid 3px;
|
2015-11-12 10:35:29 -08:00
|
|
|
border-color: $blue_l $blue_l $grey_l $grey_l !important;
|
2015-08-26 17:30:20 -07:00
|
|
|
animation: rotate 1s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes rotate {
|
|
|
|
to { transform: rotate(360deg); }
|
|
|
|
}
|
|
|
|
}
|
2015-09-15 23:28:00 -07:00
|
|
|
|
2016-04-01 15:15:02 -07:00
|
|
|
.x {
|
|
|
|
display: inline-block;
|
|
|
|
float: right;
|
|
|
|
cursor: pointer;
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
|
|
|
padding: 3px;
|
|
|
|
background: $grey;
|
2016-02-19 11:26:32 -08:00
|
|
|
|
2016-04-01 15:15:02 -07:00
|
|
|
&:before {
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
@include color-svg('/images/x.svg', white);
|
2016-02-19 11:26:32 -08:00
|
|
|
}
|
2016-02-17 16:08:17 -08:00
|
|
|
}
|
2016-03-18 11:11:36 -07:00
|
|
|
|
|
|
|
input[type=text], input[type=search], textarea {
|
|
|
|
&:active, &:focus {
|
|
|
|
outline: 1px solid $blue;
|
|
|
|
}
|
|
|
|
}
|
2016-04-03 20:06:27 -07:00
|
|
|
|
|
|
|
.expiredAlert {
|
|
|
|
background: #F3F3A7;
|
|
|
|
padding: 10px;
|
|
|
|
line-height: 36px;
|
|
|
|
|
|
|
|
button {
|
|
|
|
float: right;
|
|
|
|
border: none;
|
|
|
|
border-radius: $border-radius;
|
|
|
|
color: white;
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 36px;
|
|
|
|
padding: 0 20px;
|
|
|
|
background: $blue;
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
|
|
|
}
|