tailwind布局个人资料修改页面代码
代码语言:html
所属分类:布局界面
代码描述:tailwind布局个人资料修改页面代码
代码标签: tailwind 布局 个人 资料 修改 页面 代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Settings</title>
<script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/tailwindcss.3.4.16.js"></script>
<script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/particles.2.0.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600&display=swap">
<style>
body {
font-family: system-ui, -apple-system, sans-serif;
}
.heading-font {
font-family: 'Geist', system-ui, -apple-system, sans-serif;
font-weight: 500;
letter-spacing: -0.025em;
}
#particles-js {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
}
.beautiful-shadow {
box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034),
0 6.7px 5.3px rgba(0, 0, 0, 0.048),
0 12.5px 10px rgba(0, 0, 0, 0.06),
0 22.3px 17.9px rgba(0, 0, 0, 0.072),
0 41.8px 33.4px rgba(0, 0, 0, 0.086),
0 100px 80px rgba(0, 0, 0, 0.12);
}
.dropdown {
position: relative;
}
.dropdown-content {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
z-index: 50;
background: white;
border: 1px solid #e5e5e5;
border-radius: 8px;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
max-height: 200px;
overflow-y: auto;
}
.dropdown.active .dropdown-content {
display: block;
}
</style>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=IBM+Plex+Serif:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@300;400;500;600;700&display=swap" rel="stylesheet">
</head>
<body class="bg-neutral-100 min-h-screen flex items-center justify-center p-4">
<div class="max-w-5xl w-full bg-white backdrop-blur-lg rounded-2xl overflow-hidden beautiful-shadow border border-neutral-200 flex">
<!-- Sidebar -->
<div class="w-80 bg-gradient-to-b from-neutral-900 to-neutral-800 relative" id="particles-container">
<div id="particles-js"></div>
<!-- Header -->
<div class="relative z-10 p-6 border-b border-neutral-700">
<span class="px-3 .........完整代码请登录后点击上方下载按钮下载查看
















网友评论0