Spaces:
Running
Running
make impresseve logo for HER AyvWvlid
Browse files- index.html +30 -3
index.html
CHANGED
|
@@ -23,13 +23,40 @@
|
|
| 23 |
color: #000;
|
| 24 |
display: flex;
|
| 25 |
align-items: center;
|
|
|
|
| 26 |
}
|
| 27 |
.logo-owner {
|
| 28 |
font-size: 0.8rem;
|
| 29 |
margin-right: 0.5rem;
|
| 30 |
color: #666;
|
| 31 |
-
|
| 32 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
background-color: white;
|
| 34 |
padding: 1rem 2rem;
|
| 35 |
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
|
@@ -110,7 +137,7 @@
|
|
| 110 |
<span class="logo-owner">AyvWvlid</span>
|
| 111 |
<span>HER</span>
|
| 112 |
</div>
|
| 113 |
-
|
| 114 |
<ul>
|
| 115 |
<li><a href="#">الرئيسية</a></li>
|
| 116 |
<li><a href="#">المنتجات</a></li>
|
|
|
|
| 23 |
color: #000;
|
| 24 |
display: flex;
|
| 25 |
align-items: center;
|
| 26 |
+
position: relative;
|
| 27 |
}
|
| 28 |
.logo-owner {
|
| 29 |
font-size: 0.8rem;
|
| 30 |
margin-right: 0.5rem;
|
| 31 |
color: #666;
|
| 32 |
+
position: relative;
|
| 33 |
+
}
|
| 34 |
+
.logo::after {
|
| 35 |
+
content: "";
|
| 36 |
+
position: absolute;
|
| 37 |
+
bottom: -5px;
|
| 38 |
+
left: 0;
|
| 39 |
+
width: 100%;
|
| 40 |
+
height: 2px;
|
| 41 |
+
background: linear-gradient(90deg, #ff6b6b, #feca57, #1dd1a1, #54a0ff, #5f27cd);
|
| 42 |
+
background-size: 400% 400%;
|
| 43 |
+
animation: gradient 3s ease infinite;
|
| 44 |
+
border-radius: 10px;
|
| 45 |
+
}
|
| 46 |
+
@keyframes gradient {
|
| 47 |
+
0% { background-position: 0% 50%; }
|
| 48 |
+
50% { background-position: 100% 50%; }
|
| 49 |
+
100% { background-position: 0% 50%; }
|
| 50 |
+
}
|
| 51 |
+
.logo span {
|
| 52 |
+
background: linear-gradient(45deg, #ff6b6b, #feca57, #1dd1a1, #54a0ff);
|
| 53 |
+
-webkit-background-clip: text;
|
| 54 |
+
background-clip: text;
|
| 55 |
+
color: transparent;
|
| 56 |
+
animation: gradient 3s ease infinite;
|
| 57 |
+
background-size: 400% 400%;
|
| 58 |
+
}
|
| 59 |
+
header {
|
| 60 |
background-color: white;
|
| 61 |
padding: 1rem 2rem;
|
| 62 |
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
|
|
|
| 137 |
<span class="logo-owner">AyvWvlid</span>
|
| 138 |
<span>HER</span>
|
| 139 |
</div>
|
| 140 |
+
<nav>
|
| 141 |
<ul>
|
| 142 |
<li><a href="#">الرئيسية</a></li>
|
| 143 |
<li><a href="#">المنتجات</a></li>
|