当前位置: 首页 > 工具软件 > CSS Sans > 使用案例 >

css.css

荣德厚
2023-12-01

/* ------------------------------------------------- 要素 ------------------------------------------------- */
/* ********************* ボディー部分 ********************* */
body {
 background-color: whitesmoke;
}

/* ********************* リンク部分 ********************* */
/* 未訪のリンク */
a:link {
 color: background; text-decoration: underline;
}
/* カーソルが上に乗っているリンク */
a:hover {
 color: background; text-decoration: none;
}
/* アクティブ中のリンク */
a:active {
 color: background; text-decoration: none;
}
/* 訪問済みのリンク */
a:visited {
 color: background; text-decoration: none;
}

/* ------------------------------------------------- クラス ------------------------------------------------- */
/* タイトル部分 */
.captionBarBg {
 width: 100%; height: 20px;
 border-style: outset; border-width: 1px; background-image: url(../images/captionBarBg.gif);
 font-size: 12pt; font-weight: bold; color: background;
}

/* ********************* 友好用語部分 ********************* */
/* 一般説明 */
.explainFont {
 font-size: 11pt; font-weight: bold; color: background;
}
/* 特別説明 */
.noticeFont {
 font-size: 11pt; font-weight: bold; color: red;
}

/* ********************* 明細リスト部分 ********************* */
/* タイトル */
.list_title_col {
 border-top: 1px inset; border-bottom: 1px inset; border-left: 1px inset; border-right: 1px inset;
 font-size: 10pt; color: white; text-align: left;
 background-image: url(../images/lstTitleBg.gif);
}
/* 内容左揃え */
.list_detailsCol_left {
 border-top: 1px inset; border-bottom: 1px inset; border-left: 1px inset; border-right: 1px inset;
 font-size: 10pt; color: black; text-align: left; word-break: break-all;
 background-color: white;
}
/* 内容中央揃え */
.list_detailsCol_center {
 border-top: 1px inset; border-bottom: 1px inset; border-left: 1px inset; border-right: 1px inset;
 font-size: 10pt; color: black; text-align: center; word-break: break-all;
 background-color: white;
}
/* 内容右揃え */
.list_detailsCol_right {
 border-top: 1px inset; border-bottom: 1px inset; border-left: 1px inset; border-right: 1px inset;
 font-size: 10pt; color: black; text-align: right; word-break: break-all;
 background-color: white;
}

/* ********************* 登録部分 ********************* */
/* 項目名 */
.edt_colHead_font {
 font-size: 11pt; font-weight: bold; color: background; text-align: left;
}
/* 項目タイトルのバック */
.edt_colHead_bg {
 /* 保留 background-image: url(../images/lstTitleBg.gif); */
}
/* 必須入力項目 */
.needItem {
 border-top: #7f9db9 1px solid; border-bottom: #7f9db9 1px solid; border-left: #7f9db9 1px solid; border-right: #7f9db9 1px solid;
 height: 22;
 background-color: #FFFF99;
}
/* 必須入力の'*' */
.edt_item_notice {
 font-size: 11pt; color: red;
}

/* ********************* ボックスの上の余白 ********************* */
.areaMarginTop5 {
 margin-top: 5px;
}
.areaMarginTop10 {
 margin-top: 10px;
}
.areaMarginTop15 {
 margin-top: 15px;
}
.areaMarginTop20 {
 margin-top: 20px;
}
.areaMarginTop30 {
 margin-top: 30px;
}
.areaMarginTop40 {
 margin-top: 40px;
}
.areaMarginTop50 {
 margin-top: 50px;
}

 类似资料:

相关阅读

相关文章

相关问答