-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
143 lines (125 loc) · 2.35 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
:root {
--background-color: #000;
}
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
html,
body {
height: 100%;
overflow: hidden;
background-color: var(--background-color);
}
h1 {
font-size: 300px;
color: #fff;
font-family: 'Fuzzy Bubbles', cursive;
/* font-family: 'Love Ya Like A Sister', cursive; */
}
canvas {
position: absolute;
width: 100%;
height: 100%;
color: #e54343;
box-shadow: 0 0 10px #e54343, 0 0 40px #e54343, 0 0 80px #e54343;
}
canvas {
z-index: 1;
display: block;
position: absolute;
transform: scale(1.3);
transform: translate(-50%, -50%);
animation: heart 1s ease infinite;
}
@keyframes heart {
0% {
transform: scale(1.35);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1.3);
}
}
.i {
margin: 150px 0 0 180px;
}
.u {
margin: 150px 120px 0 0;
}
.description {
margin-top: 50px;
font-size: 35px;
text-align: center;
color: #fff;
font-family: 'Fuzzy Bubbles', cursive;
}
.img-love {
margin: 240px 0 0 35px;
width: 8%;
height: 8%;
cursor: pointer;
}
.last-rose {
color: #e54343;
}
.header {
display: flex;
}
.img-relationship {
width: 4%;
margin: 40px auto 0;
}
.lop-gia {
display: flex;
}
.shape-1 {
position: absolute;
z-index: 5;
width: 8px;
height: 250px;
border-radius: 35% 35%;
background: #000;
opacity: 0.8;
justify-content: center;
box-shadow: 0 0 10px rgb(0, 0, 0), 0 0 40px rgb(0, 0, 0), 0 0 80px rgb(0, 0, 0);
transform: translateX(713px) translateY(20px);
}
.shape {
position: absolute;
z-index: 5;
width: 8px;
height: 290px;
border-radius: 35% 35%;
background: rgba(0, 0, 0, 1);
justify-content: center;
opacity: 0.8;
box-shadow: 0 0 10px rgb(0, 0, 0), 0 0 40px rgb(0, 0, 0), 0 0 80px rgb(0, 0, 0);
transform: translateX(713px) translateY(265px);
}
.shape-2 {
position: absolute;
z-index: 5;
width: 8px;
height: 200px;
border-radius: 35% 35%;
background: #000;
opacity: 0.8;
justify-content: center;
box-shadow: 0 0 10px rgb(0, 0, 0), 0 0 40px rgb(0, 0, 0), 0 0 80px rgb(0, 0, 0);
transform: translateX(713px) translatey(550px);
}
@keyframes modal {
0% {
height: 295px;
}
50% {
height: 300px;
}
100% {
height: 290px;
}
}