Transfer to git
This commit is contained in:
5
archive/ver_1-until2feb2026/css/global/articles.css
Normal file
5
archive/ver_1-until2feb2026/css/global/articles.css
Normal file
@@ -0,0 +1,5 @@
|
||||
.article {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
50
archive/ver_1-until2feb2026/css/global/components.css
Normal file
50
archive/ver_1-until2feb2026/css/global/components.css
Normal 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;
|
||||
}
|
||||
49
archive/ver_1-until2feb2026/css/global/styles.css
Normal file
49
archive/ver_1-until2feb2026/css/global/styles.css
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user