-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathstyles.css
86 lines (74 loc) · 1.5 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Mulish', sans-serif;
cursor: default;
background-color: #F0F0F0;
color: #1C1C1A;
height: 100vh; /* Use viewport height instead of 100% to occupy full screen height */
text-align: center;
overflow: auto;
display: flex;
flex-direction: column;
position: relative;
}
.navbar {
display: flex;
align-items: center;
justify-content: space-between;
background-color: #154151;
box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* optional drop shadow */
}
.logo-container img {
height: 40px;
width: auto;
fill: white;
}
#pianoRollContainer {
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
margin-bottom: 20px;
font-size: 42px;
}
button {
padding: 15px 25px;
font-size: 18px;
color: #F0F0F0;
background-color: #944038;
border: none;
cursor: pointer;
transition: background-color 0.3s;
border-radius: 5px;
}
button {
/* ... existing button styles ... */
border-bottom: 3px solid #381815; /* A darker shade for 3D effect */
position: relative; /* Required for the top movement on hover */
transition: all 1.1s ease; /* Transition for all properties */
}
#buttonContainer {
display: flex;
justify-content: center;
}
button:hover {
transform: scale(1.05);
}
.piano-roll-svg {
border: 2px solid #381815;
}
.piano-roll-card {
border: 1px solid #ccc;
margin-bottom: 10px;
padding: 10px;
width: 50%;
box-sizing: border-box;
}
.description {
margin-top: 10px;
}