Changing the webpage background to azure.

This commit is contained in:
sergiotarxz 2023-05-19 06:30:46 +02:00
parent 7b8e147695
commit 1e87cf40bc
3 changed files with 11 additions and 11 deletions

View File

@ -60,7 +60,7 @@ sub _GenerateSVGPreviewHeaderBar ( $self, $svg, $group, $site_name ) {
y => 50, y => 50,
width => 1200, width => 1200,
height => 627, height => 627,
style => { fill => 'ghostwhite' } style => { fill => 'azure' }
); );
my $owlcode_logo_png = path( $self->_ToPng($OWLCODE_LOGO) ); my $owlcode_logo_png = path( $self->_ToPng($OWLCODE_LOGO) );
@ -69,7 +69,7 @@ sub _GenerateSVGPreviewHeaderBar ( $self, $svg, $group, $site_name ) {
y => 5, y => 5,
width => 40, width => 40,
height => 40, height => 40,
style => { fill => 'ghostwhite' }, style => { fill => 'azure' },
); );
$group->image( $group->image(
x => 10, x => 10,
@ -202,7 +202,7 @@ sub _AttachImageSVG ( $self, $svg, $image_file ) {
y => $y+$height, y => $y+$height,
width => $SVG_WIDTH, width => $SVG_WIDTH,
height => $SVG_HEIGHT, height => $SVG_HEIGHT,
style => { fill => 'ghostwhite' }, style => { fill => 'azure' },
); );
return $y + $height + 50; return $y + $height + 50;
} }

View File

@ -44,7 +44,7 @@ body {
position: fixed; position: fixed;
overflow-y: scroll; overflow-y: scroll;
z-index: 2; z-index: 2;
background: ghostwhite; background: azure;
color: #666362; color: #666362;
top: 0%; top: 0%;
left: 0%; left: 0%;
@ -72,7 +72,7 @@ body {
padding-right: 10px; padding-right: 10px;
margin: 0; } margin: 0; }
body div.page-contents div.description { body div.page-contents div.description {
background: ghostwhite; background: azure;
word-wrap: break-word; word-wrap: break-word;
margin-bottom: 1%; } margin-bottom: 1%; }
body div.page-contents div.description input { body div.page-contents div.description input {
@ -197,9 +197,9 @@ body {
height: 60px; } height: 60px; }
body div.page-contents nav.mobile-shortcuts a.go-to-index { body div.page-contents nav.mobile-shortcuts a.go-to-index {
height: 100%; height: 100%;
background: ghostwhite; } background: azure; }
body div.page-contents nav.mobile-shortcuts a.go-to-index:hover { body div.page-contents nav.mobile-shortcuts a.go-to-index:hover {
background: azure; } background: 'ghostwhite'; }
body div.page-contents nav.mobile-shortcuts a { body div.page-contents nav.mobile-shortcuts a {
width: 60px; width: 60px;
height: 60px; } height: 60px; }

View File

@ -67,7 +67,7 @@ body {
position: fixed; position: fixed;
overflow-y: scroll; overflow-y: scroll;
z-index: 2; z-index: 2;
background: ghostwhite; background: $color_div;
color: $color-page; color: $color-page;
top: 0%; top: 0%;
left: 0%; left: 0%;
@ -108,7 +108,7 @@ body {
} }
div.description { div.description {
background: ghostwhite; background: $color_div;
input { input {
display: block; display: block;
} }
@ -301,9 +301,9 @@ body {
height: 60px; height: 60px;
a.go-to-index { a.go-to-index {
height: 100%; height: 100%;
background: ghostwhite; background: $color_div;
&:hover { &:hover {
background: $color_div; background: 'ghostwhite';
} }
} }