-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.scss
More file actions
40 lines (34 loc) · 1.26 KB
/
Copy pathcustom.scss
File metadata and controls
40 lines (34 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*-- scss:rules --*/
// Paleta de Cores UFPA
$blue-ufpa: #002C6F;
$red-ufpa: #E4002B;
$yellow-ufpa: #FFD700;
$black-ufpa: #231F20;
$white: #FFFFFF;
// Configuração do Tema Bootstrap
$primary: $blue-ufpa;
$secondary: $red-ufpa;
$navbar-dark-bg: $blue-ufpa;
$navbar-dark-color: $blue-ufpa;
$body-bg: $white;
// Cores Específicas para Componentes do Quarto
$body-color: $black-ufpa;
$link-color: $blue-ufpa;
$code-bg: lighten($black-ufpa, 70%);
$code-color: $black-ufpa;
// Customizações Adicionais
h1, h2, h3, h4, h5, h6 {
color: $black-ufpa !important;
}
.sidebar-item.active > a {
background-color: lighten($blue-ufpa, 50%);
color: $blue-ufpa !important;
font-weight: bold;
}
// Color code por categoria do site (acentos em bordas/paineis):
// Azul UFPA ($blue-ufpa) -> Ensino, Pesquisa, Notas, Estudos (conteúdo acadêmico)
// Vermelho UFPA ($red-ufpa) -> Publicações (produção/realizações)
// Dourado UFPA ($yellow-ufpa)-> Documentos, Editais, Institucional (institucional/administrativo)
.accent-azul { border-left: 3px solid $blue-ufpa !important; }
.accent-vermelho { border-left: 3px solid $red-ufpa !important; }
.accent-dourado { border-left: 3px solid darken($yellow-ufpa, 15%) !important; }