~liu-xiao-guo/debiantrial/html-weibo

« back to all changes in this revision

Viewing changes to www/css/app.css

  • Committer: XiaoGuo, Liu
  • Date: 2015-03-03 11:38:03 UTC
  • Revision ID: xiaoguo.liu@canonical.com-20150303113803-p3tux1bhqxa9k8vx
Initial release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#hello-page {
 
2
        padding: 1rem;
 
3
}
 
4
 
 
5
.title, .introduction, .button {
 
6
        margin-bottom: 1rem;
 
7
}
 
8
 
 
9
.is-hidden {
 
10
        display: none;
 
11
}
 
12
 
 
13
.img-cordova {
 
14
        display: block;
 
15
        margin: 0 auto;
 
16
}
 
17
 
 
18
.cordova-indicator {
 
19
        text-align: center;
 
20
}
 
21
 
 
22
@keyframes fade {
 
23
    from { opacity: 1.0; }
 
24
    50% { opacity: 0.4; }
 
25
    to { opacity: 1.0; }
 
26
}
 
27
 
 
28
@-webkit-keyframes fade {
 
29
    from { opacity: 1.0; }
 
30
    50% { opacity: 0.4; }
 
31
    to { opacity: 1.0; }
 
32
}
 
33
 
 
34
.blink {
 
35
    animation:fade 3000ms infinite;
 
36
    -webkit-animation:fade 3000ms infinite;
 
37
}
 
38