-
Notifications
You must be signed in to change notification settings - Fork 9
/
demo.css
110 lines (89 loc) · 1.78 KB
/
demo.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
body {
font: normal .80em 'trebuchet ms', arial, sans-serif;
background: #F5F5EE;
color: #555;
margin: 20px;
}
code {
font-size: 17px;
}
h1>code {
font-size: inherit;
}
h1, h2, h3, h4, h5, h6 {
color: #000;
font-weight: normal;
}
ul>li {
list-style-type: none;
background: url(images/bullet.png) no-repeat;
margin: 0 0 0 0;
padding: 0 0 4px 25px;
line-height: 1.5em;
}
.semple>thead>tr>td {
align-content: center;
text-align: center;
}
.semple>thead>tr:first-child {
color: #1a727c;
}
.semple tbody td {
vertical-align: top;
}
.section {
margin-top: 40px;
margin-left: 30px;
}
.semple-section {
-webkit-border-radius: 23px;
-moz-border-radius: 23px;
border-radius: 23px;
background: white;
border: 1px solid gray;
min-width: 1400px
}
.semple>tbody>tr>td {
padding: 10px;
border-left: 3px solid #555;
}
.semple>tbody>tr>td:first-child {
border-left: none;
}
.semple-section>h2 {
text-align: center;
margin-top: 7px;
margin-bottom: 10px;
}
.semple-section pre {
border: none;
}
.inner-table {
border-collapse:collapse;
}
.inner-table>thead>tr>td {
border: 1px solid black;
padding:5px;
vertical-align: middle;
font-weight:bold;
}
.inner-table>thead>tr>td[colspan] {
text-align:center;
}
.inner-table>tbody>tr>td {
color: #777;
border-bottom: 1px solid #ccc;
padding: 5px;
}
.inner-table>tbody>tr:hover>td {
}
.inner-table>tfoot>tr>td {
border: 1px solid black;
padding:5px;
vertical-align: middle;
font-weight:bold;
}
.inner-table>tbody>tr {
border-right: 1px solid black;
border-left: 1px solid black;
}