79 lines
1.2 KiB
CSS
79 lines
1.2 KiB
CSS
body {
|
|
font-family: 'Tahoma', sans-serif;
|
|
line-height: 1.6;
|
|
margin: 0;
|
|
padding: 0;
|
|
background: #f4f4f4;
|
|
color: #333;
|
|
direction: rtl;
|
|
}
|
|
|
|
header {
|
|
background: #333;
|
|
color: #fff;
|
|
padding: 2rem 0;
|
|
text-align: center;
|
|
}
|
|
|
|
header h1 {
|
|
margin: 0;
|
|
}
|
|
|
|
main {
|
|
padding: 1rem;
|
|
max-width: 800px;
|
|
margin: auto;
|
|
}
|
|
|
|
.scroll-section {
|
|
background: #fff;
|
|
margin-bottom: 1rem;
|
|
padding: 1.5rem;
|
|
border-radius: 5px;
|
|
opacity: 0;
|
|
transform: translateY(20px);
|
|
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
|
|
}
|
|
|
|
.scroll-section.visible {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
|
|
.profile-pic {
|
|
display: block;
|
|
width: 150px;
|
|
height: 150px;
|
|
border-radius: 50%;
|
|
margin: 0 auto 1rem;
|
|
}
|
|
|
|
h2 {
|
|
color: #333;
|
|
border-bottom: 2px solid #333;
|
|
padding-bottom: 0.5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
ul li {
|
|
background: #eee;
|
|
padding: 0.75rem;
|
|
margin-bottom: 0.5rem;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.contact-info p {
|
|
margin: 0.5rem 0;
|
|
}
|
|
|
|
.social-media a {
|
|
margin-right: 10px;
|
|
text-decoration: none;
|
|
color: #333;
|
|
}
|