-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyle.css
More file actions
56 lines (49 loc) · 794 Bytes
/
Style.css
File metadata and controls
56 lines (49 loc) · 794 Bytes
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', sans-serif;
height: 100vh;
overflow: hidden;
background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
color: white;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
}
.main {
z-index: 10;
position: absolute;
padding: 20px;
max-width: 600px;
}
h1 {
font-size: 3em;
margin-bottom: 20px;
text-shadow: 0 0 10px #fff;
}
.love-note {
font-size: 1.5em;
margin-bottom: 20px;
}
.apology {
font-size: 1.2em;
color: #fffbe0;
margin-bottom: 30px;
}
.from {
font-size: 1.2em;
font-weight: bold;
}
canvas#hearts {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 1;
}