div+css实现英文交易支付列表详情ui布局代码
代码语言:html
所属分类:布局界面
代码描述:div+css实现英文交易支付列表详情ui布局代码
代码标签: div css 英文 交易 支付 列表 详情 ui 布局 代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
* {
padding: 0;
margin: 0;
box-sizing: border-box;
outline: none;
}
html {
font-size: 16px;
-webkit-font-smoothing: antialiased;
}
body {
font-family: "Poppins", sans-serif;
background-color: #f7f7f7;
color: #2e2e2e;
width: 100%;
height: auto;
min-height: 800px;
line-height: 1.6;
vertical-align: baseline;
}
img {
max-width: 100%;
}
button {
border: 0;
outline: 0;
font-family: "Poppins", sans-serif;
cursor: pointer;
background: transparent;
}
th {
text-align: left;
font-weight: 500;
border: none;
}
th span,
td span {
display: block;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
::-webkit-scrollbar {
display: none;
}
.bg-green, .btn-primary {
background-color: #6dea9e;
}
.bg-blue {
background-color: #aff5f7;
}
.bg-yellow {
background-color: #fff691;
}
.text-lg {
font-size: 1.802rem;
}
@media screen and (max-width: 860px) {
.text-lg {
font-size: 1.602rem;
}
}
.btn {
font-weight: 700;
font-size: 1rem;
text-transform: capitalize;
transition: 0.5ms ease;
}
@media screen and (max-width: 860px) {
.btn {
font-size: 0.85rem;
}
}
.btn-primary {
color: #0f0f0f;
}
.btn-primary:hover, .btn-primary:active {
background-color: #6dea9fda;
}
.main {
width: 100%;
display: grid;
grid-template-columns: 1fr minmax(150px, 25%);
grid-template-rows: 95px auto;
-webkit-border-before: 7px solid #0f0f0f;
border-block-start: 7px solid #0f0f0f;
}
@media screen and (max-width: 860px) {
.main {
grid-template-columns: 100%;
}
}
.header {
width: 100%;
display: grid;
grid-template-columns: minmax(65px, 10%) 1fr;
grid-template-rows: inherit;
grid-column-start: 1;
grid-column-end: 2;
}
.menu {
border-right: 1px solid rgba(0, 0, 0, 0.1);
display: flex;
justify-content: center;
align-items: c.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0