انتقل إلى المحتوى

ويكيبيديا:المواد العلمية والورشات التدريبية المنتجة للمحررين/styles.css

من ويكيبيديا، الموسوعة الحرة

body {

   font-family: Arial, sans-serif;
   display: flex;
   justify-content: center;
   align-items: center;
   min-height: 100vh;
   background-color: #f4f4f4;
   margin: 0;

}

.container {

   background: white;
   border: 2px solid black;
   border-radius: 20px;
   padding: 20px;
   width: 80%;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}

.section {

   margin: 20px 0;
   padding: 10px;
   border: 2px solid black;
   border-radius: 20px;
   text-align: center;

}

.section h2 {

   margin: 0;
   padding: 10px 0;
   font-size: 24px;

}

.content {

   text-align: center;

}

.projects {

   display: flex;
   justify-content: space-around;
   align-items: center;
   margin-top: 20px;

}

.projects div {

   border: 1px solid black;
   padding: 20px;
   border-radius: 10px;

}