Skip to content

Commit 6e202d9

Browse files
committed
update ikon.html
1 parent 9fd925f commit 6e202d9

File tree

1 file changed

+45
-15
lines changed

1 file changed

+45
-15
lines changed

ikon.html

Lines changed: 45 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -48,20 +48,50 @@
4848
}
4949

5050
.logo-display {
51-
width: 220px;
52-
height: 220px;
53-
margin: 0 auto 20px;
54-
background: linear-gradient(45deg, #0f0c29, #302b63, #24243e);
55-
border-radius: 50%;
56-
display: flex;
57-
align-items: center;
58-
justify-content: center;
59-
box-shadow: 0 0 30px rgba(106, 90, 205, 0.6);
60-
border: 3px solid #6a5acd;
61-
position: relative;
62-
overflow: hidden;
63-
animation: pulse 6s infinite alternate;
64-
}
51+
width: 350px; /* Lebar diperpanjang */
52+
height: 120px; /* Tinggi dikurangi */
53+
margin: 0 auto 30px;
54+
background: linear-gradient(45deg, #0f0c29, #302b63, #24243e);
55+
border-radius: 15px; /* Sudut melengkung */
56+
display: flex;
57+
align-items: center;
58+
justify-content: center;
59+
box-shadow: 0 5px 25px rgba(106, 90, 205, 0.7);
60+
border: 2px solid #8a2be2;
61+
position: relative;
62+
overflow: hidden;
63+
animation: pulse 6s infinite alternate;
64+
transition: transform 0.3s ease;
65+
}
66+
67+
/* Efek hover tambahan */
68+
.logo-display:hover {
69+
transform: translateY(-5px);
70+
box-shadow: 0 10px 35px rgba(106, 90, 205, 0.9);
71+
}
72+
73+
/* Animasi garis berpendar */
74+
.logo-display::before {
75+
content: "";
76+
position: absolute;
77+
top: -50%;
78+
left: -50%;
79+
width: 200%;
80+
height: 200%;
81+
background: linear-gradient(
82+
to bottom right,
83+
transparent, transparent,
84+
rgba(255, 255, 255, 0.1),
85+
transparent, transparent
86+
);
87+
transform: rotate(30deg);
88+
animation: shine 4s infinite;
89+
}
90+
91+
@keyframes shine {
92+
0% { transform: rotate(30deg) translate(-30%, -30%); }
93+
100% { transform: rotate(30deg) translate(30%, 30%); }
94+
}
6595

6696
@keyframes pulse {
6797
0% { box-shadow: 0 0 20px rgba(106, 90, 205, 0.6); }
@@ -70,7 +100,7 @@
70100

71101
.logo-display img {
72102
max-width: 80%;
73-
filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.7));
103+
filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
74104
}
75105

76106
h1 {

0 commit comments

Comments
 (0)