-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
68 lines (61 loc) · 1.12 KB
/
style.css
File metadata and controls
68 lines (61 loc) · 1.12 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
body {
background: linear-gradient(135deg, #ffe1fa 0%, #ffd6e0 100%);
min-height: 100vh;
margin: 0;
font-family: 'Comic Sans MS', cursive, sans-serif;
display: flex;
align-items: center;
justify-content: center;
}
.container {
width: 100%;
max-width: 420px;
}
.card {
background: white;
border-radius: 22px;
padding: 40px 30px 30px 30px;
text-align: center;
box-shadow: 0 14px 40px rgba(0,0,0,0.14);
position: relative;
width: 370px;
margin: 12px auto;
}
h1 {
font-size: 2em;
margin: 0 0 0.5em 0;
color: #f14a95;
}
#greeting {
font-size: 1.17em;
color: #5d213b;
min-height: 90px;
margin-bottom: 1.5em;
}
#surpriseBtn {
margin-top: 12px;
padding: 14px 32px;
border-radius: 100px;
border: none;
background: #f14a95;
color: #fff;
font-size: 1.13em;
cursor: pointer;
transition: background 0.3s;
box-shadow: 0 4px 10px #faaeae40;
}
#surpriseBtn:hover {
background: #ff9eb7;
}
#confetti {
pointer-events: none;
position: absolute;
left: 0; top: 0;
width: 100%; height: 100%;
}
#footer {
margin-top: 2.1em;
font-size: 1em;
color: #9d3875;
opacity: 0.87;
}