-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
114 lines (105 loc) · 1.89 KB
/
style.css
File metadata and controls
114 lines (105 loc) · 1.89 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
111
112
113
114
@import url("https://fonts.googleapis.com/css?family=Luckiest+Guy&display=swap");
body {
font-family: sans-serif;
background-color: deepskyblue;
color: white;
}
h1 {
margin: 0;
padding: 0;
font-family: "Luckiest Guy";
font-size: 130px;
text-align: center;
text-shadow: 0 0.1em 20px black, 0.05em -0.03em 0 black, 0.05em 0.005em 0 black, 0em 0.08em 0 black, 0.05em 0.08em 0 black, 0px -0.03em 0 black, -0.03em -0.03em 0 black, -0.03em 0.08em 0 black, -0.03em 0 0 black;
}
h1 span {
display: inline-block;
}
h1 .first {
color: #F21C97;
-webkit-animation: bop 1s infinite alternate;
animation: bop 1s infinite alternate;
}
h1 .last {
-webkit-animation: boppity 1s infinite alternate;
animation: boppity 1s infinite alternate;
}
@-webkit-keyframes bop {
from {
transform: scale(1);
}
to {
transform: scale(1.1);
}
}
@keyframes bop {
from {
transform: scale(1.1);
}
to {
transform: scale(1);
}
}
@-webkit-keyframes boppity {
from {
transform: scale(1);
}
to {
transform: scale(1.1) rotateZ(-3deg);
}
}
@keyframes boppity {
from {
transform: scale(1);
}
to {
transform: scale(1.1) rotateZ(-3deg);
}
}
@-webkit-keyframes move-left {
from {
transform: translateX(300%);
}
to {
transform: translateX(-300%);
}
}
@keyframes move-left {
from {
transform: translateX(300%);
}
to {
transform: translateX(-300%);
}
}
.bio {
margin: 0 auto 0 auto;
max-width: 70vw;
}
.sky {
margin-bottom: 100px;
}
.sky img {
-webkit-animation: move-left 60s infinite alternate;
animation: move-left 60s infinite alternate;
position: absolute;
}
.cloud-big {
top: 118px;
left: 280px;
transform: translateX(100%);
}
.cloud-medium {
top: 89px;
left: 50px;
}
.cloud-small {
top: 74px;
left: 195px;
}
.sun {
width: 70px;
height: 70px;
background: gold;
border-radius: 50%;
}