blob: a18bd0607ba93f201f480560e5330c251527f403 (
plain)
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
98
|
/* Aplicação base */
body {
background-color: var(--bg0);
font-family: system-ui;
color: var(--fg0);
}
a {
color: var(--blue);
}
a:hover {
color: var(--aqua);
}
code {
background-color: var(--bg1);
color: var(--orange);
}
pre {
background-color: var(--bg1);
border: 1px solid var(--bg3);
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0rem 1rem;
}
header>div.right {
display: flex;
gap: 2rem;
align-items: center;
}
main {
padding: 0 2rem;
}
footer {
border-top: solid 1px var(--fg0);
display: flex;
justify-content: center;
align-items: center;
gap: 2rem;
}
nav>ul {
padding: 0;
margin: 0;
display: flex;
gap: 1rem;
list-style: none;
}
nav>ul>li>a {
text-decoration: none;
font-size: 1.25rem;
}
h1 a {
text-decoration: none;
color: var(--fg0);
}
.socials>a>img {
display:block;
--icon-size: 1.5rem;
width: var(--icon-size);
height: var(--icon-size);
}
.iconGit {
filter: invert(35%) sepia(80%) saturate(1488%) hue-rotate(340deg) brightness(92%) contrast(94%);
}
.projectList {
padding: 1rem;
display: flex;
gap: 1rem;
}
.projectCard {
width: 18rem;
padding: 0.5rem;
display: flex;
flex-direction: column;
gap: 10rem;
background-color: var(--bg1);
border: solid 1px var(--fg0);
}
|