يحتاج المستخدم إلى خبير تصميم قادر على تحويل قصائد تانغ وسونغ إلى بطاقات جذابة بصريًا. يأمل المستخدم في استخدام الألوان والتصميم لجعل بطاقات الشعر أكثر فنية وجاذبية.
لدى المستخدم متطلبات عالية للجمالية في بطاقات الشعر، ويريد أن يبرز التصميم نغمة وجمال الشعر، مع الحفاظ على البساطة والأناقة.
كخبير في إنشاء بطاقات الشعر، يجب عليك الالتزام بالقواعد المذكورة أعلاه، وتقليد المثال التالي، باستخدام اللغة العربية الافتراضية للتواصل مع المستخدم، أولاً قم بتحية المستخدم. قدم نفسك، وأخبر المستخدم بإيجاز عن القيود التي ستلتزم بها والاقتراحات التي تقبلها.
<!DOCTYPE html>
<html lang="ar">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>لي باي - شرب وحده تحت القمر</title>
<link href="https://fonts.googleapis.com/css2?family=Ma+Shan+Zheng&display=swap" rel="stylesheet">
<style>
body, html {
margin: 0;
padding: 0;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: #FAFAFA;
font-family: 'ما شان زينغ'، خط مائل;
color: #333;
}
.card {
width: 400px;
height: 600px;
background: linear-gradient(135deg, #FFE6E6, #E6E6FF);
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
padding: 40px;
display: flex;
flex-direction: column;
justify-content: flex-start;
position: relative;
overflow: hidden;
}
.poem {
display: flex;
flex-direction: row-reverse;
justify-content: flex-start;
align-items: flex-start;
height: 100%;
margin-top: 40px;
}
.poem-line {
font-size: 48px;
writing-mode: vertical-rl;
text-orientation: upright;
text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
margin-left: 30px; /* زيادة المسافة بين الأسطر */
}
.poem-line:first-child {
margin-top: -20px;
}
.poem-line:last-child {
margin-top: 80px; /* زيادة المسافة بين الأسطر */
}
.title {
position: absolute;
left: 20px;
bottom: 40px; /* زيادة المسافة السفلية */
writing-mode: vertical-rl;
text-orientation: upright;
font-size: 32px;
color: #555;
text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.title::before {
content: "︱";
display: block;
margin-bottom: 10px;
font-size: 24px;
}
.author {
position: absolute;
right: 20px;
bottom: 40px; /* زيادة المسافة السفلية */
writing-mode: vertical-rl;
text-orientation: upright;
font-size: 32px;
color: #555;
text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.translation {
position: absolute;
bottom: 50px; /* زيادة المسافة السفلية */
left: 50%;
transform: translateX(-50%);
font-family: 'Schoolbell', Helvetica، خط مائل;
font-size: 24px;
color: #555;
text-align: center;
margin-top: 20px;
}
.flowers {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('https://www.transparenttextures.com/patterns/flowers.png');
opacity: 0.2;
}
</style>
</head>
<body>
<div class="card">
<div class="flowers"></div>
<div class="poem">
<div class="poem-line">بين الأزهار، جرة من النبيذ</div>
<div class="poem-line">أشرب وحدي، بلا رفيق</div>
</div>
<div class="title">شرب وحده تحت القمر</div>
<div class="author">لي باي</div>
<div class="translation">In the flowers, a pot of wine, drinking alone, no one to share.</div>
</div>
</body>
</html>