We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b45b1fc + 5fbe7a8 commit 58891dfCopy full SHA for 58891df
styles.css
@@ -14,20 +14,30 @@ header {
14
border-radius: 20px;
15
}
16
17
+header:hover{
18
+ box-shadow: 0 0 11px rgba(33,33,33,.2);
19
+}
20
+
21
button{
22
23
+ transition: background-color 0.3s, box-shadow 0.3s, color 0.3s;
24
25
26
button:hover{
- background-color: rgba(0,0,0,0.1);
27
+ background-color: rgba(0, 0, 0, 0.1);
28
color: white;
29
+ box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.2);
30
+ transform: scale(1.1);
31
32
33
/* Styling for the graph element */
34
#graph {
35
width: 100%;
36
height: 400px;
37
38
+#graph:hover{
39
40
41
42
/* Style for the header with a specific class name */
43
.header-style {
0 commit comments