-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·72 lines (62 loc) · 2.17 KB
/
style.css
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
div.block-title {
/* border */
border-bottom-left-radius: 0px 0px;
border-bottom-right-radius: 0px 0px;
border: 1px solid #ccc;
border-bottom-color: #bbb;
border-top-left-radius: 5px 5px;
border-top-right-radius: 5px 5px;
/* positioning */
padding: 4px 9px;
/* font */
color: #333;
font-size: 13px;
text-shadow: white 0px 1px 0px;
/* gradients */
background: #999; /* default for non-css3 browsers */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#aaaaaa'); /* IE */
background: -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#aaa)); /* webkit */
background: -moz-linear-gradient(top, #ccc, #aaa); /* mozilla */
}
div.block-cell {
/* border */
border-bottom-left-radius: 0px 0px;
border-bottom-right-radius: 0px 0px;
border: 1px solid #ccc;
border-top-color: #ddd;
border-bottom-color: #bbb;
border-top-left-radius: 0px 0px;
border-top-right-radius: 0px 0px;
/* positioning */
padding: 4px 9px;
/* font */
color: #333;
font-size: 13px;
text-shadow: white 0px 1px 0px;
/* gradients */
background: #999; /* default for non-css3 browsers */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#cccccc'); /* IE */
background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#ccc)); /* webkit */
background: -moz-linear-gradient(top, #eee, #ccc); /* mozilla */
}
div.block-content {
/* border */
border-bottom-left-radius: 5px 5px;
border-bottom-right-radius: 5px 5px;
border: 1px solid #ccc;
border-top-color: #ddd;
border-bottom-color: #bbb;
border-top-left-radius: 0px 0px;
border-top-right-radius: 0px 0px;
/* positioning */
padding: 4px 9px;
/* font */
color: #333;
font-size: 13px;
text-shadow: white 0px 1px 0px;
/* gradients */
background: #999; /* default for non-css3 browsers */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#eeeeee'); /* IE */
background: -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#eee)); /* webkit */
background: -moz-linear-gradient(top, #ccc, #eee); /* mozilla */
}