diff --git a/content/pages/lista-de-discussoes.md b/content/pages/lista-de-discussoes.md deleted file mode 100644 index e9a3c679..00000000 --- a/content/pages/lista-de-discussoes.md +++ /dev/null @@ -1,3 +0,0 @@ -Title: Lista de Discussões -Slug: lista-de-discussoes -Template: comunidade-google-group diff --git a/pelicanconf.py b/pelicanconf.py index 44f78716..9c463e44 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -154,10 +154,6 @@ "Encontre e participe da comunidade e compartilhe " "suas dúvidas e idéias." ), "children": [ - { - "title": "Lista de Discussões", - "href": "lista-de-discussoes", - }, { "title": "Comunidades Locais", "href": "comunidades-locais", diff --git a/themes/pybr/static/css/custom-colors.css b/themes/pybr/static/css/custom-colors.css new file mode 100644 index 00000000..d85bf19a --- /dev/null +++ b/themes/pybr/static/css/custom-colors.css @@ -0,0 +1,24 @@ +/* Sobrescrevendo as cores do header para usar cinza no estilo do evento */ +.master-wrapper header { + background-color: #6c757d !important; + background-image: linear-gradient(#495057 10%, #6c757d 90%) !important; +} + +/* Garantindo que o texto continue branco para boa legibilidade */ +.master-wrapper header { + color: #fff !important; +} + +.master-wrapper header .header-subtitle { + color: #e9ecef !important; /* Cor mais suave que combina com o fundo cinza */ +} + +/* Ajustando links para melhor contraste com o fundo cinza */ +.master-wrapper header a { + color: #fff !important; +} + +.master-wrapper header a:hover { + color: #ffc107 !important; + text-decoration: none !important; +} \ No newline at end of file diff --git a/themes/pybr/static/scss/_base.scss b/themes/pybr/static/scss/_base.scss index c280fbcb..b36e3706 100644 --- a/themes/pybr/static/scss/_base.scss +++ b/themes/pybr/static/scss/_base.scss @@ -21,10 +21,8 @@ a{ color: $white; padding: 50px 0 60px 0; text-align: center; - - /* gradient */ - background-color: #2b5b84; - background-image: linear-gradient(#1e415e 10%,#2b5b84 90%); + background-color: #6c757d; + background-image: linear-gradient(#495057 10%,#6c757d 90%); box-shadow: inset 0 0 50px rgba(0,0,0,0.03),inset 0 0 20px rgba(0,0,0,0.03); .header-logo { diff --git a/themes/pybr/templates/base.html b/themes/pybr/templates/base.html index 8bc5e8a7..dcff3ac8 100644 --- a/themes/pybr/templates/base.html +++ b/themes/pybr/templates/base.html @@ -12,6 +12,8 @@ + + {% block aditional_styles %} {% endblock %} @@ -75,13 +77,13 @@