source: branches/version-2_5-dev/html/user_data/packages/default/css/table.css @ 20681

Revision 20681, 1.6 KB checked in by nagano, 13 years ago (diff)

デザイン調整

Line 
1@charset "utf-8";
2
3/************************************************
4 tables
5************************************************ */
6/* デフォルトテーブル
7----------------------------------------------- */
8table {
9    margin: 15px auto 20px auto;
10    border-top: 1px solid #ccc;
11    border-left: 1px solid #ccc;
12    width: 100%;
13    border-collapse: collapse;
14    text-align: left;
15}
16table th {
17    padding: 8px;
18    border-right: 1px solid #ccc;
19    border-bottom: 1px solid #ccc;
20    color: #333;
21    background-color: #f0f0f0;
22    font-weight: normal;
23}
24table td {
25    padding: 8px;
26    border-right: 1px solid #ccc;
27    border-bottom: 1px solid #ccc;
28}
29
30/* 見出し
31----------------------------------------------- */
32div#undercolumn_shopping table th[scope=col] {
33    text-align: center;
34}
35div#undercolumn_shopping table.delivname th {
36    width: 155px;
37}
38
39/* MYページ */
40div#mycontents_area table th {
41    text-align: left;
42}
43div#mycontents_area table th.alignR {
44    text-align: right;
45}
46div#mycontents_area table th.alignL {
47    text-align: left;
48}
49div#mycontents_area table th.alignC {
50    text-align: center;
51}
52div#mycontents_area table th.resulttd {
53    text-align: right;
54}
55div#mycontents_area table caption {
56    padding: 8px;
57    border-top: 1px solid #ccc;
58    border-right: 1px solid #ccc;
59    border-left: 1px solid #ccc;
60    color: #000;
61    background-color: #f0f0f0;
62    text-align: left;
63    font-weight: bold;
64}
65
66
67/* その他
68----------------------------------------------- */
69table select {
70    margin-bottom: 7px;
71    border: solid 1px #ccc;
72}
73
Note: See TracBrowser for help on using the repository browser.