forked from thesaucecode/meteor-amcharts-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styling.css
134 lines (92 loc) · 1.82 KB
/
styling.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
@import url(http://fonts.googleapis.com/css?family=Droid+Sans:400,700);
body {
font-family: 'Droid Sans', sans-serif;
/*background-color: #FEFCFF;*/
background-image: url(/images/cream_pixels.png);
}
.jumbotron {
background-color: #FF8040;
margin-top: 20px;
margin-bottom: 105px;
height: 90px;
color: white;
position: relative;
}
.jumbotron img {
position: absolute;
left: 100px;
top: 30px;
}
.jumbotron h1 {
position: absolute;
font-weight: 700;
left: 220px;
top: 12px;
margin: 0px;
}
.nav.nav-tabs.nav-justified img {
position: absolute;
left: 70px;
}
.nav-tabs.nav-justified li.active a , .nav-tabs.nav-justified li:active a, .nav-tabs.nav-justified li:focus a{
background-color: #FFFFF4;
}
/*.date {
padding-right: 5px;
}
.bar {
padding-right: 5px;
}*/
.footer {
position: relative;
width: 100%;
top: 100px;
display: inline-block;
text-align: right;
padding-right: 15px;
}
.nav li:hover a {
background-color: #EBEBE0;
}
.nav a {
color: #FF8040;
font-size: 14px;
font-weight: 700;
position: relative;
}
.graphic {
background-color: #FFFFF4;
border: solid 1px #ddd;
border-radius: 5px;
border-top-right-radius: 0px;
border-top-left-radius: 0px;
border-top: none;
}
#chartdiv {
width : 100%;
height : 500px;
font-size : 11px;
}
@media (max-width: 995px) {
.nav.nav-tabs.nav-justified img {
position: absolute;
left: 30px;
}
}
.amcharts-graph-graph2 .amcharts-graph-stroke {
stroke-dasharray: 4px 5px;
stroke-linejoin: round;
stroke-linecap: round;
-webkit-animation: am-moving-dashes 1s linear infinite;
animation: am-moving-dashes 1s linear infinite;
}
@-webkit-keyframes am-moving-dashes {
100% {
stroke-dashoffset: -28px;
}
}
@keyframes am-moving-dashes {
100% {
stroke-dashoffset: -28px;
}
}