forked from GitHubCommander/commander
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (54 loc) · 756 Bytes
/
style.css
File metadata and controls
64 lines (54 loc) · 756 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
55
56
57
58
59
60
61
62
63
64
.flex {
display: flex;
padding: 10px;
}
.flex img {
width: 160px;
height: 160px;
}
.flex p {
width: 300px;
display: inline-block;
margin-left: 15px;
font-size: 13px;
color: #b3aeb5;
}
main{
margin-left:120px;
}
h1{
font-size: 44px;
}
.text_fadein{
animation-name: fade;
animation-duration: 2.5s;
animation-iteration-count: 1;
}
.link a{
display: block;
}
@keyframes fade{
0%{
opacity: 0;
}
100%{
opacity: 1;
}
}
.animation_box {
padding: 10px;
animation: fadeIn 2.5s ease 1s 1 normal backwards;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
header h1{
text-align: center;
}