- Move checklist files to new checklists/ directory - Move checklist.html to tools/ - Move wechat-sandbox-CONCEPT.md to Projects/CONCEPT/ - Move DAILY_REALITY_CHECK.md and observations_patterns.md to ToRemember/ - Rename WorkTingting/ to work_tingting/ for naming consistency 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
128 lines
2.1 KiB
HTML
128 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
html { background: #ffffff; }
|
|
body {
|
|
width: 720pt;
|
|
height: 405pt;
|
|
margin: 0;
|
|
padding: 0;
|
|
background: #F5F1E8;
|
|
font-family: Arial, sans-serif;
|
|
display: flex;
|
|
}
|
|
|
|
.slide-content {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
}
|
|
|
|
/* Title */
|
|
.title {
|
|
position: absolute;
|
|
top: 35pt;
|
|
left: 60pt;
|
|
right: 60pt;
|
|
}
|
|
|
|
.title h2 {
|
|
font-family: Georgia, serif;
|
|
font-size: 38pt;
|
|
color: #6B2C3E;
|
|
margin: 0;
|
|
}
|
|
|
|
/* Three columns container */
|
|
.three-columns {
|
|
position: absolute;
|
|
top: 110pt;
|
|
left: 60pt;
|
|
right: 60pt;
|
|
bottom: 50pt;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
/* Each column box */
|
|
.column-box {
|
|
width: 30%;
|
|
background: #ffffff;
|
|
border: 1pt solid #B8974F;
|
|
border-radius: 8pt;
|
|
padding: 20pt;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.icon {
|
|
font-size: 32pt;
|
|
margin-bottom: 10pt;
|
|
}
|
|
|
|
.icon p {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.column-box h3 {
|
|
font-family: Georgia, serif;
|
|
font-size: 18pt;
|
|
color: #6B2C3E;
|
|
margin: 0 0 12pt 0;
|
|
}
|
|
|
|
.column-box ul {
|
|
font-size: 13pt;
|
|
color: #4A5568;
|
|
margin: 0;
|
|
padding-left: 18pt;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.column-box li {
|
|
margin-bottom: 8pt;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="slide-content">
|
|
<div class="title">
|
|
<h2>我们的承诺</h2>
|
|
</div>
|
|
|
|
<div class="three-columns">
|
|
<div class="column-box">
|
|
<div class="icon"><p>📚</p></div>
|
|
<h3>老师的承诺</h3>
|
|
<ul>
|
|
<li>用爱用心对待每一位学生</li>
|
|
<li>帮助解决学业问题</li>
|
|
<li>陪伴孩子们一起进步</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="column-box">
|
|
<div class="icon"><p>❤️</p></div>
|
|
<h3>班级的灵魂</h3>
|
|
<ul>
|
|
<li>团结友爱,互帮互助</li>
|
|
<li>每个孩子都被看见</li>
|
|
<li>七(3)班魂,我们的力量</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="column-box">
|
|
<div class="icon"><p>🤝</p></div>
|
|
<h3>家长的角色</h3>
|
|
<ul>
|
|
<li>对孩子负责</li>
|
|
<li>配合老师的建议</li>
|
|
<li>共同创造成功</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|