-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (62 loc) · 1.35 KB
/
style.css
File metadata and controls
71 lines (62 loc) · 1.35 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
body {
background-image: url('suede-450-mm-architextures.jpg');
background-repeat: repeat;
}
p {
font-family: "Dekko", cursive;
font-weight: 400;
font-style: normal;
font-size: 30px;
color: ghostwhite;
transition: font-size ease-in-out .1s;
transform: translateZ(0);
will-change: transform;
}
p:hover {
font-size: 33px;
}
h1 {
font-family: "Dekko", cursive;
font-weight: 400;
font-style: normal;
font-size: 48px;
-webkit-text-stroke-width: 2px;
-webkit-text-stroke-color: white;
-webkit-animation:spin 4s linear infinite;
animation:spin 8s linear infinite;
animation-direction: alternate;
}
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(8deg); }
100% { -webkit-transform: rotate(-8deg); }
}
@keyframes spin {
0% {
-webkit-transform: rotate(8deg);
transform:rotate(8deg);
}
100% {
-webkit-transform: rotate(-8deg);
transform:rotate(-8deg);
}
}
h2 {
font-family: verdana;
}
div {
font-family: Arial;
font-weight: 400;
font-style: normal;
font-size: 30px;
color: ghostwhite;
transition: font-size ease-in-out .1s;
transform: translateZ(0);
will-change: transform;
}
div:hover {
font-size: 33px;
}
h1 {text-align: center;}
h2 {text-align: center;}
p {text-align: center;}
div {text-align: center;}