-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
98 lines (84 loc) · 1.72 KB
/
Copy pathstyle.css
File metadata and controls
98 lines (84 loc) · 1.72 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
* {
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(135deg, #ffe5ec, #ffb3c6);
}
.container {
text-align: center;
width: 100%;
display: flex;
justify-content: center;
}
.card {
background: white;
padding: 35px;
border-radius: 20px;
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
max-width: 400px;
width: 90%;
}
img {
width: 140px;
margin-bottom: 15px;
}
h1 {
font-size: 1.4rem;
color: #ff4d6d;
margin-bottom: 25px;
line-height: 1.4;
}
/* Kelompok Tombol untuk Pilihan Iya / Tidak */
.btn-group {
display: flex;
justify-content: center;
gap: 15px;
}
button {
padding: 12px 30px;
font-size: 1rem;
font-weight: bold;
border: none;
border-radius: 50px;
cursor: pointer;
transition: all 0.2s ease;
}
/* Desain tombol pilihan biasa */
.btn-choice {
background-color: #f0f0f0;
color: #333;
flex: 1;
}
.btn-choice:hover {
background-color: #e0e0e0;
transform: translateY(-2px);
}
/* Desain tombol Lanjut warna Pink */
.btn-next {
background-color: #ff4d6d;
color: white;
width: 100%;
}
.btn-next:hover {
background-color: #ff758f;
transform: translateY(-2px);
}
/* --- SISTEM PINDAH HALAMAN --- */
.dynamic-page {
display: none;
}
.dynamic-page.active {
display: block;
animation: fadeIn 0.4s ease-out;
}
@keyframes fadeIn {
from { opacity: 0; transform: scale(0.96); }
to { opacity: 1; transform: scale(1); }
}