Skip to content

Commit

Permalink
Merge pull request #34 from jeet1703/buttonchange
Browse files Browse the repository at this point in the history
button style changed
  • Loading branch information
intrepidbird authored Oct 30, 2023
2 parents b45b1fc + 5fbe7a8 commit 58891df
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,30 @@ header {
border-radius: 20px;
}

header:hover{
box-shadow: 0 0 11px rgba(33,33,33,.2);
}

button{
border-radius: 20px;
transition: background-color 0.3s, box-shadow 0.3s, color 0.3s;
}

button:hover{
background-color: rgba(0,0,0,0.1);
background-color: rgba(0, 0, 0, 0.1);
color: white;
box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.2);
transform: scale(1.1);
}

/* Styling for the graph element */
#graph {
width: 100%;
height: 400px;
}
#graph:hover{
box-shadow: 0 0 11px rgba(33,33,33,.2);
}

/* Style for the header with a specific class name */
.header-style {
Expand Down

0 comments on commit 58891df

Please sign in to comment.