-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
97 lines (82 loc) · 1.56 KB
/
Copy pathstyles.css
File metadata and controls
97 lines (82 loc) · 1.56 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');
/* Corpo geral */
body {
font-family: 'Montserrat', sans-serif;
background-color: #fffdf7;
color: #2e2e2e;
line-height: 1.7;
}
/* Títulos */
h1, h2, h3, h4 {
font-family: 'Montserrat', sans-serif;
font-weight: 600;
color: #5a3c1e; /* terra */
}
/* Links */
a {
color: #b02e0c; /* vermelho-fogo */
}
a:hover {
color: #7a1f0b;
text-decoration: underline;
}
/* Código */
pre, code {
background-color: #f3f2ed;
font-family: 'Courier New', Courier, monospace;
font-size: 0.95em;
color: #2f3e2e;
border-radius: 5px;
padding: 0.2em 0.4em;
}
/* Blocos de código */
pre {
padding: 1em;
overflow-x: auto;
border-left: 4px solid #b02e0c; /* destaque código */
}
/* Caixas de alerta */
.callout {
border-left: 5px solid #4a5c3b; /* verde seco */
background-color: #f9f9f3;
}
/* Sidebar */
.sidebar {
background-color: #f7f5f0;
border-right: 1px solid #d3c4b6;
}
/* Cabeçalho e navegação */
.navbar, .nav-footer {
background-color: #e5e0d8;
color: #2e2e2e;
}
.nav-footer {
border-top: 2px solid #c8b59b;
}
/* Justificar parágrafos */
p {
text-align: justify;
}
/* Tabelas */
table {
border-collapse: collapse;
width: 100%;
margin-bottom: 1.5em;
}
th, td {
border: 1px solid #ddd;
padding: 0.6em;
}
th {
background-color: #eee6d9;
color: #3a2e1e;
}
/* Citações */
blockquote {
border-left: 4px solid #a0561f;
background-color: #fdf7f1;
padding: 0.6em 1em;
margin: 1em 0;
font-style: italic;
color: #3f3f3f;
}