登陸頁面是很多網(wǎng)站必不可少的一個功能,如何設(shè)計好一個簡單漂亮的登陸頁面非常重要。CSS可以為登陸頁面添加一些樣式和動畫效果,讓其更具吸引力。下面是一個簡單登陸頁面的CSS樣式代碼:
body { background-color: #f7f7f7; /* 頁面背景色設(shè)置 */ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; /* 字體設(shè)置 */ } form { background-color: #fff; /* 表單背景色設(shè)置 */ border-radius: 5px; /* 表單邊框設(shè)置 */ box-shadow: 0 5px 20px rgba(0,0,0,0.2); /* 表單邊框陰影效果 */ margin: auto; /* 表單居中 */ padding: 20px; /* 表單內(nèi)邊距 */ width: 300px; /* 表單寬度設(shè)置 */ } input[type=text], input[type=password] { border: 1px solid #ccc; /* 輸入框邊框設(shè)置 */ border-radius: 3px; /* 輸入框邊框圓角設(shè)置 */ box-sizing : border-box; /* 輸入框大小固定 */ display: block; /* 輸入框以塊級元素顯示 */ height: 30px; /* 輸入框高度設(shè)置 */ margin: 10px 0 0; /* 輸入框上下外邊距 */ padding: 5px; /* 輸入框內(nèi)邊距設(shè)置 */ width: 100%; /* 輸入框?qū)挾仍O(shè)置 */ } input[type=submit] { background-color: #4CAF50; /* 按鈕背景色設(shè)置 */ border: none; /* 按鈕邊框設(shè)置 */ border-radius: 3px; /* 按鈕邊框圓角設(shè)置 */ color: #fff; /* 按鈕文字顏色設(shè)置 */ cursor: pointer; /* 鼠標(biāo)懸停時變形效果 */ display: block; /* 按鈕以塊級元素顯示 */ font-size: 16px; /* 按鈕字體大小設(shè)置 */ height: 40px; /* 按鈕高度設(shè)置 */ margin: 10px 0 0; /* 按鈕上下外邊距 */ padding: 0; /* 按鈕內(nèi)邊距設(shè)置 */ width: 100%; /* 按鈕寬度設(shè)置 */ } input[type=submit]:hover { background-color: #45a049; /* 鼠標(biāo)懸停時按鈕背景色變化 */ }
上述代碼中使用了一些CSS樣式屬性,例如background-color、border、border-radius、box-shadow、font-family、height、margin、padding、width等等。通過設(shè)置這些樣式屬性,就可以實現(xiàn)一個簡單漂亮的登陸頁面,讓用戶的登陸體驗更加舒適和愉悅。