-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcat.css
More file actions
110 lines (95 loc) · 1.75 KB
/
Copy pathcat.css
File metadata and controls
110 lines (95 loc) · 1.75 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
99
100
101
102
103
104
105
106
107
108
109
110
@import url('https://fonts.googleapis.com/css?family=Gloria+Hallelujah');
* {
margin: 0;
padding: 0;
}
.step {
position: absolute;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
width: 100%;
flex-direction: column;
display: none;
}
#popup {
position: absolute;
top: 20px;
left: 20px;
width: 300px;
height: 200px;
padding: 5px;
border: solid 2px #D56371; /* dark pink */
border-radius: 10%;
background-color: #FFCAB3; /* orange */
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
z-index: 1;
}
#instructions {
font-family: 'Gloria Hallelujah', cursive;
font-size: 18px;
text-align: center;
height: 100px;
display: flex;
justify-content: center;
align-items: center;
}
#next {
background-color: pink; /* light pink */
border-radius: 10%;
border: solid 2px #D56371;
font-family: 'Gloria Hallelujah', cursive;
text-align: center;
font-size: 16px;
padding: 3px;
width: 75px;
}
#next:hover {
cursor: pointer;
background-color: #FADA9A;
transition: background-color 0.5s;
}
@keyframes jump {
0% {transform: translate(0,0);}
50% {transform: translate(0,10px);}
100% {transform: translate(0,0);}
}
@keyframes dizzy {
0% {transform: rotate(0deg);}
100% {transform: rotate(360deg);}
}
#box-cat {
animation: dizzy 2s ease infinite;
}
#unicorn-cat {
transform: rotate(6deg);
}
.blog-text {
color: black;
font-size: 36px;
font-family: 'Gloria Hallelujah', cursive;
font-style: normal;
}
#step-5 {
flex-direction: row;
}
.fam-cat {
margin: 200px;
}
#done-text {
font-size: 28px;
font-family: 'Gloria Hallelujah', cursive;
text-align: center;
max-width: 500px;
}
#last-step {
background-color: #FFCAB3;
}
#party-cat {
transform: translate(-30px, 0);
margin: 20px;
}