-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcss.css
More file actions
84 lines (69 loc) · 1.25 KB
/
css.css
File metadata and controls
84 lines (69 loc) · 1.25 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
72
73
74
75
76
77
78
79
80
81
82
83
84
body {
background-image: url("http://www.themesltd.com/backgrounds/hipster/twinkle_twinkle_stars.jpg");
cursor:url(images/Aliens.png), auto;
color:white
}
p {
text-align:center;
font-size:50px;
font:helvetica;
}
.smallimages {
width: 100%;
height: auto;
}
.smallcontainer {
width: 50%;
height:auto;
}
.brandy {
width: 50%%;
float:left;
height:auto;
}
.miami {
float:left;
width:100%;
}
.miami img {
float: left;
}
.spacepopculture {
float:right;
}
.spacepopculture img{
float:right;
transform:rotate(30deg);
}
.roswell {
width: 100%;
}
.roswell img {
float:left;
}
.comet {
width:100%;
}
.comet img {
width:200px;
}
#flying-comet {
-webkit-animation: fly 2s infinite ease;
animation: fly 2s infinite ease;
}
@-webkit-keyframes fly {
0% { transform: translateX(100vh) }
100% { transform: translateX(0) scale(.9,1); }
}
@keyframes fly {
0% { transform: translateX(100vh) }
100% { transform: translateX(0) scale(.9,1); }
}
h1 {
color:white;
font-family:"";
font-style: italic;
font-size: 80px;
text-align:center;
}
/*http://stackoverflow.com/questions/11737168/how-to-embed-fonts-in-css*/