-
Notifications
You must be signed in to change notification settings - Fork 2
/
easy-count-down.css
114 lines (112 loc) · 3.43 KB
/
easy-count-down.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
114
/* #########################################################
### COUNTER
######################################################### */
#stopWatch.outer {
border-radius: 50%;
position: relative;
margin: 10px 10px 0;
text-align: center;
}
#stopWatch .points {
width: 100%;
height: 2px;
top: 50%;
left: 0;
position: absolute;
margin-top: -1px;
}
#stopWatch .circle {
width: 2px;
height: 2px;
border-radius: 50%;
}
#stopWatch .circle.activePoint {
background: #68e8ff;
}
#stopWatch .circle.inactivePoint {
background: rgba(104, 232, 255, 0.15);
}
#stopWatch .floatRight {
float: right;
}
#stopWatch .floatLeft {
float: left;
}
#stopWatch .squere {
height: 2px;
width: 12px;
margin: 0 7px;
}
#stopWatch .squere.floatLeft.activePoint {
background: #68e8ff;
/* For browsers that do not support gradients */
background: -webkit-linear-gradient(left, #68e8ff, rgba(104, 232, 255, 0));
/*Safari 5.1-6*/
background: -o-linear-gradient(right, #68e8ff, rgba(104, 232, 255, 0));
/*Opera 11.1-12*/
background: -moz-linear-gradient(right, #68e8ff, rgba(104, 232, 255, 0));
/*Fx 3.6-15*/
background: linear-gradient(to right, #68e8ff, rgba(104, 232, 255, 0));
/*Standard*/
}
#stopWatch .squere.floatLeft.inactivePoint {
background: rgba(104, 232, 255, 0.15);
/* For browsers that do not support gradients */
background: -webkit-linear-gradient(left, rgba(104, 232, 255, 0.15), rgba(104, 232, 255, 0));
/*Safari 5.1-6*/
background: -o-linear-gradient(right, rgba(104, 232, 255, 0.15), rgba(104, 232, 255, 0));
/*Opera 11.1-12*/
background: -moz-linear-gradient(right, rgba(104, 232, 255, 0.15), rgba(104, 232, 255, 0));
/*Fx 3.6-15*/
background: linear-gradient(to right, rgba(104, 232, 255, 0.15), rgba(104, 232, 255, 0));
/*Standard*/
}
#stopWatch .squere.floatRight.activePoint {
background: #68e8ff;
/* For browsers that do not support gradients */
background: -webkit-linear-gradient(left, rgba(104, 232, 255, 0), #68e8ff);
/*Safari 5.1-6*/
background: -o-linear-gradient(right, rgba(104, 232, 255, 0), #68e8ff);
/*Opera 11.1-12*/
background: -moz-linear-gradient(right, rgba(104, 232, 255, 0), #68e8ff);
/*Fx 3.6-15*/
background: linear-gradient(to right, rgba(104, 232, 255, 0), #68e8ff);
/*Standard*/
}
#stopWatch .squere.floatRight.inactivePoint {
background: rgba(104, 232, 255, 0.15);
/* For browsers that do not support gradients */
background: -webkit-linear-gradient(left, rgba(104, 232, 255, 0), rgba(104, 232, 255, 0.15));
/*Safari 5.1-6*/
background: -o-linear-gradient(right, rgba(104, 232, 255, 0), rgba(104, 232, 255, 0.15));
/*Opera 11.1-12*/
background: -moz-linear-gradient(right, rgba(104, 232, 255, 0), rgba(104, 232, 255, 0.15));
/*Fx 3.6-15*/
background: linear-gradient(to right, rgba(104, 232, 255, 0), rgba(104, 232, 255, 0.15));
/*Standard*/
}
#stopWatch .showCount {
padding: 0 5px;
display: inline-block;
color: #68e8ff;
}
#stopWatch .countVal{
color: white;
}
@media all and (max-width: 765px) {
.main_container .side_navigation::after {
background-size: 146px;
}
#stopWatch.outer {
height: 40px;
}
#stopWatch .counter {
line-height: 40px;
}
#stopWatch .points {
display: none;
}
.main_container .main_content .top_navigation .logo .svg {
width: auto;
}
}