-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlog.css
More file actions
59 lines (50 loc) · 1.19 KB
/
log.css
File metadata and controls
59 lines (50 loc) · 1.19 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
body {
background: url(img/bg3.jpg) no-repeat center top;
}
.container {
max-width: 950px;
min-width: 850px;
overflow: auto;
}
.header {
height: 180px;
background: gray url(img/header1.jpg) no-repeat right bottom;
margin-bottom: 12px;
}
.header img {
height: 150px;
position: relative;
left: 10px;
top: 15px;
animation: windmill-rotation 30s linear 0s infinite normal;
-moz-animation: windmill-rotation 30s linear 0s infinite normal;
-o-animation: windmill-rotation 30s linear 0s infinite normal;
-webkit-animation: windmill-rotation 30s linear 0s infinite normal;
}
@keyframes windmill-rotation {
0% {transform: rotate(0deg);}
100% {transform:rotate(360deg);}
}
@-moz-keyframes windmill-rotation {
0% {transform: rotate(0deg);}
100% {transform:rotate(360deg);}
}
@-o-keyframes windmill-rotation {
0% {transform: rotate(0deg);}
100% {transform:rotate(360deg);}
}
@-webkit-keyframes windmill-rotation {
0% {transform: rotate(0deg);}
100% {transform:rotate(360deg);}
}
.primary {
float: left;
width: 68%;
min-height: 500px; /* temp*/
}
.secondary {
float: right;
background: rgba(234, 232, 232, 0.7);
width: 23%;
min-height: 500px; /* temp*/
}