forked from Soumo-git-hub/On-Beat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
143 lines (122 loc) · 2.7 KB
/
style.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
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
/* General Styles */
body {
font-family: 'Poppins', sans-serif;
background-color: #000;
color: #fff;
margin: 0;
padding: 0;
}
/* Header Styling */
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
background-color: #111;
border-bottom: 2px solid #ff004c;
position: relative;
}
.logo {
font-size: 28px;
font-weight: bold;
color: #ff004c; /* Accent color */
}
.top-right {
position: absolute;
right: 20px;
top: 20px;
}
.streak {
font-size: 18px;
color: #ff004c;
}
.profile-button img {
width: 40px; /* Adjust size as needed */
cursor: pointer;
}
.main {
text-align: center;
padding: 50px;
}
.game-container {
position: relative;
max-width: 700px;
margin: 0 auto;
border: 3px solid #ff004c;
padding: 30px;
border-radius: 20px;
box-shadow: 0 0 40px rgba(255, 0, 76, 0.6);
}
.swipe-text {
font-size: 24px;
margin-bottom: 20px;
margin-left: 265px;
animation: bounce 1s infinite alternate;
}
@keyframes bounce {
0% {
transform: translateY(0);
}
100% {
transform: translateY(-10px);
}
}
.model-viewer img {
width: 100%;
border-radius: 15px;
box-shadow: 0 0 20px rgba(255, 0, 76, 0.7);
}
.controls {
margin-top: 30px;
}
.left-controls, .right-controls {
display: flex;
flex-direction: column;
}
button {
background-color: #ff004c;
color: #fff;
border: none;
padding: 15px 25px; /* Increased padding for better appearance */
margin: 5px 0;
font-size: 18px;
cursor: pointer;
border-radius: 10px;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #ff00d0; /* Change button color on hover */
}
/* Footer Styling */
footer {
padding: 20px;
background-color: #111;
text-align: center;
}
footer ul {
list-style: none;
display: flex;
justify-content: center;
gap: 25px;
}
footer ul li a {
text-decoration: none;
color: #fff;
}
footer ul li a:hover {
color: #ff004c;
}
footer p {
margin-top: 10px;
color: #777;
}
.profile-button {
margin-top: 20px; /* Move it down */
margin-right: 20px; /* Add right margin for spacing */
cursor: pointer;
}
.profile-button img {
width: 60px; /* Increase the size of the profile image */
height: 40px; /* Keep it a square */
border-radius: 50%; /* Optional: make the image circular */
}