Skip to content

Commit d1f6998

Browse files
authored
Merge pull request #162 from pyladies/add_register_button
add register button
2 parents 7cca742 + fc2a050 commit d1f6998

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

content/_index.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,11 @@ imagealt = "Website banner of PyLadiesCon 2024 Online. 6th-8th December | Multi-
2424
<a href="https://instagram.com/pyladiescon"><i class="fab fa-instagram fa-2x px-2" aria-hidden="true"></i></a>
2525
<a href="https://www.linkedin.com/company/pyladiescon"><i class="fab fa-linkedin fa-2x px-2" aria-hidden="true"></i></a>
2626
</div>
27-
<div class="w-100 mt-2 text-start" style="color: white;">
28-
Check the <a class="text-white" href="/schedule">Schedule!</a>
27+
<div class="w-100 mt-2 text-start" style=color:#fff>Check the <a class=text-white href=/schedule>Schedule!</a></div>
28+
<div class="w-100 mt-2 text-start">
29+
<a href="https://pretix.eu/pyladiescon/2024">
30+
<button type="button" class="btn btn-pink btn-block mb-2 rainbow rainbow-1" data-toggle="collapse">REGISTER</button>
31+
</a>
2932
</div>
3033
</div>
3134

themes/pyladies/assets/css/main.css

+22
Original file line numberDiff line numberDiff line change
@@ -629,3 +629,25 @@ h2 a {
629629
.dropdown-content li {
630630
padding: 8px 16px;
631631
}
632+
633+
/* Rainbow Button */
634+
.rainbow{
635+
background-color: white;
636+
border-radius: 2px;
637+
color: black;
638+
cursor: pointer;
639+
padding: 20px;
640+
text-decoration: none;
641+
}
642+
643+
.rainbow-1:hover{
644+
background-image: linear-gradient(90deg, #00C0FF 0%, #FFCF00 49%, #FC4F4F 80%, #00C0FF 100%);
645+
animation:slidebg 5s linear infinite;
646+
}
647+
648+
@keyframes slidebg {
649+
to {
650+
background-position:20vw;
651+
}
652+
}
653+

0 commit comments

Comments
 (0)