Skip to content

Commit 23fd0e8

Browse files
authored
Substituir 'Python Brasil 2024' por 'Python Brasil 2025' na home page (Issue #321) (#322)
* atualizar logo python brasil 2025 * adicionar pybr 2025 logo e link * mudar image width p/ 800px * change colors of background and text * delete wiki folder inside wiki root (accidentally created)
1 parent 16c347c commit 23fd0e8

3 files changed

Lines changed: 33 additions & 9 deletions

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/* Sobrescrevendo as cores do header para usar cinza no estilo do evento */
2+
.master-wrapper header {
3+
background-color: #6c757d !important;
4+
background-image: linear-gradient(#495057 10%, #6c757d 90%) !important;
5+
}
6+
7+
/* Garantindo que o texto continue branco para boa legibilidade */
8+
.master-wrapper header {
9+
color: #fff !important;
10+
}
11+
12+
.master-wrapper header .header-subtitle {
13+
color: #e9ecef !important; /* Cor mais suave que combina com o fundo cinza */
14+
}
15+
16+
/* Ajustando links para melhor contraste com o fundo cinza */
17+
.master-wrapper header a {
18+
color: #fff !important;
19+
}
20+
21+
.master-wrapper header a:hover {
22+
color: #ffc107 !important;
23+
text-decoration: none !important;
24+
}

themes/pybr/static/scss/_base.scss

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,8 @@ a{
2121
color: $white;
2222
padding: 50px 0 60px 0;
2323
text-align: center;
24-
25-
/* gradient */
26-
background-color: #2b5b84;
27-
background-image: linear-gradient(#1e415e 10%,#2b5b84 90%);
24+
background-color: #6c757d;
25+
background-image: linear-gradient(#495057 10%,#6c757d 90%);
2826
box-shadow: inset 0 0 50px rgba(0,0,0,0.03),inset 0 0 20px rgba(0,0,0,0.03);
2927

3028
.header-logo {

themes/pybr/templates/base.html

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
<!-- Bootstrap -->
1313
<link href="{{ SITEURL }}/theme/css/pybr.min.css" rel="stylesheet">
1414
<link href="{{ SITEURL }}/theme/css/pygment.css" rel="stylesheet">
15+
<!-- Custom colors override -->
16+
<link href="{{ SITEURL }}/theme/css/custom-colors.css" rel="stylesheet">
1517

1618
{% block aditional_styles %}
1719
{% endblock %}
@@ -75,13 +77,13 @@
7577
<div class="row">
7678
<div class="col-12">
7779
<div class="header-container">
78-
<a href="https://2024.pythonbrasil.org.br" target="_blank">
79-
<img class="header-logo" title="Python Brasil 2024" alt="Python Brasil 2024" src="https://2024.pythonbrasil.org.br/theme/images/logo.png">
80+
<a href="https://2025.pythonbrasil.org.br" target="_blank">
81+
<img class="header-logo" title="Python Brasil 2025" alt="Python Brasil 2025 (21-27 de Outubro de 2025)" src="https://2025.pythonbrasil.org.br/images/main.png/@@images/image-2200-805c8bbb1ea72839b86149847d75dce4.png" style="max-width:100%; width:800px; height:auto;">
8082
</a>
8183

82-
<h2 class="header-subtitle">DE 16 A 21 DE OUTUBRO DE 2024</h2>
83-
<a class="header-subtitle" href="https://2024.pythonbrasil.org.br/" target="_blank">
84-
Acesse aqui o site da conferência para maiores informações e inscrição
84+
<!-- Comentando isso, pois as datas ja estao inclusas no logo de 2025. Adicionei as datas como parte do alttext tambem. <h2 class="header-subtitle">DE 21 A 27 DE OUTUBRO DE 2025</h2> -->
85+
<a class="header-subtitle" href="https://2025.pythonbrasil.org.br/" target="_blank">
86+
<h2 class="header-subtitle">Acesse aqui o site da conferência para maiores informações e inscrição!</h2>
8587
</a>
8688
</div>
8789
</div>

0 commit comments

Comments
 (0)