-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (72 loc) · 1.98 KB
/
style.css
File metadata and controls
72 lines (72 loc) · 1.98 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Arial', sans-serif;
}
body {
width: 100%;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #ffe5e5;
overflow: hidden;
}
.container {
display: flex;
flex-direction: column;
text-align: center;
align-items: center;
gap: 20px;
max-width: 500px;
margin: 20px;
position: relative;
}
.sticker {
width: 200px;
height: 200px;
margin: 0 auto;
}
h1 {
color: #e91e63;
font-size: 2.2rem;
margin: 15px 0;
}
p {
color: #333;
font-size: 1.3rem;
margin-bottom: 20px;
}
.btn {
display: flex;
gap: 25px;
flex-wrap: wrap;
justify-content: center;
}
.btn a {
text-decoration: none;
color: #fff;
background: #e91e63;
padding: 12px 30px;
border-radius: 25px;
box-shadow: 0 4px 15px rgba(233,30,99,0.3);
transition: all 0.3s ease;
border: 2px solid transparent;
}
.btn a:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(233,30,99,0.4);
}
#move-random {
cursor: pointer;
background: #ff4081 !important;
}
.proposal-screen {
display: none;
animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}