Skip to content

Commit 8c295c1

Browse files
committed
Add the full SoCal Python logo SVG to main page
1 parent 1d83f08 commit 8c295c1

File tree

4 files changed

+713
-22
lines changed

4 files changed

+713
-22
lines changed

input/assets/img/socalpython_logo.svg

Lines changed: 674 additions & 0 deletions
Loading

input/assets/style/_main.scss

Lines changed: 35 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,40 @@ blockquote {
2727

2828
}
2929

30+
.title-container {
31+
display: flex;
32+
align-items: center;
33+
gap: 10px;
34+
padding: 1px;
35+
max-width: 800px;
36+
margin: auto;
37+
flex-wrap: wrap; /* Enables wrapping for small screens */
38+
&:link,
39+
&:visited,
40+
&:hover,
41+
&:active {
42+
background: none;
43+
color: #555555;
44+
text-decoration: none;
45+
}
46+
}
47+
48+
.title-image {
49+
display: block;
50+
margin: auto;
51+
width: 350px;
52+
height: auto;
53+
flex-shrink: 0;
54+
align-content: center;
55+
}
56+
57+
.title-text {
58+
flex: 1;
59+
min-width: 200px;
60+
}
61+
3062
// currently only used on In Memoriam: Michael
31-
img {
63+
img.inmemoriam {
3264
display: block;
3365
width: 350px;
3466
max-width: 100%;
@@ -60,26 +92,9 @@ a:active {
6092
}
6193

6294
header {
63-
margin: 50px 0;
95+
margin: 5px 0;
6496
border-bottom: 1px solid #dddddd;
6597

66-
h1 {
67-
68-
a {
69-
70-
&:link,
71-
&:visited,
72-
&:hover,
73-
&:active {
74-
background: none;
75-
color: #555555;
76-
text-decoration: none;
77-
}
78-
79-
}
80-
81-
}
82-
8398
nav {
8499

85100
ul {
@@ -102,7 +117,7 @@ header {
102117

103118

104119
footer {
105-
margin: 50px 0;
120+
margin: 30px 0;
106121
padding: 15px 0;
107122
border-top: 1px solid #dddddd;
108123
font-size: 75%;

input/in-memoriam-michael/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ path: "in-memoriam-michael/"
55

66
In early May of 2025, the long-standing SoCal Python organizer Michael Ryabushkin—known to many as goodwill—passed away.
77

8-
<img src="/assets/img/goodwill.jpg" />
8+
<img class="inmemoriam" src="/assets/img/goodwill.jpg" />
99

1010
As possibly the person most responsible for years of thriving of the group and its surrounding community, he had an impact on many of us, both professionally and personally. In light of that, this page is a collection of _in memoriam_ messages submitted through [this form](https://docs.google.com/forms/d/e/1FAIpQLSeoRvyBp5SR4QVY-LK2WwW2qXahf6CfRUmkNhOKUS3NtdLAIQ/viewform?usp=header "In Memoriam: Michael Ryabushkin - Google Forms"). If you would like to share your memories of Michael, please do the same.
1111

templates/default.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@
3737
<body>
3838
<div class="wrapper">
3939
<header>
40-
<h1><a href="/">SoCal Python</a></h1>
40+
<a href="/" class="title-container" style="text-decoration: none">
41+
<image class="title-image" src="/assets/img/socalpython_logo.svg" alt="A python riding a surfboard pushed by a wave, and a stylized rendering of the words SoCal Python" />
42+
</a>
4143
<nav>
4244
<ul>
4345
<li><a href="/">Home</a></li>

0 commit comments

Comments
 (0)