-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
99 lines (86 loc) · 1.65 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: linear-gradient(145deg, #ffdde1, #ee9ca7);
font-size: 16px;
}
.wrapper {
position: relative;
width: 100%;
max-width: 400px;
background: #fff7f8;
border-radius: 20px;
box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
text-align: center;
padding: 20px;
}
h2 {
font-size: 2.5em;
color: #ff6b81;
margin: 15px 0;
font-weight: bold;
font-family: 'Dancing Script', cursive;
}
.gif {
width: 100%;
max-width: 350px;
border-radius: 15px;
margin: 15px 0;
}
.btn-group {
margin-top: 30px;
position: relative;
display: flex;
justify-content: space-evenly;
height: 50px;
}
button {
width: 130px;
height: 45px;
font-size: 1.1em;
font-weight: bold;
border-radius: 30px;
outline: none;
cursor: pointer;
border: none;
transition: background 0.3s ease, transform 0.3s ease;
}
button.yes-btn {
background: #ff6b81;
color: white;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
button.yes-btn:hover {
background: #ff8b94;
transform: translateY(-5px);
}
button.no-btn {
background: #fff;
color: #ff6b81;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
position: relative;
}
button.no-btn:hover {
background: #ffd1dc;
}
@media (max-width: 768px) {
.wrapper {
padding: 10px;
}
h2 {
font-size: 2em;
}
button {
width: 100px;
height: 40px;
font-size: 1em;
}
}