bfwui实现一个简洁的自适应表单美化页面代码
代码语言:html
所属分类:表单美化
代码描述:bfwui实现一个简洁的自适应表单美化页面代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum=1.0,minimum=1.0,user-scalable=0" />
<title>BFW NEW PAGE</title>
<link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/bfw.css">
<style>
#enform{
margin: 16px;
}
.radio-lab label{
margin-right: 10px;
}
button {
cursor: pointer;
outline: 0;
-webkit-transition: all 0.3s;
transition: all 0.2s;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border: 0;
padding: 0;
}
.Btn_blue_normal {
width: 200px;
height: 48px;
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(4%, #648cff),
to(#4172fa)
);
background-image: linear-gradient(-180deg, #648cff 4%, #4172fa 100%);
border: 1px solid rgba(51, 100, 237, 0.35);
-webkit-box-shadow: 0 3px 4px 0 rgba(44, 71, 146, 0.32),
inset 0 -2px 0 0 #3262e6;
box-shadow: 0 3px 4px 0 rgba(44, 71, 146, 0.32), inset 0 -2px 0 0 #3262e6;
border-radius: 3px;
margin-left: -;
font-size: 13px;
color: #ffffff;
letter-spacing: 0.7px;
text-align: center;
line-height: 16px;
}
.Btn_blue_normal:hover {
-webkit-box-shadow: 0 8px 20px 0 rgba(44, 71, 146, 0.4);
box-shadow: 0 8px 20px 0 rgba(44, 71, 146, 0.4);
border-radius: 3px;
-webkit-transform: scale(1.02);
transform: scale(1.01) translateY(-2px);
}
.Btn_blue_normal:active {
-webkit-box-shadow: 0 3px 4px 0 rgba(44, 71, 146, 0.32),
inset 0 0px 0 0 #3262e6;
box-shadow: 0 3px 4px 0 rgba(44, 71, 146, 0.32), inset 0 0px 0 0 #3262e6;
background-image: -webkit-gradient(
linear,
left bottom,
left top,
from(#527ffc),
color-stop(96%, #4172fa)
);
background-image: linear-gradient(0deg, #527ffc 0%, #4172fa 96%);
-webkit-transform: scale(0.98);
transform: scale(1);
}
</style>
</head>
<body>
<div class="bfw-row-100 bfw-s-row-100">
<h4 class="bfw-mar-l bfw-bline-1 bfw-pad-l " style="font-size:18px;">我的简历</h4>
<div>
<form id="enform" class="bfw-form bfw-mar-l" action="" method="post">
<div class="bfw-flex ">
<div class="bfw-row-2 bfw-s-row-100">
.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0