-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
153 lines (136 loc) · 2.84 KB
/
Copy pathstyle.css
File metadata and controls
153 lines (136 loc) · 2.84 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
body {
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
}
.background_menu {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
position: fixed;
animation: fadeIn 1s;
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
z-index: 5;
}
#menu {
padding-bottom: 30px;
border-radius: 20px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
background-color: #fff;
}
#img-container {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
#img-container img {
width: 500px;
height: 300px;
border-radius: 20px 20px 0 0;
}
.content {
display: flex;
width: 500px;
gap: 5px;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.content h1 {
border: 3px solid #000;
padding: 8px;
font-size: 26px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
margin: 20px 0;
}
.content h4 {
font-size: 20px;
font-weight: 500;
padding: 0 8px;
line-height: 1.5;
margin: 10px 0;
color: #555; /* soft grey */
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
letter-spacing: 0.5px;
}
.content h5 {
font-size: 15px;
font-style: italic;
color: #909090;
margin-top: 5px;
padding: 0 8px;
margin-bottom: 20px;
text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.1);
letter-spacing: 0.4px;
}
.controls {
display: flex;
gap: 20px;
margin-bottom: 20px;
align-items: center;
}
.controls p {
font-size: 14px;
font-weight: 300;
}
.keys-img {
width: 80px;
height: 60px;
}
.f11-img {
width: 50px;
height: 40px;
}
#play-btn {
padding: 12px;
background-color: #000;
color: #fff;
border-radius: 20px;
font-size: 16px;
cursor: pointer;
margin-top: 10px;
}
#play-btn:hover {
background-color: #787878;
}
.painting-info {
position: fixed;
width: 400px;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 400px;
padding: 15px;
margin: 15px 15px;
background: linear-gradient(135deg, #456789a7 0%, #89abcda9 100%);
border-radius: 20px;
color: white; /* Ensure text is readable against the background */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
animation: fadeIn 0.6s;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.painting-info p {
font-size: 22px;
font-weight: 600;
text-align: justify;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}