diff --git a/config/static/css/pycon.css b/config/static/css/pycon.css index 08ac5f9..ea02f81 100644 --- a/config/static/css/pycon.css +++ b/config/static/css/pycon.css @@ -152,11 +152,25 @@ h4 { /* Styles for the bullet contents */ +ul { + margin-left: 1em; +} + ul > li { - color: white !important; - list-style-type: "✦ "; + color: hsla(0,0%,100%,.8) !important; + list-style-type: "✦ "; + margin-left: 2rem; + margin-bottom: 1.25rem; + font-weight: 400; } .no-bullet { list-style-type: none !important; + margin-left: unset !important; + margin-bottom: unset !important; +} + +.topic-bullet { + margin-left: unset !important; + margin-bottom: unset !important; } diff --git a/pyconph/home/models.py b/pyconph/home/models.py index 61933d3..ebd83c2 100644 --- a/pyconph/home/models.py +++ b/pyconph/home/models.py @@ -148,6 +148,20 @@ def day1_date(self): def day2_date(self): return self.date_end.strftime("%B %d") + @property + def content_topics(self): + return ( + "Beginner & General Programming", + "Backend / DevOps", + "Machine Learning & Artificial Intelligence", + "Distributed Computing", + "Personal & Professional Development", + "Platform / Framework / Architecture / Security", + "Data Science / Analysis / Engineering", + "Web / Mobile", + "Practices", + ) + def keynote_speakers(self): return Speaker.objects.filter( is_featured=True, diff --git a/pyconph/home/templates/home/home_page.html b/pyconph/home/templates/home/home_page.html index 2a31ba2..a4de637 100644 --- a/pyconph/home/templates/home/home_page.html +++ b/pyconph/home/templates/home/home_page.html @@ -263,51 +263,13 @@