89 lines
2.0 KiB
CSS
89 lines
2.0 KiB
CSS
/*
|
|
|
|
This file is part of OpenWebRX,
|
|
an open-source SDR receiver software with a web UI.
|
|
Copyright (c) 2013-2015 by Andras Retzler <randras@sdr.hu>
|
|
Copyright (c) 2019-2021 by Jakob Ketterl <dd5jfk@darc.de>
|
|
Copyright (c) 2022-2023 by Marat Fayzullin <luarvique@gmail.com>
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation, either version 3 of the
|
|
License, or (at your option) any later version.
|
|
|
|
This program 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 Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
.openwebrx-panel-brown
|
|
{
|
|
background-color: #472700;
|
|
}
|
|
|
|
.openwebrx-button-brown
|
|
{
|
|
background-color: #270700;
|
|
background: linear-gradient(to bottom, #270700 0%, #3F1F00 100%);
|
|
}
|
|
|
|
.openwebrx-panel-red
|
|
{
|
|
background-color: #470000;
|
|
}
|
|
|
|
.openwebrx-button-red
|
|
{
|
|
background-color: #270000;
|
|
background: linear-gradient(to bottom, #270000 0%, #3F0000 100%);
|
|
}
|
|
|
|
.openwebrx-panel-green
|
|
{
|
|
background-color: #003700;
|
|
}
|
|
|
|
.openwebrx-button-green
|
|
{
|
|
background-color: #001700;
|
|
background: linear-gradient(to bottom, #001700 0%, #002F00 100%);
|
|
}
|
|
|
|
.openwebrx-panel-khaki
|
|
{
|
|
background-color: #373F17;
|
|
}
|
|
|
|
.openwebrx-button-khaki
|
|
{
|
|
background-color: #171F07;
|
|
background: linear-gradient(to bottom, #171F07 0%, #272F17 100%);
|
|
}
|
|
|
|
.openwebrx-panel-blue
|
|
{
|
|
background-color: #000047;
|
|
}
|
|
|
|
.openwebrx-button-blue
|
|
{
|
|
background-color: #000027;
|
|
background: linear-gradient(to bottom, #000027 0%, #00003F 100%);
|
|
}
|
|
|
|
.openwebrx-panel-navy
|
|
{
|
|
background-color: #003747;
|
|
}
|
|
|
|
.openwebrx-button-navy
|
|
{
|
|
background-color: #001727;
|
|
background: linear-gradient(to bottom, #001727 0%, #002F3F 100%);
|
|
}
|