[go: up one dir, main page]

0% found this document useful (0 votes)
5 views6 pages

DOPE HTML-WPS Office

The document outlines a specialized training program focused on Soviet tank systems, consisting of six weeks of advanced studies. It includes various tracks such as mechanics and weapon systems, detailing specific topics covered each week. The layout features a flowchart and structured sections for clarity and organization.

Uploaded by

aaaahmnk8
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views6 pages

DOPE HTML-WPS Office

The document outlines a specialized training program focused on Soviet tank systems, consisting of six weeks of advanced studies. It includes various tracks such as mechanics and weapon systems, detailing specific topics covered each week. The layout features a flowchart and structured sections for clarity and organization.

Uploaded by

aaaahmnk8
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 6

<!

DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>‫ تدريب الدبابات السوفيتية‬- ‫<مسار التخصص الدقيق‬/title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-
awesome/6.4.0/css/all.min.css">
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
color: #2c3e50;
padding: 20px;
min-height: 100vh;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}

header {
text-align: center;
margin-bottom: 40px;
padding: 25px;
background: linear-gradient(90deg, #1c3b6f, #2a5298);
color: white;
border-radius: 12px;
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

h1 {
font-size: 2.5rem;
margin-bottom: 15px;
}

.description {
font-size: 1.1rem;
max-width: 800px;
margin: 0 auto;
line-height: 1.6;
}

.flowchart-container {
background-color: white;
border-radius: 12px;
padding: 30px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
margin-bottom: 30px;
overflow-x: auto;
}
.flowchart {
display: flex;
flex-direction: column;
align-items: center;
min-width: 800px;
}

.start-node {
background-color: #1c3b6f;
color: white;
padding: 20px 30px;
border-radius: 10px;
font-weight: bold;
font-size: 1.3rem;
margin-bottom: 30px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
text-align: center;
width: 300px;
}

.decision-node {
background-color: #3498db;
color: white;
padding: 20px 30px;
border-radius: 50px;
font-weight: bold;
font-size: 1.2rem;
margin-bottom: 40px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
text-align: center;
width: 200px;
position: relative;
}

.decision-node::after {
content: '';
position: absolute;
bottom: -20px;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 0;
border-left: 15px solid transparent;
border-right: 15px solid transparent;
border-top: 20px solid #3498db;
}

.tracks-container {
display: flex;
justify-content: space-between;
width: 100%;
margin-bottom: 40px;
gap: 20px;
}

.track {
flex: 1;
background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
border-radius: 12px;
padding: 20px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
border: 2px solid #e2e8f0;
transition: transform 0.3s ease;
}

.track:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.track-title {
text-align: center;
padding: 15px;
font-weight: bold;
font-size: 1.2rem;
color: white;
border-radius: 8px;
margin-bottom: 20px;
}

.mech .track-title {
background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.arm .track-title {
background: linear-gradient(90deg, #27ae60, #219653);
}

.elec .track-title {
background: linear-gradient(90deg, #2980b9, #1c6ea4);
}

.weeks {
display: flex;
flex-direction: column;
gap: 15px;
}

.week {
background-color: white;
padding: 15px;
border-radius: 8px;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
border-left: 5px solid #3498db;
}

.mech .week {
border-left-color: #e74c3c;
}

.arm .week {
border-left-color: #27ae60;
}

.elec .week {
border-left-color: #2980b9;
}
.week-title {
font-weight: bold;
margin-bottom: 8px;
color: #2c3e50;
}

.week-content {
font-size: 0.95rem;
color: #34495e;
line-height: 1.5;
}

.connector {
height: 40px;
width: 3px;
background-color: #7d93b5;
margin: 10px auto;
position: relative;
}

.connector::after {
content: '';
position: absolute;
bottom: -5px;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 0;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-top: 10px solid #7d93b5;
}

.integration {
background: linear-gradient(90deg, #9b59b6, #8e44ad);
color: white;
padding: 20px 30px;
border-radius: 10px;
font-weight: bold;
font-size: 1.2rem;
text-align: center;
width: 300px;
margin: 0 auto;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.controls {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 30px;
}

button {
padding: 12px 25px;
background: linear-gradient(90deg, #1c3b6f, #2a5298);
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 1rem;
transition: all 0.3s;
display: flex;
align-items: center;
gap: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.info-panel {
background-color: white;
border-radius: 12px;
padding: 25px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
margin-top: 30px;
display: none;
}

.info-panel h2 {
color: #1c3b6f;
margin-bottom: 15px;
text-align: center;
}

.info-content {
line-height: 1.6;
}

.info-content ul {
padding-right: 20px;
margin-top: 10px;
}

.info-content li {
margin-bottom: 8px;
}

footer {
text-align: center;
margin-top: 40px;
color: #7d93b5;
font-size: 0.9rem;
padding: 20px;
border-top: 1px solid #e2e8f0;
}

@media (max-width: 900px) {


.tracks-container {
flex-direction: column;
}

.flowchart {
min-width: 100%;
}

h1 {
font-size: 2rem;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>‫ المرحلة الثانية‬- ‫<مسار التخصص الدقيق‬/h1>
<p class="description"> ‫ أسابيع يتعمق في التخصصات‬6 ‫برنامج متقدم لمدة‬
‫<الثالثة الرئيسية لأنظمة الدبابات السوفيتية‬/p>
</header>

<div class="flowchart-container">
<div class="flowchart">
<div class="start-node">‫ التخصص الدقيق‬:2 ‫<المرحلة‬/div>

<div class="decision-node">‫<اختيار المسار‬/div>

<div class="tracks-container">
<!-- ‫ مسار الميكانيكا‬-->
<div class="track mech">
<div class="track-title">‫<الميكانيكا والحركة‬/div>
<div class="weeks">
<div class="week">
<div class="week-title">‫ أنظمة القوى‬:5-4 ‫أسبوع‬
Diesel</div>
<div class="week-content">T-55, T-62, T-72</div>
</div>
<div class="week">
<div class="week-title"> ‫ أنظمة القوى‬:6 ‫أسبوع‬
‫<التوربينية‬/div>
<div class="week-content">T-80</div>
</div>
<div class="week">
<div class="week-title"> ‫ نقل الحركة‬:8-7 ‫أسبوع‬
‫<والتعليق‬/div>
<div class="week-content">‫<جميع الموديالت‬/div>
</div>
<div class="week">
<div class="week-title"> ‫ التشخيص‬:9 ‫أسبوع‬
‫<المتقدم‬/div>
<div class="week-content">‫<وإصالح الأعطال‬/div>
</div>
</div>
</div>

<!-- ‫ مسار الأسلحة‬-->


<div class="track arm">
<div class="track-title">‫<الأسلحة والتحكم‬/div>
<div class="weeks">
<div class="week">
<div class="week-title">4 ‫أسبوع‬-

You might also like