-
Notifications
You must be signed in to change notification settings - Fork 28
/
jquery.gcal_flow.scss
103 lines (101 loc) · 2.79 KB
/
jquery.gcal_flow.scss
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
.gCalFlow {
position: relative;
width: 300px;
height: 400px;
float: left;
font-size: 90%;
overflow: hidden;
text-decoration: none;
padding-bottom: 0.5em;
a, a:visited, a:hover {
color: inherit;
_color: black;
background-color: transparent;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.gcf-header-block {
padding: 5px 4px;
}
.gcf-title-block {
font-weight: bold;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
color: white;
a, a:visited, a:hover { _color: white; }
}
.gcf-last-update-block {
font-size: 76%;
text-align: right;
bottom: 0;
right: 0;
padding-right: 4px;
position: absolute;
}
.gcf-item-container-block {
position: relative;
overflow: hidden;
overflow-y: auto;
height: 90%;
}
.gcf-item-block {
position: relative;
overflow: hidden;
border-bottom: 1px dashed #ccc;
padding: 2px;
margin: 2px 0;
}
.gcf-item-header-block {
white-space: nowrap;
overflow: hidden;
}
.gcf-item-date-block {
font-size: 76%;
font-weight: bold;
}
.gcf-item-title-block {
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}
.gcf-item-body-block {
font-size: 80%;
font-color: #999;
max-height: 2.45em;
}
}
// design
.gCalFlow {
$radius_size: 4px;
$light_color: #fff;
$dark_color: #eee;
border-style: solid;
border-width: 1px;
border-color: #ccc #999 #999 #ccc;
-webkit-border-radius: $radius_size;
-moz-border-radius: $radius_size;
border-radius: $radius_size;
background: -webkit-gradient(linear, left top, left bottom, from($light_color), to($dark_color));
background: -moz-linear-gradient(top, $light_color, $dark_color);
background: -o-linear-gradient(top, $light_color, $dark_color);
background: linear-gradient(to bottom, $light_color, $dark_color);
filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#ffffffff,EndColorStr=#ffeeeeee); zoom:1;
color: blak;
.gcf-header-block {
$light_color: #AAB1DC;
$dark_color: #3B4CA5;
-webkit-border-top-left-radius: $radius_size;
-webkit-border-top-right-radius: $radius_size;
-moz-border-top-left-radius: $radius_size;
-moz-border-top-right-radius: $radius_size;
border-top-left-radius: $radius_size;
border-top-right-radius: $radius_size;
background: -webkit-gradient(linear, left top, left bottom, from($light_color), to($dark_color));
background: -moz-linear-gradient(top, $light_color, $dark_color);
background: -o-linear-gradient(top, $light_color, $dark_color);
background: linear-gradient(to bottom, $light_color, $dark_color);
filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#ffAAB1DC,EndColorStr=#ff3B4CA5); zoom:1;
}
.gcf-item-body-block {
color: #333;
}
}