2021-08-18 02:55:30 +01:00
|
|
|
// /***************************************************************************
|
|
|
|
|
// Aaru Data Preservation Suite
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// Filename : aaruserver.scss
|
|
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
|
|
|
//
|
|
|
|
|
// Component : Aaru Server.
|
|
|
|
|
//
|
|
|
|
|
// --[ Description ] ----------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// Sets server styling.
|
|
|
|
|
//
|
|
|
|
|
// --[ License ] --------------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// This library is free software; you can redistribute it and/or modify
|
|
|
|
|
// it under the terms of the GNU Lesser General Public License as
|
|
|
|
|
// published by the Free Software Foundation; either version 2.1 of the
|
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
|
//
|
|
|
|
|
// This library 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
|
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
|
//
|
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
// License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
//
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
// Copyright © 2011-2021 Natalia Portillo
|
|
|
|
|
// ****************************************************************************/
|
|
|
|
|
|
|
|
|
|
@import "_colors";
|
|
|
|
|
@import "_font";
|
|
|
|
|
@import "_fontstyles";
|
|
|
|
|
|
|
|
|
|
@import "../../../node_modules/bootstrap/scss/bootstrap";
|
|
|
|
|
|
2021-08-18 03:06:03 +01:00
|
|
|
footer {
|
|
|
|
|
background-color: $black;
|
|
|
|
|
color: $white;
|
2021-08-18 02:55:30 +01:00
|
|
|
}
|
|
|
|
|
|
2021-08-18 03:06:03 +01:00
|
|
|
header {
|
|
|
|
|
background-color: $white;
|
|
|
|
|
color: $blue;
|
|
|
|
|
text-align: center;
|
2021-08-18 02:55:30 +01:00
|
|
|
}
|
|
|
|
|
|
2021-08-18 03:06:03 +01:00
|
|
|
header a {
|
|
|
|
|
color: $orange;
|
2021-08-18 02:55:30 +01:00
|
|
|
}
|
|
|
|
|
|
2021-08-18 03:06:03 +01:00
|
|
|
header a:hover {
|
|
|
|
|
color: $orange;
|
|
|
|
|
text-decoration: none;
|
2021-08-18 02:55:30 +01:00
|
|
|
}
|
|
|
|
|
|
2021-08-18 03:06:03 +01:00
|
|
|
footer a:hover {
|
|
|
|
|
text-decoration: none;
|
2021-08-18 02:55:30 +01:00
|
|
|
}
|
|
|
|
|
|
2021-08-18 03:06:03 +01:00
|
|
|
.table-centered {
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
2021-08-18 02:55:30 +01:00
|
|
|
}
|
|
|
|
|
|
2021-08-18 03:06:03 +01:00
|
|
|
.card-button {
|
|
|
|
|
color: $orange
|
|
|
|
|
}
|
2021-08-18 02:55:30 +01:00
|
|
|
|
2021-08-18 03:06:03 +01:00
|
|
|
.table-dark-em {
|
|
|
|
|
color: $white;
|
|
|
|
|
font-style: normal;
|
2021-08-18 02:55:30 +01:00
|
|
|
}
|
|
|
|
|
|
2021-08-18 03:06:03 +01:00
|
|
|
.table-dark-header {
|
|
|
|
|
color: $orange;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
text-align: center;
|
2021-08-18 02:55:30 +01:00
|
|
|
}
|