Transfer to git

This commit is contained in:
2026-02-03 19:37:38 -03:00
commit 35d8517e56
137 changed files with 5817 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
.article {
display: flex;
flex-direction: column;
align-items: center;
}

View File

@@ -0,0 +1,50 @@
body {
margin: 5em;
max-width: 1000px;
min-height: 800px;
justify-content: center;
display: flex;
flex-direction: column;
}
body, html {
box-sizing: border-box;
}
* {
box-sizing: inherit;
}
/* TOP AND BOT BAR */
.bar {
width: 100%;
display: flex;
align-items: center;
height: fit-content;
}
.bar > div{
flex: 1;
}
.left > p {
text-align: left;
}
.mid > p {
text-align: center;
}
.right > p {
text-align: right;
}
.panel > .title {
font-style: italic;
}
.panel {margin-bottom: 1em;}
.bot {margin-top: 1em;}
.top {font-weight: bold;}
.last {
margin-bottom: 0em;
}

View File

@@ -0,0 +1,49 @@
html {
display: flex;
justify-content: center;
}
body {
font-size: 15px;
font-family: monospace;
text-align: center;
background-color:rgb(255, 244, 163);
color: rgb(47, 45, 31);
transition: background-color 0.3s ease, color 0.3s ease;
scrollbar-width: thin;
}
h1 {font-size: 24px;}
h2 {font-size: 20px;}
h3 {font-size: 18px;}
h4 {font-size: 14px;}
p {
margin: 10px;
}
a:link, a:visited {
color: rgb(47, 45, 31);
transition: color 0.3s ease;
}
a:hover {
color: rgb(144, 138, 93);
transition: color 0.3s ease;
}
.panel {
border: 5px ridge rgb(159, 143, 96);
background-color: rgb(255, 230, 153);
transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}
span.li{
display: list-item;
text-align: left;
margin-left: 2em
}
img {
image-rendering:pixelated;
}