This repository was archived by the owner on Apr 29, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.css
More file actions
109 lines (89 loc) · 1.48 KB
/
Copy pathexample.css
File metadata and controls
109 lines (89 loc) · 1.48 KB
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
/* TEXTS */
.ga-active::after {
content:" active now";
display:block;
color:DarkGrey;
}
.ga-sessions::before {
content:"Sessions: ";
}
.ga-unique::before {
content:"Unique: ";
}
.ga-mobile::before {
content:"Mobile: ";
}
.ga-desktop::before {
content:"Desktop: ";
}
.ga-total-active::before {
content:"Active: ";
}
.ga-total-sessions::before {
content:"Sessions: ";
}
.ga-total-unique::before {
content:"Unique: ";
}
.ga-total-mobile::before {
content:"Mobile: ";
}
.ga-total-desktop::before {
content:"Desktop: ";
}
/* STYLES */
.ga-project p::before, .ga-project p::after {
font-weight:400;
font-size:13px;
line-height:13px;
}
.ga-project {
text-align:center;
}
.ga-project {
float:left;
width: calc(25% - 30px);
background-color:white;
padding:15px;
margin:15px;
}
.ga-project p {
margin-bottom:0;
font-weight:700;
}
.ga-active {
margin-bottom:15px !important;
font-size:28px;
line-height:30px;
}
.ga-project .ga-name {
margin-top:0;
}
.ga-percent {
font-weight:400;
color:DarkGrey;
font-size:12px;
}
/* TOTALS */
.ga-totals {
padding:15px;
float:right;
width:calc(66.6666% - 30px);
margin-top:35px;
}
.ga-totals p {
margin-bottom:0;
font-weight:700;
font-size:15px;
width:20%;
display:inline-block;
}
.ga-totals p::before {
font-weight:400;
}
/* CHART */
.ga-chart {
text-align:center;
float:left;
width:33.3333%;
}