-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
60 lines (57 loc) · 1.49 KB
/
styles.css
File metadata and controls
60 lines (57 loc) · 1.49 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
@keyframes rainbow {
0% {
background-position: 0% 82%; }
50% {
background-position: 100% 19%; }
100% {
background-position: 0% 82%; } }
@-webkit-keyframes rainbow {
0% {
background-position: 0% 82%; }
50% {
background-position: 100% 19%; }
100% {
background-position: 0% 82%; } }
@-moz-keyframes rainbow {
0% {
background-position: 0% 82%; }
50% {
background-position: 100% 19%; }
100% {
background-position: 0% 82%; } }
@-o-keyframes rainbow {
0% {
background-position: 0% 82%; }
50% {
background-position: 100% 19%; }
100% {
background-position: 0% 82%; } }
body {
margin: 0;
font-size: 100%;
background: url("./elephant.gif") no-repeat center center fixed;
background-size: 100% 100vh;
cursor: none; }
.header {
width: 100%;
height: auto;
border-bottom: 1px solid black;
padding: 15px 0;
background: linear-gradient(124deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
background-size: 1800% 1800%;
-webkit-animation: rainbow 30s ease infinite;
animation: rainbow 30s ease infinite; }
.header .name {
color: black;
font-family: "Whitney SSm A", "Whitney SSm B", "Helvetica Neue", Helvetica, Arial, Tahoma, Geneva, sans-serif;
font-size: 30px;
font-weight: 600; }
.logo {
width: 40px;
height: 54px;
background: url("./dancepenguin.gif") no-repeat;
background-size: 100%;
position: fixed;
bottom: 10px;
right: 10px; }
/*# sourceMappingURL=styles.css.map */