Skip to content
This repository has been archived by the owner on Dec 22, 2024. It is now read-only.

Commit

Permalink
CSS page
Browse files Browse the repository at this point in the history
  • Loading branch information
galdafadi committed Jan 16, 2024
1 parent 57fef91 commit 31b1d4b
Showing 1 changed file with 16 additions and 18 deletions.
34 changes: 16 additions & 18 deletions styles.css
Original file line number Diff line number Diff line change
@@ -1,26 +1,24 @@
body {
font-family: 'Arial', sans-serif;
margin: 20px;
background-color: #f2f2f2; /* Light grey background */
/* Styles for the bar chart */
.bar {
fill: steelblue;
}

#chart-container {
width: 800px;
margin: 20px auto;
.bar:hover {
fill: lightpink;
}

h1 {
font-size: 32px; /* Bigger font size */
font-weight: bold; /* Bold */
text-align: center;
.axis-label {
font-size: 14px;
font-family: Arial, sans-serif;
}

/* Darker pink for bars */
rect {
fill: #ff6699;
.axis path,
.axis line {
fill: none;
stroke: black;
shape-rendering: crispEdges;
}

/* Black text for labels */
text {
fill: black;
}
/* Adding light grey background */
body {
background-color: #f0f0f0; /* Light grey color */

0 comments on commit 31b1d4b

Please sign in to comment.