chore: 首次簽入 Thinkyu ASP.NET 專案
- 加入 Visual Studio / ASP.NET .gitignore - 排除建置輸出、IDE 設定、NuGet packages、大型 MSI 安裝檔
This commit is contained in:
@@ -0,0 +1,236 @@
|
||||
/* 定義頁面基本字形(不含表格) */
|
||||
BODY
|
||||
{
|
||||
font-family: "Arial";
|
||||
font-size: 10pt;
|
||||
}
|
||||
|
||||
H1
|
||||
{
|
||||
font-family: "Arial";
|
||||
font-size: 24pt;
|
||||
color: White;
|
||||
}
|
||||
|
||||
/* 定義表格基本字形 */
|
||||
TABLE
|
||||
{
|
||||
font-family: "Arial";
|
||||
font-size: 10pt;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
A.grid:active
|
||||
{
|
||||
color: Red;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
A.grid:link
|
||||
{
|
||||
color: Blue;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
A.grid:visited
|
||||
{
|
||||
color: Blue;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
A.grid:hover
|
||||
{
|
||||
color: Red;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* 定義功能表字型 */
|
||||
.menuItem
|
||||
{
|
||||
font-family: "Arial";
|
||||
font-size: 12pt;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
/* 定義系統抬頭列 */
|
||||
.titleBar
|
||||
{
|
||||
background-color: #43B277;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
/* 定義系統名稱字型 */
|
||||
.systemTitle
|
||||
{
|
||||
font-family: "Arial";
|
||||
font-size: 16pt;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* 定義頁面標題字形 */
|
||||
.pageTitle
|
||||
{
|
||||
font-family: "Arial";
|
||||
font-size: 14pt;
|
||||
color: #268E45;
|
||||
font-weight: bold;
|
||||
line-height: 100%;
|
||||
display:block;
|
||||
}
|
||||
|
||||
/* 定義文字輸入用control樣式(滿格) */
|
||||
.textInput
|
||||
{
|
||||
font-family: "Arial";
|
||||
font-size: 10pt;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* 定義文字顯示用control樣式(滿格) */
|
||||
.textDisplay
|
||||
{
|
||||
font-family: "Arial";
|
||||
font-size: 10pt;
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
border-color: #D0D0D0;
|
||||
background-color: #D0D0D0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* 定義文字輸入用control樣式(不滿格,需另外設定 column 屬性) */
|
||||
.textInput1
|
||||
{
|
||||
font-family: "Arial";
|
||||
font-size: 10pt;
|
||||
}
|
||||
|
||||
/* 定義非文字輸入用control樣式 */
|
||||
.nonTextInput
|
||||
{
|
||||
font-family: "Arial";
|
||||
font-size: 10pt;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* 定義輸入control左方之label樣式 */
|
||||
.controlLabel
|
||||
{
|
||||
font-family: "Arial";
|
||||
font-size: 10pt;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* 定義顯示錯誤訊息用之label樣式 */
|
||||
.errorLabel
|
||||
{
|
||||
font-family: "Arial";
|
||||
font-size: 10pt;
|
||||
color: Red;
|
||||
}
|
||||
|
||||
/* 首頁提示文字的樣式 */
|
||||
.hintLabel
|
||||
{
|
||||
font-weight:bold;
|
||||
color: Green;
|
||||
display: none;
|
||||
padding-right: 2px;
|
||||
padding-left: 2px;
|
||||
padding-bottom: 2px;
|
||||
padding-top: 2px;
|
||||
}
|
||||
|
||||
/* 定義按鈕樣式 1 (定寬)*/
|
||||
.button
|
||||
{
|
||||
font-family: "Arial";
|
||||
font-size: 10pt;
|
||||
width: 75px;
|
||||
height: 23px;
|
||||
}
|
||||
|
||||
/* 定義按鈕樣式 2 (不定寬)*/
|
||||
.button1
|
||||
{
|
||||
font-family: "Arial";
|
||||
font-size: 10pt;
|
||||
height: 23px;
|
||||
}
|
||||
|
||||
/* 定義資料顯示用儲存格樣式 */
|
||||
.dataDisplayCell
|
||||
{
|
||||
background-color: #CEEFD7;
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
.dataDisplayCell1
|
||||
{
|
||||
background-color: #CEEFD7;
|
||||
}
|
||||
|
||||
.dataEditCell
|
||||
{
|
||||
background-color: #FFFFFF;
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
.dataEditCell1
|
||||
{
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
|
||||
/* 定義 control 排列用 table 列高 */
|
||||
.tableRow
|
||||
{
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
.Pickup
|
||||
{
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.PickupList
|
||||
{
|
||||
font-family: "Arial";
|
||||
font-size: 10pt;
|
||||
}
|
||||
|
||||
.PickupCloseButton
|
||||
{
|
||||
font-family: Arial;
|
||||
font-size: 10pt;
|
||||
color: Black;
|
||||
}
|
||||
|
||||
.hide
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.fixtable
|
||||
{
|
||||
table-layout:fixed;
|
||||
}
|
||||
|
||||
.pageText
|
||||
{
|
||||
font-family: Arial;
|
||||
font-size: 10pt;
|
||||
color: White;
|
||||
}
|
||||
|
||||
.pageButton
|
||||
{
|
||||
font-family: Arial;
|
||||
font-size: 10pt;
|
||||
}
|
||||
|
||||
.gridViewMouseOver
|
||||
{
|
||||
background-color: #43B277;
|
||||
}
|
||||
Reference in New Issue
Block a user