tailwind布局实现亮色简洁PC端邮箱ui代码
代码语言:html
所属分类:布局界面
代码描述:tailwind布局实现亮色简洁PC端邮箱ui代码
代码标签: tailwind 布局 亮色 简洁 PC端 邮箱 ui 代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/tailwindcss.3.4.16.js"></script>
</head>
<body class="bg-gray-100 flex items-center justify-center min-h-screen p-4">
<!-- Mac Browser Window Container -->
<div class="w-full max-w-6xl bg-white rounded-lg shadow-xl overflow-hidden border border-gray-200">
<!-- Browser Header -->
<div class="bg-gray-100 px-4 py-2 border-b border-gray-200 flex items-center">
<div class="flex space-x-2 mr-4">
<div class="w-3 h-3 rounded-full bg-red-500"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500"></div>
<div class="w-3 h-3 rounded-full bg-green-500"></div>
</div>
<div class="flex-1 flex justify-center">
<div class="bg-gray-200 rounded-md py-1 px-3 text-xs text-gray-600 w-1/2 text-center">flux-mail.app</div>
</div>
</div>
<!-- App Container -->
<div class="flex h-[650px]">
<!-- Sidebar -->
<div class="w-64 bg-gray-50 border-r border-gray-200 flex flex-col">
<!-- App Logo -->
<div class="p-4 border-b border-gray-200">
<div class="flex items-center">
<div class="w-8 h-8 rounded-md bg-indigo-500 flex items-center justify-center text-white font-bold">F</div>
<span class="ml-2 font-medium text-gray-800">Flux Mail</span>
</div>
</div>
<!-- Sidebar Navigation -->
<nav class="flex-1 overflow-y-auto p-2">
<div class="space-y-1">
.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0