Skip to content

Commit 0b53b08

Browse files
authored
Merge pull request #62 from LABHDUFBA/thibau
Att todos authors + embelezamento
2 parents b8f8581 + 50f6f86 commit 0b53b08

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+176
-99
lines changed

assets/images/daniel.jpg

7.02 KB
Loading

assets/images/matheus.jpg

-27.2 KB
Loading

assets/scss/custom.scss

Lines changed: 94 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Add your own custom styles here
1+
/* Estilos customizados */
22

33
.center-content {
44
display: flex;
@@ -10,6 +10,96 @@
1010
margin: 0 10px; /* Adiciona 10px de margem à esquerda e à direita */
1111
}
1212

13+
/* Definição das cores no tema claro */
14+
:root {
15+
--button-bg-light: #e0e0e0; /* Fundo claro para botões */
16+
--button-text-light: #242b32; /* Texto escuro */
17+
--button-hover-bg-light: #242b32; /* Fundo no hover */
18+
--button-hover-text-light: #ffffff; /* Texto branco no hover */
19+
--social-bg-light: #f0f0f0; /* Fundo claro dos ícones sociais */
20+
--social-text-light: #000; /* Cor do texto dos ícones sociais */
21+
--social-hover-bg-light: #242b32; /* Fundo no hover para ícones sociais */
22+
--social-hover-text-light: #fff; /* Texto no hover para ícones sociais */
23+
}
24+
25+
/* Definição das cores no tema escuro */
26+
:root.dark {
27+
--button-bg-light: #3c3c3c; /* Fundo mais escuro para botões */
28+
--button-text-light: #f0f0f0; /* Texto claro */
29+
--button-hover-bg-light: #ffffff; /* Fundo no hover */
30+
--button-hover-text-light: #000000; /* Texto preto no hover */
31+
--social-bg-light: #444444; /* Fundo mais escuro dos ícones sociais */
32+
--social-text-light: #f0f0f0; /* Texto claro para ícones sociais */
33+
--social-hover-bg-light: #ffffff; /* Fundo no hover para ícones sociais */
34+
--social-hover-text-light: #000000; /* Texto no hover para ícones sociais */
35+
}
36+
37+
/* Ajuste do contêiner principal */
38+
.bg-theme-light, .dark:bg-darkmode-theme-light {
39+
margin-bottom: 20px; /* Espaço entre cards */
40+
padding: 24px; /* Espaçamento interno */
41+
border-radius: 8px; /* Bordas arredondadas */
42+
}
43+
44+
/* Botão do Nome do Autor */
45+
.author-button {
46+
display: inline-flex;
47+
align-items: center;
48+
padding: 8px 16px;
49+
margin-bottom: 10px; /* Espaço entre o botão e os ícones sociais */
50+
background-color: var(--button-bg-light);
51+
color: var(--button-text-light);
52+
font-weight: bold;
53+
border-radius: 8px;
54+
text-decoration: none;
55+
transition: background-color 0.3s ease, color 0.3s ease;
56+
}
57+
58+
.author-button:hover {
59+
background-color: var(--button-hover-bg-light);
60+
color: var(--button-hover-text-light);
61+
cursor: pointer;
62+
}
63+
64+
/* Ajuste nos ícones sociais */
65+
.social-icons {
66+
display: flex;
67+
gap: 12px; /* Espaçamento entre os ícones */
68+
justify-content: center; /* Centraliza os ícones */
69+
margin-top: 10px; /* Espaço acima dos ícones */
70+
}
71+
72+
.social-icons a {
73+
display: flex;
74+
align-items: center;
75+
justify-content: center;
76+
width: 44px; /* Tamanho dos botões */
77+
height: 44px;
78+
border-radius: 50%;
79+
background-color: var(--social-bg-light);
80+
color: var(--social-text-light);
81+
transition: background-color 0.3s ease, color 0.3s ease;
82+
}
83+
84+
.social-icons a:hover {
85+
background-color: var(--social-hover-bg-light);
86+
color: var(--social-hover-text-light);
87+
cursor: pointer;
88+
}
89+
90+
/* Ajuste do resumo */
91+
.author-summary {
92+
margin-top: 16px; /* Espaço acima do texto */
93+
text-align: justify; /* Justifica o texto */
94+
line-height: 1.6; /* Aumenta o espaçamento entre linhas */
95+
}
96+
97+
/* Estilo para ícones dentro dos botões */
98+
.social-icons i {
99+
font-size: 20px; /* Tamanho do ícone */
100+
}
101+
102+
/* Layout responsivo */
13103
.container {
14104
max-width: 1200px;
15105
margin: 0 auto;
@@ -32,30 +122,15 @@
32122
.text-center {
33123
text-align: center;
34124
}
125+
35126
.btn-primary {
36127
margin-top: 20px; /* Ajuste o valor conforme necessário */
37128
}
38-
/* Exemplo de CSS para espaçar os ícones de redes sociais */
39-
.social-icons {
40-
display: flex;
41-
justify-content: center;
42-
gap: 10px; /* Ajuste o valor conforme necessário */
43-
}
44-
45-
.social-icons a {
46-
display: flex;
47-
align-items: center;
48-
justify-content: center;
49-
width: 40px; /* Ajuste o valor conforme necessário */
50-
height: 40px; /* Ajuste o valor conforme necessário */
51-
border-radius: 50%;
52-
background-color: #f0f0f0; /* Cor de fundo, ajuste conforme necessário */
53-
color: #000; /* Cor do ícone, ajuste conforme necessário */
54-
}
55129

130+
/* Estilo responsivo para ícones sociais em telas menores */
56131
@media (max-width: 600px) {
57132
.social-icons {
58133
flex-direction: row;
59-
gap: 15px; /* Ajuste o valor conforme necessário */
134+
gap: 15px; /* Ajuste do espaçamento */
60135
}
61136
}

content/english/authors/10_thibau.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@ social:
1010
link: https://www.instagram.com/l.thibau/
1111

1212
- name: lattes
13-
icon: fa fa-info-circle
13+
icon: fa-regular fa-user
1414
link: https://lattes.cnpq.br/3404425891739700
1515
---
1616

17-
Undergraduate student in Social Sciences, and Bachelor of Humanities Interdisciplinary Studies at UFBA (2020), PIBIC scholarship recipient at the Laboratory of Science, Technology, and Society - LABCTS; Was a member of the Seminar on Introduction to Psychoanalytic Theory - SIPSI (2019); Has experience in education, with an internship at Lua Nova School (2019) and in the Teaching Initiation Program - PIBID (2023).
18-
17+
Undergraduate student in Social Sciences and Bachelor in Interdisciplinary Studies in Humanities at UFBA (2020); Was a PIBIC fellow at the Science, Technology, and Society Laboratory - LABCTS and a member of the Introduction to Psychoanalytic Theory Seminar - SIPSI (2019). He has experience in education, with an internship at Escola Lua Nova (2019) and in the Teaching Initiation Program - PIBID (2023).

content/english/authors/11_arthur.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ social:
1515

1616
---
1717

18-
Currently, i am pursuing a degree in Social Sciences at the Federal University of Bahia (UFBA). My research interests include Epistemology, Gender and Identity Studies, Sociology of Religion, Sociology of Crime, and the Far Right.
18+
Currently, pursuing a degree in Social Sciences at the Federal University of Bahia (UFBA). My research interests include Epistemology, Gender and Identity Studies, Sociology of Religion, Sociology of Crime, and the Far Right.

content/english/authors/12_jorge.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ social:
1010
link: http://lattes.cnpq.br/1661372950139188
1111
---
1212

13-
I graduated in Social Sciences and hold a Master's degree in Sociology; I am currently a PhD candidate in the Graduate Program in Social Sciences at the Federal University of Bahia (PPGCS/UFBA), I have been a member of LABHDUFBA since 2020.
13+
I graduated in Social Sciences and hold a Master's degree in Sociology; I am currently a PhD candidate in the Graduate Program in Social Sciences at the Federal University of Bahia (PPGCS/UFBA). I have been a member of LABHDUFBA since 2020.

content/english/authors/13_bruno.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ image: "/images/bruno.jpeg"
66
description: infos about member
77
social:
88
- name: lattes
9-
icon: fa fa-info-circle
9+
icon: fa-regular fa-user
1010
link: http://lattes.cnpq.br/4781910791472503
1111
---
1212

13-
Ph.D. in Social Sciences (Unicamp-2011), with a Master's degree in Sociology (Unicamp-2006), a degree in Social Sciences (2003), and a Bachelor's degree in Sociology (2004) from the Federal University of Bahia (UFBA); Associate Professor of Sociology at UFRJ (Department of Sociology/IFCS); Coordinator of the Laboratory of Digital Humanities at UFRJ. He has experience in the field of Sociology, with an emphasis on Sociology of Work, working on the following topics: work, informality, Marxist theory, sociology teaching, and digital work.
13+
Associate Professor of Sociology at UFRJ (Department of Sociology/IFCS); Coordinator of the Digital Humanities Laboratory at UFRJ; Holds a PhD in Social Sciences (Unicamp-2011), a Master's in Sociology (Unicamp-2006), a teaching degree in Social Sciences (2003), and a Bachelor's degree in Sociology (2004) from the Federal University of Bahia (UFBA). His expertise lies in Sociology, with an emphasis on Sociology of Work, focusing on the following topics: labor, informality, Marxist theory, sociology teaching, and digital labor.

content/english/authors/14_jonata.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ social:
1919

2020
---
2121

22-
I am conducting doctoral research on Innovation Policies that guide the management of actions and projects in public law ICTs, with a focus on a civic-democratic approach to Social Innovation; My other research interests include Sociological and Post-Colonial Perspectives in Science, Technology, and Innovation (ST&I), the role of Digital Humanities in producing innovations within public law ICTs, and the interplay of Ethics, Citizenship, and Human Rights in ST&I. Additionally, I explore the roles, uses, and meanings of Sociology in scientific production and the development of technologies and innovations within the Federal Network of Professional and Technological Education.
22+
I am conducting doctoral research on Innovation Policies guiding the management of actions and projects in publicly owned ICTs, focusing on a civic-democratic approach to Social Innovation. My other research interests include Sociological and Post-Colonial Perspectives in Science, Technology, and Innovation (ST&I), the role of Digital Humanities in driving innovations within publicly owned ICTs, and the interrelation between Ethics, Citizenship, and Human Rights in ST&I. Additionally, I explore the roles, uses, and meanings of Sociology in scientific production and in the development of technologies and innovations within the Federal Network of Professional and Technological Education.

content/english/authors/15_icaro.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Ícaro Bernardes dos Santos Coutinho
33
weight: 15
44
55
image: "/images/icaro.jpg"
6-
description: [Descrição breve sobre o membro]
6+
description: [Brief description about the member]
77
social:
88
- name: github
99
icon: fa-brands fa-github
@@ -18,4 +18,4 @@ social:
1818
link: https://www.linkedin.com/in/icarobsc/
1919
---
2020

21-
I am a data scientist with a strong focus on data analysis, modeling, and visualization; I have experience in academic research, starting from high school, and client projects, which I have recently acquired; My work spans a broad spectrum, including optimization using heuristic methods, loss analysis in the blood derivatives supply chain, and impact assessment of social projects. The latter is the subject of my master's project at UFBA.
21+
Data scientist with a strong focus on data analysis, modeling, and visualization; Has experience in academic research and client-oriented projects. His work spans a broad spectrum, including optimization using heuristic methods, analysis of losses in the supply chain of blood derivatives, and impact assessment of social projects, the latter being the subject of his master's project at UFBA.

content/english/authors/16_Indianara.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ image: "/images/indianara.jpg"
66
description:
77
social:
88
- name: lattes
9-
icon: fa fa-info-circle
9+
icon: fa-regular fa-user
1010
link: http://lattes.cnpq.br/2886681360553144
1111
---
1212

13-
Indianara Silva is a Full Professor in the Physics Department at UEFS and a member of the Graduate Program in Science Teaching, Philosophy, and History (UFBA-UEFS); Completed her postdoctoral studies at the Department of the History of Science at Harvard University and was elected History of Physics Editor for the Revista Brasileira de Ensino de Física in 2024; Received the Carolina Nemes Award from the Brazilian Physics Society in 2022 and conducted research at prestigious institutions such as Harvard, MIT, and the Royal Society.
13+
Indianara Silva is a Full Professor in the Physics Department at UEFS and a member of the Graduate Program in Science Teaching, Philosophy, and History (UFBA-UEFS); Completed her postdoctoral studies at the Department of the History of Science at Harvard University and was elected History of Physics Editor for the Revista Brasileira de Ensino de Física in 2024. Received the Carolina Nemes Award from the Brazilian Physics Society in 2022 and conducted research at prestigious institutions such as Harvard, MIT, and the Royal Society.

content/english/authors/17_desiree.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ social:
1010
link: https://www.linkedin.com/in/desirée-melo-1447a1193/
1111
---
1212

13-
Bachelor's degree in Humanities (2023), undergraduate student in Social Sciences. Interested in sociology of religion, misinformation, and digital sociology; She was a teaching assistant for the ACCS Pluralism and Religious Rights (2022), and volunteered at the CRH - Center for Studies and Research in Humanities at UFBA (2023); Currently, she is a researcher at LABHD and LABCTS.
13+
Bachelor's degree in Humanities (2023), undergraduate student in Social Sciences. Interested in sociology of religion, misinformation, and digital sociology; She was a teaching assistant for the ACCS Pluralism and Religious Rights (2022), and volunteered at the CRH - Center for Studies and Research in Humanities at UFBA (2023); She was a researcher at LABCTS.

content/english/authors/18_romero.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ image: "/images/romero.jpg"
66
description:
77
social:
88
- name: lattes
9-
icon: fa fa-info-circle
9+
icon: fa-regular fa-user
1010
link: http://lattes.cnpq.br/6908390678539380
1111
---
1212

content/english/authors/1_leonardo-nascimento.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ social:
1414
link: https://twitter.com/leofn3
1515

1616
- name: lattes
17-
icon: fa fa-info-circle
17+
icon: fa-regular fa-user
1818
link: http://lattes.cnpq.br/7141811368487014
1919

2020
- name: link

content/english/authors/21_alisson.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ social:
2222
link: https://bsky.app/profile/alissonmasoares.bsky.social
2323
---
2424

25-
Bachelor in Social Sciences, specialist in the History of Science, Master's and PhD in Sociology at UFMG, Post-Doctorate in Political Science at UFPE; Currently interested in disinformation, conspiracy theories, Computational Social Sciences, text analysis/text mining, and Natural Language Processing.
25+
Bachelor in Social Sciences, specialist in the History of Science, Master's and PhD in Sociology at UFMG, Post-Doctorate in Political Science at UFPE. Currently interested in disinformation, conspiracy theories, Computational Social Sciences, text analysis/text mining, and Natural Language Processing.

content/english/authors/22_matheus.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ image: "/images/matheus.jpg"
66
description: infos about member
77
social:
88
- name: lattes
9-
icon: fa fa-info-circle
9+
icon: fa-regular fa-user
1010
link: http://lattes.cnpq.br/7357622400836467
1111
---
1212

13-
Born in Santos, São Paulo, he is an undergraduate student in Social Sciences at the Federal University of Santa Catarina; Additionally, he is a Scientific Initiation scholarship holder (PIBIC) under the supervision of professor Dr Letícia Cesarino, focusing on the thematic area of the far-right and social networks; He participates as a researcher at the Laboratory of Digital Humanities (LABHD/UFBA) and at the University Laboratory of Politics, Rights, Conflicts, and Anthropology (LUPA/UFSC).
13+
Born in Santos, São Paulo, he is an undergraduate student in Social Sciences at the Federal University of Santa Catarina; Additionally, he is a Scientific Initiation scholarship holder (PIBIC). Under the supervision of professor Dr Letícia Cesarino, his study focus on the thematic area of the far-right and social networks; He participates as a researcher at the Laboratory of Digital Humanities (LABHD/UFBA) and at the University Laboratory of Politics, Rights, Conflicts, and Anthropology (LUPA/UFSC).

content/english/authors/24_jefte.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ social:
1111

1212
---
1313

14-
Bachelor in Social Sciences from the Federal University of Bahia (UFBA). Currently, a master's student in the Graduate Program in Social Sciences (PPGCS) at UFBA and a Sociology teacher for the Department of Education of the State of Bahia.
14+
Bachelor in Social Sciences from the Federal University of Bahia (UFBA); Currently, a master's student in the Graduate Program in Social Sciences (PPGCS) at UFBA and a Sociology teacher for the Department of Education of the State of Bahia.

content/english/authors/25_jaime.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ social:
1919

2020
---
2121

22-
Student representative of the Interdisciplinary Bachelor’s Degree in Humanities at the Institute of Humanities and Letters of the University for International Integration of the Afro-Brazilian Lusophony (IHLM/UNILAB); I have completed teacher training in the field of history and geografy in Angola; Additionally, I have extensive experience in audiovisuals and information and communication technologies.
22+
Student representative of the Interdisciplinary Bachelor’s Degree in Humanities at the Institute of Humanities and Letters of the University for International Integration of the Afro-Brazilian Lusophony (IHLM/UNILAB). I have completed teacher training in the field of history and geografy in Angola; Additionally, I have extensive experience in audiovisuals and information and communication technologies.

content/english/authors/3_rosana.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ image: "/images/rosana.png"
66
description: infos about member
77
social:
88
- name: lattes
9-
icon: fa fa-info-circle
9+
icon: fa-regular fa-user
1010
link: http://lattes.cnpq.br/2546352728913607
1111
---
1212

13-
Rosana Silva Chagas, currently Rosana Silva Moore Wedderburn, holds a PhD (2019) and a Master's degree (2012) in Sociology from the Graduate Program of the Institute of Social and Political Studies (IESP) at the Rio de Janeiro State University (UERJ), and a Bachelor's degree in Sociology from the Federal University of Bahia (2007); She has experience in the field of Sociology, with an emphasis on racial relations, urban sociology, and criminology, focusing primarily on the topics of violence, genocide, homicides, and racial inequalities.
13+
Rosana Silva Chagas, currently Rosana Silva Moore Wedderburn, holds a PhD (2019) and a master's degree (2012) in Sociology from the Postgraduate Program at the Institute of Social and Political Studies (IESP) of the State University of Rio de Janeiro (UERJ). She holds a bachelor's degree in Sociology from the Federal University of Bahia (2007). Her experience is in the field of Sociology, with an emphasis on racial relations, urban sociology, and criminology, focusing mainly on themes such as violence, genocide, homicides, and racial inequalities.

content/english/authors/4_leticia.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ social:
1313
icon: fa-brands fa-linkedin
1414
link: https://linkedin.com/leticia-cesarino-4b51062a/
1515
---
16-
Letícia Cesarino was born in Belo Horizonte in 1979, She graduated in Social Sciences from UFMG in 2003 and completed her Master's in Social Anthropology at UNB in 2006, She earned her PhD in Anthropology from UC Berkeley in 2013, conducting field research in Brazil, Mali, Ghana, and Burkina Faso; She is a professor and researcher at UFSC, specializing in the social studies of science and technology, with a recent focus on digital anthropology; She co-coordinates a project on disinformation on Telegram with UFBA's Digital Humanities Laboratory and InternetLab; She also writes for Carta Capital and Jacobin Brasil.
16+
17+
Professor and researcher at UFSC, she graduated in Social Sciences from UFMG in 2003 and completed her Master's in Social Anthropology at UNB in 2006; Obtained her PhD in Anthropology from UC Berkeley in 2013, conducting field research in Brazil, Mali, Ghana, and Burkina Faso. Specializing in social studies of science and technology, with a recent focus on digital anthropology, she co-coordinates a project on disinformation on Telegram in partnership with the Digital Humanities Laboratory at UFBA and InternetLab. Additionally, she writes for *Carta Capital* and *Jacobin Brasil*.

0 commit comments

Comments
 (0)