Develop and Download Open Source Software

Browse Subversion Repository

Contents of /trunc/style.css

Parent Directory Parent Directory | Revision Log Revision Log


Revision 9 - (show annotations) (download) (as text)
Thu Jan 20 14:11:18 2011 UTC (13 years, 3 months ago) by inoue-h
File MIME type: text/css
File size: 2740 byte(s)
既存リポジトリ操作追加

1 /* WebSVN Administrator */
2 /* CSS : スタイルシート*/
3
4 /* ページ全体 */
5 body {
6 position: relative;
7 width: 800px;
8 margin: 0 auto;
9 padding: 10px 5px;
10 font-family: sans-serif;
11 font-size: 11pt;
12
13 color: black;
14 background-color: white;
15 }
16
17 /* ページ左 */
18 div#main_content_left {
19 float: left;
20 width: 170px;
21 }
22
23 /* ページ右 */
24 div#main_content_right {
25 float: right;
26 width: 625px;
27 }
28
29 /* フッター */
30 div#footer {
31 width: 795px;
32 text-align: center;
33 color: gray;
34 border-top: 1px solid lightgray;
35 }
36
37 /* 回りこみ解除 */
38 div.clear {
39 clear:both;
40 display:block;
41 visibility:hidden;
42 }
43
44
45 h1 {
46 font-size: 20px;
47 color: gray;
48 font-weight:lighter;
49 padding: 5px 2px;
50 }
51
52
53 h2 {
54 font-size: 20px;
55 color: gray;
56 font-weight:lighter;
57 border-bottom: 1px solid gray;
58 padding: 5px 2px;
59 }
60
61 /* 左ペインのリンクメニュー */
62 #main_content_left ul {
63 margin: 0;
64 padding: 0;
65 width: 100%;
66 list-style: none;
67 }
68
69 #main_content_left li {
70 margin: 0;
71 padding: 0;
72 }
73
74 #main_content_left a {
75 display: block;
76 color: black;
77 font-size: 12px;
78 height: 20px;
79 text-decoration: none;
80 padding: 1px 1px 1px 5px;
81 border: 1px dotted #fffdf5;
82 }
83
84 #main_content_left a:hover {
85 color: red;
86 background-color: #f0d792;
87 border: 1px solid red;
88 }
89
90 /* リポジトリのリンクメニュー */
91 li.repo {
92 margin:0;
93 padding:0;
94 background-image:url(icon-box.png);
95 background-repeat:no-repeat;
96 background-position:2px 50%;
97 }
98
99 a.repo {
100 margin-left:20px;
101 }
102
103
104 #footer a {
105 color: gray;
106 }
107
108 /* 入力ボックス */
109 input, select {
110 padding:1px;
111 margin:1px;
112 border-right:1px solid #000;
113 border-bottom:1px solid #000;
114 border-left:1px solid #b2b2b2;
115 border-top:1px solid #b2b2b2;
116 background-color:#e0e0e0;
117 }
118
119 /* ボタンを横一列に並べる */
120 form.horiz {
121 display: inline;
122 border: none;
123 }
124
125
126 /* 行先頭に インフォメーション アイコン */
127 p.info {
128 background: url(icon-info.png) center left no-repeat;
129 padding-left: 24px;
130 }
131
132
133 /* 行先頭に エラー アイコン */
134 p.error {
135 background: url(icon-stop.png) center left no-repeat;
136 padding-left: 24px;
137 }
138
139 /* 行先頭に OK アイコン */
140 p.ok {
141 background: url(icon-ok.png) center left no-repeat;
142 padding-left: 24px;
143 }
144
145
146 /* コマンドの出力(ボックス囲み)*/
147 pre {
148 font-family: monospace;
149 font-size: 12px;
150 line-height: 1.5em;
151 border: 1px solid #b0b0b0;
152 padding: 5px 10px 8px 10px;
153 margin:0 10px 10px;
154 background-color: #f0f0f0;
155 overflow-x: scroll;
156 width: 600px; /* IE対策 */
157 white-space: pre;
158 }
159
160

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26