Blame view

app/css/pages/reports.css 1.86 KB
feacde5ff   Rishav   setup acuefuel in...
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
  
  
  #big_stats 
  { 
  	width: 100%; 
  	display: table;
  	margin-top: .5em;
  	margin-bottom: 1em;
  	
  }
  
  .big-stats-container .widget-content {
  	background: #E9E9E9;
  	background:-moz-linear-gradient(top, #FAFAFA 0%, #E9E9E9 100%); /* FF3.6+ */
  	background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#FAFAFA), color-stop(100%,#E9E9E9)); /* Chrome,Safari4+ */
  	background:-webkit-linear-gradient(top, #FAFAFA 0%,#E9E9E9 100%); /* Chrome10+,Safari5.1+ */
  	background:-o-linear-gradient(top, #FAFAFA 0%,#E9E9E9 100%); /* Opera11.10+ */
  	background:-ms-linear-gradient(top, #FAFAFA 0%,#E9E9E9 100%); /* IE10+ */
  	background:linear-gradient(top, #FAFAFA 0%,#E9E9E9 100%); /* W3C */
  	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA', endColorstr='#E9E9E9');
  	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA', endColorstr='#E9E9E9')";
  }
  
  #big_stats .stat
  {
  	width: 25%;
  	height: 90px;
  	text-align: center;
  	display: table-cell;
  	padding: 0;
  	position: relative;
  	
  	border-right: 1px solid #CCC;
  	border-left: 1px solid #FFF;
  }
  
  #big_stats .stat:first-child {
  	border-left: none;
  }
  
  #big_stats .stat:last-child {
  	border-right: none;
  }
  
  #big_stats .stat h4
  {
  	font-size: 11px;
  	font-weight: bold;
  	color: #777;
  	margin-bottom: 1.5em;
  }
  
  #big_stats .stat .value
  {
  	font-size: 56px;
  	font-weight: bold;
  	color: #333;
  	line-height: 1em;
  }
  
  
  
  @media all and (max-width: 950px) and (min-width: 1px) {
  	
  	#big_stats {
  		display: block;
  		margin-bottom: -40px;
  	}
  	
  	#big_stats .stat {
  		width: 49%;
  		display: block;
  		margin-bottom: 3em;
  		float: left;
  	}	
  	
  	#big_stats .stat:nth-child(2) {
  		border-right: none;
  	}
  	
  	#big_stats .stat:nth-child(3) {
  		border-left: none;
  	}
  	
  }
  
  @media (max-width: 767px) {
  	#big_stats .stat .value {
  		font-size: 40px;
  	}
  }