-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e894225
commit 1403829
Showing
1 changed file
with
166 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,166 @@ | ||
body { | ||
font-family: Arial, sans-serif; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
margin: 20px; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
header { | ||
background: url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj4ODJy1Q9zMX4wneuaVqzQLCZIX9hyVRLjRBOXwDu9s-9An6IYRRebkSlAsMXmncOKMGrxSgeJbowE1tzGdoNongp_dDAGWt8n_RFGjRW-4_5THIZSb8P-tZ2-4en155NFBGsivJoWNyog/s1600/Kumpulan-Animasi-Bergerak2.gif') repeat; /* URL GIF untuk header */ | ||
background-size: cover; /* Menutupi seluruh area header */ | ||
width: 100%; /* Lebar penuh */ | ||
padding: 10px 0; | ||
text-align: center; | ||
position: fixed; /* Tetap di tempat saat digulir */ | ||
top: 0; | ||
left: 0; | ||
z-index: 1000; /* Menempatkan di depan elemen lainnya */ | ||
|
||
} | ||
|
||
.logo-container { | ||
display: inline-block; | ||
} | ||
|
||
.logo { | ||
height: 50px; | ||
} | ||
|
||
.container { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
margin-top: 80px; /* Memberi ruang untuk header tetap */ | ||
} | ||
|
||
.column { | ||
margin: 10px; | ||
} | ||
|
||
|
||
.container { | ||
display: flex; | ||
flex-direction: column; | ||
width: 100%; | ||
max-width: 600px; | ||
align-items: center; | ||
padding: 10px; | ||
} | ||
|
||
.column { | ||
width: 100%; | ||
margin: 10px 0; | ||
} | ||
|
||
textarea { | ||
width: 100%; | ||
height: 150px; | ||
padding: 10px; | ||
box-sizing: border-box; | ||
} | ||
|
||
button { | ||
margin-top: 10px; | ||
padding: 10px 20px; | ||
cursor: pointer; | ||
} | ||
|
||
#result { | ||
margin-top: 20px; | ||
display: flex; | ||
align-items: center; | ||
width: 100%; | ||
} | ||
|
||
#generatedURL { | ||
width: 70%; | ||
padding: 10px; | ||
margin-right: 10px; | ||
box-sizing: border-box; | ||
} | ||
|
||
#displayTexts { | ||
margin-top: 20px; | ||
width: 100%; | ||
max-width: 600px; | ||
word-wrap: break-word; | ||
white-space: pre-wrap; /* To preserve newlines */ | ||
display: none; | ||
align-items: center; | ||
} | ||
#marqueeText { | ||
width: 100%; | ||
white-space: nowrap; | ||
overflow: hidden; | ||
box-sizing: border-box; | ||
margin-bottom: 10px; | ||
font-size: 100px; | ||
} | ||
|
||
#marqueeText span { | ||
display: inline-block; | ||
padding-left: 100%; | ||
animation: simpleMarquee 15s linear infinite; | ||
} | ||
|
||
/* Animasi marquee sederhana */ | ||
@keyframes simpleMarquee { | ||
from { | ||
transform: translateX(100%); | ||
} | ||
to { | ||
transform: translateX(-100%); | ||
} | ||
} | ||
#animatedText { | ||
width: 100%; | ||
} | ||
|
||
#listenButton { | ||
margin-top: 10px; | ||
} | ||
|
||
@keyframes marquee { | ||
from { | ||
transform: translateX(100%); | ||
} | ||
to { | ||
transform: translateX(-100%); | ||
} | ||
} | ||
|
||
@media (max-width: 600px) { | ||
.container { | ||
padding: 5px; | ||
} | ||
|
||
button { | ||
width: 100%; | ||
margin: 5px 0; | ||
} | ||
|
||
#result { | ||
flex-direction: column; | ||
align-items: stretch; | ||
} | ||
|
||
#generatedURL { | ||
width: 100%; | ||
margin-bottom: 10px; | ||
} | ||
} | ||
|
||
footer { | ||
background: url('https://media4.giphy.com/media/U7huVmA3TKuqvznInJ/giphy.gif?cid=6c09b9526up1f6j1du83mw4uy4y0aweapr9mdsn6qcpq158e&ep=v1_gifs_search&rid=giphy.gif&ct=g') repeat; /* URL GIF */ | ||
background-size: cover; /* Menutupi seluruh area footer */ | ||
color: #fff; /* Warna teks putih */ | ||
text-align: center; | ||
padding: 10px 0; | ||
font-size: 12px; /* Ukuran huruf kecil */ | ||
position: relative; /* Posisi relatif agar mengikuti guliran */ | ||
width: 100%; | ||
|
||
} |