2017-06-14 17:12:13 +02:00
|
|
|
/* Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
|
|
|
/* This file is part of Parity.
|
|
|
|
/*
|
|
|
|
/* Parity is free software: you can redistribute it and/or modify
|
|
|
|
/* it under the terms of the GNU General Public License as published by
|
|
|
|
/* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
/* (at your option) any later version.
|
|
|
|
/*
|
|
|
|
/* Parity is distributed in the hope that it will be useful,
|
|
|
|
/* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
/* GNU General Public License for more details.
|
|
|
|
/*
|
|
|
|
/* You should have received a copy of the GNU General Public License
|
|
|
|
/* along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2017-09-18 15:20:10 +02:00
|
|
|
$backgroundOne: #f80;
|
|
|
|
$backgroundTwo: #e57a00;
|
|
|
|
|
2017-06-19 17:25:17 +02:00
|
|
|
.requests {
|
2017-06-14 17:12:13 +02:00
|
|
|
color: white;
|
|
|
|
position: fixed;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
2017-09-20 15:49:03 +02:00
|
|
|
top: 2.75em;
|
2017-06-14 17:12:13 +02:00
|
|
|
z-index: 760; /* sits above requests */
|
|
|
|
|
|
|
|
.request {
|
2017-07-03 17:05:56 +02:00
|
|
|
align-items: center;
|
2017-09-18 15:20:10 +02:00
|
|
|
background: $backgroundOne;
|
|
|
|
background: linear-gradient($backgroundOne, $backgroundTwo);
|
2017-07-03 17:05:56 +02:00
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
2017-06-14 17:12:13 +02:00
|
|
|
padding: 0.5em;
|
|
|
|
|
|
|
|
> span {
|
|
|
|
margin-right: 1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|