forked from mcallegari/qlcplus
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
61 lines (54 loc) · 1.13 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
* {
font-family:Arial;
}
.qlcTable {
margin:0px;
padding:0px;
/*width:100%;*/
border:1px solid #000000;
-moz-border-radius:8px;
-webkit-border-radius:8px;
border-radius:8px;
}
.qlcTable table{
width:100%;
height:100%;
margin:0px;
padding:0px;
}
.qlcTable td{
vertical-align:middle;
background-color:#dddddd;
border:1px solid #000000;
border-width:0px 1px 1px 0px;
text-align:left;
padding:7px;
/*font-size:10px;*/
font-family:Arial;
color:#000000;
}
.qlcTable tr:first-child td{
border-width:0px 1px 1px 0px;
}
.qlcTable tr:first-child td:first-child{
border-width:0px 1px 1px 0px;
border-radius: 7px 0 0 0;
}
.qlcTable tr:first-child td:last-child{
border-width:0px 0px 1px 0px;
border-radius: 0 7px 0 0;
}
.qlcTable tr:last-child td{
border-width:0px 1px 0px 0px;
}
.qlcTable tr:last-child td:first-child{
border-width:0px 1px 0px 0px;
border-radius: 0 0 0 7px;
}
.qlcTable tr td:last-child{
border-width:0px 0px 1px 0px;
}
.qlcTable tr:last-child td:last-child{
border-width:0px 0px 0px 0px;
border-radius: 0 0 7px 0;
}