-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (48 loc) · 886 Bytes
/
Copy pathstyle.css
File metadata and controls
54 lines (48 loc) · 886 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
body, html {
height: 100%;
margin: auto;
display: flex;
flex-direction: column;
align-items: center;
background-color: #F8C8DC;
font-family: sans-serif;
}
.content {
text-align: center;
}
h1 {
font-size: 50px;
color: #292929;
margin-top: 100px;
}
button {
margin: 10px;
padding: 10px 20px;
font-size: large;
cursor: pointer;
background-color: #a6a3f8;
border: none;
border-radius: 15px;
transition: 0.3s;
color: rgb(237, 237, 132);
}
button:hover {
background-color: #e1a9e4;
}
#yesButton {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
transform: scale(1);
box-shadow: 0 0 5px #f3adfd;
}
50% {
transform: scale(1.1);
box-shadow: 0 0 10px #f3adfd;
}
100% {
transform: scale(1);
box-shadow: 0 0 5px #f3adfd;
}
}