widgets.css
1.24 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
.widget-box .widget-box-item{
padding: 15px;
margin-bottom: 20px;
border-radius: 4px;
background-color: #fff;
border:1px solid #ddd;
}
.widget-box h3{
margin-top: 15px;
}
.widget-box h4{
font-size: 14px;
}
.widget-circle-icon{
position: relative;
width: 80px;
height: 80px;
}
.widget-circle-icon .ion-record{
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
z-index: 1;
font-size: 80px;
line-height: 80px;
text-align: center;
}
.widget-circle-icon .ion{
font-size: 30px;
position: absolute;
top: 50%;
left: 50%;
z-index: 2;
width: 30px;
height: 30px;
text-align: center;
line-height: 30px;
margin: -15px 0 0 -15px;
color: #fff;
}
/* inline widget */
.widget-box-inline{
overflow: hidden;
padding-top: 10px;
padding-bottom: 10px;
}
.widget-box-inline .widget-box-item{
position: relative;
padding:10px;
}
.widget-box-inline .widget-box-item:after{
content: '';
position: absolute;
right: -1px;
top: 0;
width: 1px;
height: 100%;
background-color: #e9e9e9;
}
.widget-box-item h3{
margin-top: 15px;
margin-bottom: 15px;
color: #666;
}
.widget-box-inline .widget-box-item .ion{
margin-right: 15px;
transform: scale(1.3);
}
.widget-box-item h4{
font-weight: normal;
}