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

Css

This CSS document outlines the styling for a real estate section of the Martyrs Foundation in Maysan. It includes general settings, header design, search section, results section, and form styling, with a focus on responsive layouts and user-friendly interfaces. The design employs gradients, shadows, and hover effects to enhance visual appeal.
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)
35 views6 pages

Css

This CSS document outlines the styling for a real estate section of the Martyrs Foundation in Maysan. It includes general settings, header design, search section, results section, and form styling, with a focus on responsive layouts and user-friendly interfaces. The design employs gradients, shadows, and hover effects to enhance visual appeal.
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

/* ‫ ملف‬CSS - ‫ قسم الأراضي والعقارات‬- ‫* مؤسسة الشهداء ميسان‬/

/* ‫* إعدادات عامة‬/
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
line-height: 1.6;
color: #333;
}

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

/* ‫* تصميم الهيدر‬/
.header {
background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
color: white;
padding: 30px;
border-radius: 15px;
margin-bottom: 30px;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
text-align: center;
}

.logo-section {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
}

.logo {
font-size: 4rem;
background: linear-gradient(45deg, #f39c12, #e67e22);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.header-text h1 {
font-size: 2.5rem;
margin-bottom: 10px;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header-text h2 {
font-size: 1.5rem;
font-weight: 300;
opacity: 0.9;
}

/* ‫* قسم البحث‬/
.search-section {
background: white;
padding: 30px;
border-radius: 15px;
margin-bottom: 30px;
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.search-container h3 {
text-align: center;
color: #2c3e50;
margin-bottom: 20px;
font-size: 1.8rem;
}

.search-box {
display: flex;
gap: 15px;
max-width: 600px;
margin: 0 auto;
}

.search-box input {
flex: 1;
padding: 15px;
border: 2px solid #e0e0e0;
border-radius: 10px;
font-size: 1.1rem;
transition: all 0.3s ease;
}

.search-box input:focus {
outline: none;
border-color: #667eea;
box-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
}

.search-box button {
padding: 15px 25px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border: none;
border-radius: 10px;
cursor: pointer;
font-size: 1.1rem;
font-weight: bold;
transition: all 0.3s ease;
}

.search-box button:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* ‫* نتائج البحث‬/
.results-section {
background: white;
padding: 30px;
border-radius: 15px;
margin-bottom: 30px;
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.results-section h3 {
color: #2c3e50;
margin-bottom: 20px;
font-size: 1.8rem;
text-align: center;
}

.no-results {
text-align: center;
color: #7f8c8d;
font-size: 1.2rem;
font-style: italic;
padding: 40px;
}

/* ‫* قسم إضافة السجالت‬/


.add-section, .records-section {
background: white;
padding: 30px;
border-radius: 15px;
margin-bottom: 30px;
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.section-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
flex-wrap: wrap;
gap: 15px;
}

.section-header h3 {
color: #2c3e50;
font-size: 1.8rem;
}

/* ‫* تصميم الأزرار‬/
.btn-primary, .btn-success, .btn-danger, .btn-warning, .btn-secondary, .btn-info {
padding: 10px 20px;
border: none;
border-radius: 8px;
cursor: pointer;
font-weight: bold;
font-size: 1rem;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
}

.btn-primary {
background: linear-gradient(135deg, #3498db, #2980b9);
color: white;
}

.btn-success {
background: linear-gradient(135deg, #27ae60, #229954);
color: white;
}

.btn-danger {
background: linear-gradient(135deg, #e74c3c, #c0392b);
color: white;
}

.btn-warning {
background: linear-gradient(135deg, #f39c12, #e67e22);
color: white;
}

.btn-secondary {
background: linear-gradient(135deg, #95a5a6, #7f8c8d);
color: white;
}

.btn-info {
background: linear-gradient(135deg, #17a2b8, #138496);
color: white;
}

.btn-primary:hover, .btn-success:hover, .btn-danger:hover, .btn-


warning:hover, .btn-secondary:hover, .btn-info:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* ‫* تصميم الفورم‬/
.form-card {
background: #f8f9fa;
border: 2px solid #e9ecef;
border-radius: 12px;
padding: 25px;
margin-bottom: 25px;
position: relative;
transition: all 0.3s ease;
}

.form-card:hover {
border-color: #667eea;
box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
}

.form-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 2px solid #e9ecef;
}
.form-header h4 {
color: #2c3e50;
font-size: 1.3rem;
}

.form-group {
margin-bottom: 20px;
}

.form-group label {
display: block;
margin-bottom: 8px;
font-weight: bold;
color: #2c3e50;
font-size: 1.1rem;
}

.form-group input, .form-group select, .form-group textarea {


width: 100%;
padding: 12px;
border: 2px solid #e0e0e0;
border-radius: 8px;
font-size: 1rem;
transition: all 0.3s ease;
background: white;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {


outline: none;
border-color: #667eea;
box-shadow: 0 0 10px rgba(102, 126, 234, 0.2);
}

.form-group textarea {
resize: vertical;
min-height: 80px;
}

/* ‫* تصميم إجراءات الفورم‬/


.form-actions {
display: flex;
gap: 15px;
justify-content: center;
margin-top: 30px;
flex-wrap: wrap;
}

/* ‫* تصميم عرض السجالت‬/


.record-item {
background: #f8f9fa;
border: 2px solid #e9ecef;
border-radius: 12px;
padding: 25px;
margin-bottom: 20px;
transition: all 0.3s ease;
}

.record-item:hover {
border-color: #667eea;
box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
transform: translateY(-2px);
}

.record-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
flex-wrap: wrap;
gap: 10px;
}

.record-header h4 {
color: #2c3e50;
font-size: 1.4rem;
margin: 0;
}

.status-badge {
padding: 6px 12px;
border-radius: 20px;
font-size: 0.9rem;
font-weight: bold;
text-align: center;
}

.status-‫يستلم‬-‫{ لم‬
background-color: #ffebee;
color: #c62828;
border: 1px solid #ef5350;
}

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy