Move wwwroot to Documentation repository.

This commit is contained in:
2021-08-18 02:55:30 +01:00
parent 4f72cc5a7c
commit 6705d0aeab
43 changed files with 33347 additions and 0 deletions

90
css/dos/_colors.scss Normal file
View File

@@ -0,0 +1,90 @@
// /***************************************************************************
// Aaru Data Preservation Suite
// ----------------------------------------------------------------------------
//
// Filename : _colors.scss
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Aaru Server.
//
// --[ Description ] ----------------------------------------------------------
//
// Sets colors for 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
// ****************************************************************************/
/* Sets the grayscale for Bootstrap */
$white: #AAAAAA;
$darkgray: #555555;
$gray-100: #AAAAAA;
$gray-200: #AAAAAA;
$gray-300: #AAAAAA;
$gray-400: #AAAAAA;
$gray-500: #555555;
$gray-600: #555555;
$gray-700: #555555;
$gray-800: #555555;
$gray-900: #555555;
$black: #000;
/* Sets color palette, using EGA colors */
$blue: #0000AA;
$indigo: #AA55AA;
$purple: #AA00FF;
$pink: #FF55FF;
$red: #AA0000;
$orange: #FF5555;
$yellow: #FFFF55;
$green: #00AA00;
$teal: #55FFFF;
$cyan: #00AAAA;
$brown: #AA5500;
$brightwhite: #FFFFFF;
/* Bootstrap color aliases */
$primary: $blue;
$secondary: $gray-600;
$success: $green;
$info: $cyan;
$warning: $yellow;
$danger: $red;
$light: $gray-100;
$dark: $gray-800;
/* Colors for <body> */
$body-bg: $black;
$body-color: $white;
/* Colors for <a> */
$link-color: $teal;
$link-hover-color: $yellow;
/* Colors for cards */
$card-border-color: rgba($darkgray, .125);
$card-cap-bg: rgba($darkgray, .03);
$card-cap-color: inherit;
$card-bg: $blue;
/* Colors for tables */
$table-dark-bg: $cyan;
$table-dark-accent-bg: rgba($white, .05) !default;
$table-dark-hover-bg: rgba($white, .075) !default;
$table-dark-border-color: lighten($yellow, 7.5%) !default;
$table-dark-color: $yellow !default;

51
css/dos/_font.scss Normal file
View File

@@ -0,0 +1,51 @@
// /***************************************************************************
// Aaru Data Preservation Suite
// ----------------------------------------------------------------------------
//
// Filename : _font.scss
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Aaru Server.
//
// --[ Description ] ----------------------------------------------------------
//
// Sets font for 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
// ****************************************************************************/
/* Sets font to VGA square */
@font-face
{
font-family: 'VGAsquarePx';
src: url(../../fonts/vga_squarepx.eot);
src: url(../../fonts/vga_squarepx.eot?#iefix) format('embedded-opentype'),
url(../../fonts/vga_squarepx.woff2) format('woff2'),
url(../../fonts/vga_squarepx.woff) format('woff'),
url(../../fonts/vga_squarepx.ttf) format('truetype');
font-weight: normal;
font-style: normal;
}
$font-family-sans-serif: 'VGAsquarePx';
$font-family-monospace: 'VGAsquarePx';
$font-family-base: 'VGAsquarePx';
$font-size-base: 1.75rem;
$line-height-base: 1;

51
css/dos/_fontstyles.scss Normal file
View File

@@ -0,0 +1,51 @@
// /***************************************************************************
// Aaru Data Preservation Suite
// ----------------------------------------------------------------------------
//
// Filename : _fontstyles.scss
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Aaru Server.
//
// --[ Description ] ----------------------------------------------------------
//
// Sets font styles for 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";
/* Sets the style for emphasis/italics */
em, i
{
color: $green;
font-style: normal;
}
/* Headings and bold text are bright white */
h1, h2, h3, h4,
b, strong
{
color: $brightwhite;
font-size: 1em;
font-style: normal;
font-weight: normal;
margin: 0;
}

9741
css/dos/aaruserver.css Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

87
css/dos/aaruserver.scss Normal file
View File

@@ -0,0 +1,87 @@
// /***************************************************************************
// 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";
footer
{
background-color: $brown;
color: $black;
}
header
{
background-color: $teal;
color: $black;
text-align: center;
}
header a
{
color: $pink;
}
header a:hover
{
color: $orange;
text-decoration: none;
}
footer a:hover
{
text-decoration: none;
}
.table-centered
{
margin-left:auto;
margin-right:auto;
}
.card-button{color:$yellow}
.table-dark-em
{
color: $brown;
font-style: normal;
}
.table-dark-header
{
color: $brown;
font-style: normal;
text-align: center;
}