forked from MrTrivel/PrettyC2Tables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprettify.css
93 lines (82 loc) · 1.72 KB
/
prettify.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
body
{
background-color: #17252A;
position: absolute;
top: 10%;
left: 25%;
}
.datagrid table
{
border-collapse: collapse;
text-align: left;
width: 40%;
}
.datagrid
{
font: normal 12px/150% Courier New, Courier, monospace;
background: #17252A;
overflow: hidden;
border: 10px solid #2B7A78;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.datagrid table td, .datagrid table th
{
padding: 5px 10px;
}
.datagrid table thead th
{
background: webkit-gradient(linear, left top, left bottom, color-stop(0.05, #2B7A78), color-stop(1, #2B7A78));
background: moz-linear-gradient(center top, #2B7A78 5%, #2B7A78 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2B7A78', endColorstr='#2B7A78');
background-color: #2B7A78;
color: #FEFFFF;
font-size: 19px;
font-weight: bold;
border-left: 1px solid #17252A;
border-bottom: 1px solid #17252A;
}
.datagrid table thead th:first-child
{
border-left: 1px solid #17252A;
border-bottom: 1px solid #17252A;
}
.datagrid table tbody td
{
color: #DEF2F1;
border-left: 1px solid #2B7A78;
border-bottom: 1px solid #2B7A78;
font-size: 14px;
font-weight: bold;
}
.datagridCell
{
color: #DEF2F1;
border-left: 1px solid #2B7A78;
border-bottom: 1px solid #2B7A78;
font-size: 14px;
font-weight: bold;
}
.datagridCellAlt
{
background: #161a28;
color: #DEF2F1;
border-left: 1px solid #2B7A78;
border-bottom: 1px solid #2B7A78;
font-size: 14px;
font-weight: bold;
}
.datagrid table tbody tr .alt
{
background: #161a28;
color: #DEF2F1;
}
.datagrid table tbody td:first-child
{
border-left: 1px solid #2B7A78;
}
.datagrid table tbody tr:last-child td
{
border-bottom: none;
}