|
|
خط ۱: |
خط ۱: |
| | <templatestyles src="تحلیل/styles.css" /> |
| <html lang="fa"> | | <html lang="fa"> |
| <head>
| |
| <meta charset="UTF-8">
| |
| <meta name="viewport" content="width=device-width, initial-scale=1.0">
| |
| <title>تحلیل روز</title>
| |
| <link href="https://cdn.jsdelivr.net/gh/rastikerdar/vazir-font@v30.1.0/dist/font-face.css" rel="stylesheet" type="text/css" />
| |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" integrity="sha512-xxxxxxxxxxxxxxxxxx" crossorigin="anonymous" referrerpolicy="no-referrer" />
| |
| <style>
| |
| body {
| |
| font-family: 'Vazir', Arial, sans-serif;
| |
| margin: 0;
| |
| padding: 0;
| |
| direction: rtl;
| |
| background-color: #ecf0f1;
| |
| }
| |
| .header {
| |
| display: flex;
| |
| align-items: center;
| |
| justify-content: space-between;
| |
| background-color: #2c3e50;
| |
| padding: 10px 20px;
| |
| box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
| |
| border-radius: 15px; /* گرد کردن تمام گوشهها */
| |
| }
| |
| .header .logo a {
| |
| font-size: 24px;
| |
| font-weight: bold;
| |
| color: #ffffff;
| |
| text-decoration: none;
| |
| transition: color 0.3s ease, transform 0.3s ease;
| |
| }
| |
| .header .logo a:hover {
| |
| color: #1abc9c;
| |
| transform: scale(1.1);
| |
| }
| |
| .header .menu {
| |
| display: flex;
| |
| align-items: center;
| |
| gap: 20px;
| |
| justify-content: center;
| |
| flex-grow: 1;
| |
| }
| |
| .header .menu a {
| |
| text-decoration: none;
| |
| color: #ffffff;
| |
| font-weight: bold;
| |
| padding: 8px 12px;
| |
| border-radius: 8px;
| |
| transition: all 0.3s ease;
| |
| display: flex;
| |
| align-items: center;
| |
| gap: 8px;
| |
| }
| |
| .header .menu a:hover {
| |
| background-color: #1abc9c;
| |
| transform: scale(1.1);
| |
| box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
| |
| }
| |
| .header .menu .highlight {
| |
| font-size: 18px;
| |
| font-weight: bold;
| |
| }
| |
| .dropdown {
| |
| position: relative;
| |
| }
| |
| .dropdown-content {
| |
| display: none;
| |
| position: absolute;
| |
| top: 100%;
| |
| right: 0;
| |
| background-color: #34495e;
| |
| box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
| |
| border-radius: 10px;
| |
| overflow: hidden;
| |
| z-index: 1;
| |
| opacity: 0;
| |
| transform: translateY(-10px);
| |
| transition: all 0.3s ease;
| |
| }
| |
| .dropdown:hover .dropdown-content {
| |
| display: block;
| |
| opacity: 1;
| |
| transform: translateY(0);
| |
| }
| |
| .dropdown-content a {
| |
| display: flex;
| |
| align-items: center;
| |
| justify-content: center;
| |
| padding: 10px 15px;
| |
| text-decoration: none;
| |
| color: #ffffff;
| |
| white-space: nowrap;
| |
| transition: all 0.3s ease;
| |
| font-size: 14px;
| |
| text-align: center;
| |
| }
| |
| .dropdown-content a:hover {
| |
| background-color: #1abc9c;
| |
| box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
| |
| transform: scale(1.05);
| |
| }
| |
| .dropdown-title {
| |
| color: #ffffff;
| |
| background-color: #9b2d2f;
| |
| padding: 8px 10px;
| |
| text-align: center;
| |
| font-weight: bold;
| |
| border-radius: 10px 10px 0 0;
| |
| }
| |
| </style>
| |
| </head>
| |
| <body>
| |
|
| |
| <div class="header"> | | <div class="header"> |
| <div class="logo"> | | <div class="logo"> |
خط ۱۸۰: |
خط ۶۹: |
| </div> | | </div> |
|
| |
|
| </body>
| |
| </html> | | </html> |