-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
113 lines (101 loc) · 1.8 KB
/
index.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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
BODY
{
background: #fff url( 'img/bg.jpg' );
-webkit-background-size: 100% 100%;
overflow: hidden;
}
#container
{
position: fixed;
text-align: center;
left: 50%;
top: 45%;
margin-top: -120px;
margin-left: -150px;
width: 300px;
}
.progressbar
{
margin: 0 auto;
width: 150px;
border-radius: 3px;
text-align: left;
padding: 1px;
background-color: rgba( 0, 0, 0, 0.6);
float: right;
}
.reflection
{
-webkit-box-reflect: below -1px -webkit-gradient(linear, left top, left bottom, from(transparent), from(rgba(0, 0, 0, 0.0)), to(rgba(255, 255, 255, 0.5)));
}
.progressbar .inner
{
border-radius: 2px;
background-color: rgba( 0, 240, 0, 1.0);
width: 0.2%;
height: 11px;
}
#progress_text
{
position: absolute;
width: 500px;
right: 170px;
bottom: 0px;
margin: 0 auto;
text-align: right;
font-size: 12px;
font-family: helvetica;
color: rgba( 0, 0, 0, 0.4);
letter-spacing: -1px;
text-shadow: 0px 0px 3px white;
overflow: hidden;
white-space: nowrap;
}
#label
{
text-align: center;
font-size: 16px;
font-family: courier;
//font-weight: bold;
color: rgba( 0, 0, 0);
text-shadow: 1px 1px 0px white;
overflow: hidden;
white-space: nowrap;
}
@-webkit-keyframes walk
{
0%
{
-webkit-transform: rotateY(90deg) rotateZ(90deg);
}
50%
{
-webkit-transform: rotateY(270deg) rotateZ(90deg);
}
100%
{
-webkit-transform: rotateY(450deg) rotateZ(90deg);
}
}
#smiley
{
-webkit-transform: rotateY(90deg);
text-align: center;
background-color: #09F;
width: 48px;
height: 48px;
color: #000;
font-size: 32px;
font-family: arial;
font-weight: bold;
border-radius: 6px;
display: inline-block;
border: 3px solid #000;
}
.smiley-animation
{
-webkit-animation-name: walk;
-webkit-animation-duration: 2s;
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: linear;
}