-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (56 loc) · 1003 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
53
54
55
56
57
58
59
60
61
62
63
*{
box-sizing: border-box;
padding: 0;
margin: 0;
}
body{
min-height: 100vh;
width: 100%;
overflow: hidden;
background-color: rgb(30, 31, 38);
}
.message{
min-height: 100vh;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
.message__content{
background-color: rgba(0, 0, 0, 0.75);
color: #de10f7;
font-size: 3em;
padding: .8em;
font-weight: bold;
border-radius: 10px;
}
.message__letter{
display: inline-block;
transition: all 500ms;
margin-right: .5rem;
}
@keyframes fromTopToBottom{
from{
transform: translateY(-500px);
}
to{
transform: translateY(0);
}
}
@keyframes movMessage{
from{
transform: translate(-500%,-500%);
}
to{
transform: translate(0,0);
}
}
@keyframes animateImg{
from{
transform: scale(0) rotate(0);
}
to{
transform: scale(1) rotate(360deg);
}
}