-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathactivitymap.css
More file actions
108 lines (107 loc) · 1.86 KB
/
activitymap.css
File metadata and controls
108 lines (107 loc) · 1.86 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
/* Copyright 2014 Gagarine Yaikhom (The MIT License) */
.activity-map {
width: 100%;
height: 100%;
}
.activity-map div {
box-sizing:border-box;
-moz-box-sizing:border-box; /* Firefox */
}
.amap-title {
width: 100%;
color: #333;
font-size: 13px;
font-family: arial;
font-weight: bold;
text-align: center;
padding: 10px;
}
.amap-year-blocks {
overflow: auto;
padding: 10px;
width: 100%;
border: 1px solid #ddd;
}
.amap-year-block {
display: inline-block;
float: left;
}
.amap-year-name {
display: block;
float: left;
width: 100%;
color: #09f;
font-family: arial;
font-size: 18px;
padding-top: 15px;
padding-bottom: 5px;
}
.amap-months {
display: inline-block;
float: left;
}
.amap-month {
display: inline-block;
margin: 10px;
height: 170px;
}
.amap-month .has-value {
border-color: #ccc;
}
.amap-month-name,
.amap-month-name-filler {
height: 24px;
}
.amap-month-name {
color: #555;
font-size: 11px;
font-family: arial;
font-weight: bold;
text-align: center;
padding: 5px;
}
.amap-empty-day,
.amap-week-day,
.amap-week-name {
width: 15px;
height: 15px;
margin: 2px;
float: left;
border: 1px solid #eee;
}
.amap-empty-day {
background: #fff;
border-color: #fff;
}
.amap-week-day {
background: #fbfbfb;
}
.amap-week-name {
color: #aaa;
font-size: 10px;
font-family: arial;
text-align: center;
border-color: #fff;
}
.amap-week-start {
clear: left;
}
.amap-compact .amap-month-days {
float: left;
}
.amap-compact .amap-week-days {
display: inline-block;
}
.amap-compact .amap-week-days div {
clear: both;
margin: 0px;
border-bottom: 0px;
border-right: 0px;
}
.amap-month-names {
display: inline-block;
float: left;
}
.amap-month-names .amap-month-name {
float: left;
}