Projet

Général

Profil

Paste
Télécharger (1,82 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / jquery_countdown_timer / css / jquery_countdown_timer.css @ 651307cd

1
.countdownHolder{
2
        width:450px;
3
        margin:0 auto;
4
        font: 28px/1.5 'Open Sans Condensed',sans-serif;
5
        text-align:center;
6
        letter-spacing:-3px;
7
}
8

    
9
.position{
10
        display: inline-block;
11
        height: 1.6em;
12
        overflow: hidden;
13
        position: relative;
14
        width: 1.05em;
15
}
16

    
17
.digit{
18
        position:absolute;
19
        display:block;
20
        width:1em;
21
        background-color:#444;
22
        border-radius:0.2em;
23
        text-align:center;
24
        color:#fff;
25
        letter-spacing:-1px;
26
}
27

    
28
.digit.static{
29
        box-shadow:1px 1px 1px rgba(4, 4, 4, 0.35);
30
        
31
        background-image: linear-gradient(bottom, #3A3A3A 50%, #444444 50%);
32
        background-image: -o-linear-gradient(bottom, #3A3A3A 50%, #444444 50%);
33
        background-image: -moz-linear-gradient(bottom, #3A3A3A 50%, #444444 50%);
34
        background-image: -webkit-linear-gradient(bottom, #3A3A3A 50%, #444444 50%);
35
        background-image: -ms-linear-gradient(bottom, #3A3A3A 50%, #444444 50%);
36
        
37
        background-image: -webkit-gradient(
38
                linear,
39
                left bottom,
40
                left top,
41
                color-stop(0.5, #3A3A3A),
42
                color-stop(0.5, #444444)
43
        );
44
}
45

    
46
/**
47
 * You can use these classes to hide parts
48
 * of the countdown that you don't need.
49
 */
50

    
51
.countDays{ /* display:none !important;*/ }
52
.countDiv0{ /* display:none !important;*/ }
53
.countHours{}
54
.countDiv1{}
55
.countMinutes{}
56
.countDiv2{}
57
.countSeconds{}
58

    
59

    
60
.countDiv{
61
        display:inline-block;
62
        width:16px;
63
        height:1.6em;
64
        position:relative;
65
}
66

    
67
.countDiv:before,
68
.countDiv:after{
69
        position:absolute;
70
        width:5px;
71
        height:5px;
72
        background-color:#444;
73
        border-radius:50%;
74
        left:50%;
75
        margin-left:-3px;
76
        top:0.5em;
77
        box-shadow:1px 1px 1px rgba(4, 4, 4, 0.5);
78
        content:'';
79
}
80

    
81
.countDiv:after{
82
        top:0.9em;
83
}
84

    
85
#jquery-countdown-timer-note{
86
  color: #666666;
87
  font-size: 12px;
88
  margin: 0 auto;
89
  padding: 4px;
90
  text-align: center;
91
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
92
  width: 400px;
93
}