-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (49 loc) · 883 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
@keyframes anim {
from { opacity: 0%;}
to { opacity: 100%;}
}
#center ul {
display: table;
margin: 10px;
padding: 0px;
list-style-type: none;
}
#center ul li {
padding: 20px;
font-size: 20px;
border: none;
border-left: 1px grey solid;
border-right: 1px grey solid;
float: left;
margin: 2px;
}
#cat {
width: 50%;
}
#d1 {
animation: anim 4s forwards;
opacity: 0%;
color: rgb(200, 200, 200);
}
#d2 {
animation: anim 4s forwards;
animation-delay: 2s;
font-size: 20px;
opacity: 0%;
color: rgb(100, 100, 100);
}
#center {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#xd {
font-size: 15px;
}
body {
background: rgb(20, 20, 20);
color: rgb(200, 200, 200);
font-family:Georgia, 'Times New Roman', Times, serif;
font-size: 30px;
}