css布局实现中性化支付类app界面效果
代码语言:html
所属分类:布局界面
代码描述:css布局实现中性化支付类app界面效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css?family=Kulim+Park|Lato|Open+Sans&display=swap" rel="stylesheet">
<style>
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
html {
font-size: 16px;
}
body {
font-family: "Kulim Park", sans-serif;
background-color: #f5f6f7;
color: #4a5568;
display: flex;
justify-content: center;
align-items: center;
padding: 1rem 2rem;
}
a {
color: #4a5568;
}
.text-muted {
color: #8fa3bc;
}
.t1 {
font-size: 1.5rem;
}
.t2 {
font-size: 1.25rem;
}
.t3 {
font-size: 1rem;
}
.t4 {
font-size: 0.85rem;
}
.t5 {
font-size: 0.5rem;
}
.w-100 {
width: 100%;
}
.container {
height: 600px;
width: 300px;
padding: 1rem 1.5rem;
border-radius: 3px;
box-.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0