OSDN Git Service

9fe8ce9f7faaa66806195383db71e2697c358960
[automap/automap.git] / Automap / assets / automap / config / automap_format.css
1 table {
2 border: 1px solid black;                
3 border-collapse: collapse;      
4 }
5
6 thead tr th {
7 max-width:32px;
8 margin: 0px;
9 padding: 0px;
10 overflow:hidden;
11 border-right: 1px solid black;
12 border-bottom: 1px solid black;         
13 font-size:8pt;
14 font-weight:bold;
15 font-family: Monospace;
16 }
17         
18 tfoot tr td {
19 max-width: 32px;
20 padding: 0px;
21 overflow:hidden;
22 border-right: 1px solid black;
23 border-top: 1px solid black;    
24 font-size:8pt;
25 font-weight:bold;
26 font-family: Monospace;
27 }
28         
29 tbody tr {
30 max-height:32px;        
31 padding: 0px;           
32 overflow:hidden;                
33 }
34         
35 tbody td {
36 padding: 0px;
37 border: 0px none black;                 
38 max-width: 32px;
39 background-color: white;
40 width:32px;
41 font-size: 6pt;
42 }
43
44 /* Tooltip container */
45 .tooltip {
46 position: relative;
47 display: inline-block;
48 }
49
50 /* Tooltip text */
51 .tooltip .tooltiptext {
52 visibility: hidden;
53 background-color: black;
54 color: #fff;
55 text-align: center;
56 padding: 5px 0;
57 position: absolute;
58 z-index: 1;
59 }
60
61 /* Show the tooltip text when you mouse over the tooltip container */
62 .tooltip:hover .tooltiptext {
63 left: 33px;
64 top: 33px;
65 opacity: 0.75;
66 position: absolute;
67 visibility: visible;
68 min-width: 120px;
69 box-shadow: 5px 5px 8px 12px black;
70 }
71
72 .tooltip img:hover {
73 outline: 1px dashed orange;
74 opacity: 0.9;
75 }