forked from PwnFunction/Blank-Rick-Roll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
52 lines (46 loc) · 890 Bytes
/
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
html {
display: flex;
height:100vh;
overflow: hidden;
justify-content: center;
align-items: center;
flex-direction:column;
background: #222;
}
body::before, body::after {
font-weight: bold;
font-family: 'SF Mono', 'Courier New', Courier, monospace;
font-size: 42px;
color: #ff4473;
}
head {
display: block;
background-image: url(https://media.giphy.com/media/Ju7l5y9osyymQ/giphy.gif);
height:20rem;
width:20rem;
background-repeat: no-repeat;
background-size: cover;
border: 5px solid #fff;
border-radius: 10px;
border-style: dashed;
}
body::before {
display: inline-block;
padding-top: 3rem;
content: "Never gonna give you up...";
}
body::after {
margin-left: 16px;
display: inline;
content: "i";
background: #ff4473;
animation: blink 1s infinite;
}
@keyframes blink {
from {
opacity: 1;
}
to {
opacity: 0;
}
}