Esmaeilkiani's picture
Update styles.css
68d58fc verified
raw
history blame contribute delete
No virus
1.02 kB
/* styles.css */
body {
font-family: 'IRANSans', sans-serif;
background-color: #f7f9fc;
margin: 0;
padding: 0;
direction: rtl;
}
header {
background-color: #4CAF50;
color: white;
text-align: center;
padding: 1rem 0;
font-size: 2rem;
}
.main-container {
margin: 20px;
}
section {
background-color: white;
border-radius: 5px;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
h2 {
border-bottom: 2px solid #4CAF50;
padding-bottom: 10px;
margin-bottom: 20px;
}
button {
background-color: #4CAF50;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
input[type="file"] {
border: 1px solid #ccc;
border-radius: 5px;
padding: 10px;
}
footer {
background-color: #4CAF50;
color: white;
text-align: center;
padding: 1rem 0;
position: fixed;
bottom: 0;
width: 100%;
}