initial commit
[danixland-countdown.git] / inc / style / basic.css
CommitLineData
8da42654 1@font-face {
2
3 font-family: digit;
4
5 src: local(digit), url('digital.ttf') format('opentype');
6}
7
8.dnx-countdown {
9 font: 400 6em 'digit', sans-serif;
10}
11.dnx-countdown a {
12 text-decoration: none;
13}
14.dnx-days {
15 font-size: 3em;
16 font-weight: 400;
17}
18.dnx-warning a {
19 text-decoration: none;
20 display: block;
21 margin: 4px auto 0;
22 text-align: center;
23 font-family: Arial, Helvetica, sans-serif;
24 font-size: 14px;
25 font-weight: 600;
26 color: #ffffff;
27 padding: 5px 7px;
28 background: -moz-linear-gradient(
29 top,
30 #ff5454 0%,
31 #960000);
32 background: -webkit-gradient(
33 linear, left top, left bottom,
34 from(#ff5454),
35 to(#960000));
36 -moz-border-radius: 5px;
37 -webkit-border-radius: 5px;
38 border-radius: 5px;
39 border: 1px solid #470000;
40 -moz-box-shadow:
41 0px 2px 6px rgba(000,000,000,0.5),
42 inset 0px 1px 1px rgba(255,255,255,0.5);
43 -webkit-box-shadow:
44 0px 2px 6px rgba(000,000,000,0.5),
45 inset 0px 1px 1px rgba(255,255,255,0.5);
46 box-shadow:
47 0px 2px 6px rgba(000,000,000,0.5),
48 inset 0px 1px 1px rgba(255,255,255,0.5);
49 text-shadow:
50 0px -1px 0px rgba(000,000,000,0.7),
51 0px 1px 0px rgba(255,255,255,0.3);
52}
53.dnx-warning a:hover,
54.dnx-warning a:active {
55 text-decoration: none;
56 background: -moz-linear-gradient(
57 bottom,
58 #ff5454 0%,
59 #960000);
60 background: -webkit-gradient(
61 linear, left bottom, left top,
62 from(#ff5454),
63 to(#960000));
64 -moz-border-radius: 5px;
65 -webkit-border-radius: 5px;
66 border-radius: 5px;
67}