first commit

This commit is contained in:
2024-09-06 13:32:15 -04:00
commit 700e8a2948
2013 changed files with 447887 additions and 0 deletions
@@ -0,0 +1,48 @@
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
@@ -0,0 +1,110 @@
/* --------------------------------
Primary style
-------------------------------- */
*, *::after, *::before {
box-sizing: border-box;
}
body {
font-size: 1.6rem;
font-family: sans-serif;
color: #333333;
background: white;
}
a {
color: #608CEE;
text-decoration: none;
}
/* --------------------------------
Main components
-------------------------------- */
header {
text-align: center;
padding: 80px 0 48px;
}
header h1 {
font-size: 2.8rem;
}
header p {
font-size: 1.4rem;
margin-top: 1em;
}
header a:hover {
text-decoration: underline;
}
ul {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
ul li {
border-radius: .25em;
transition: background 0.2s;
user-select: none;
overflow: hidden;
text-align: center;
padding: 1em;
}
ul li:hover {
background: #f8f8f8;
}
ul p, ul em, ul input {
display: block;
font-size: 1.1rem;
color: rgba(0,0,0,0.6);
-webkit-user-select: auto;
-moz-user-select: auto;
-ms-user-select: auto;
user-select: auto;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
cursor: pointer;
max-width: 11rem;
}
ul p {
padding: 10px 0;
}
ul p::selection, ul em::selection {
background: #608CEE;
color: #fff;
}
ul p::-moz-selection, ul em::-moz-selection {
background: #608CEE;
color: #fff;
}
ul em {
margin-bottom: 8px;
}
ul em::before {
content: '[';
}
ul em::after {
content: ']';
}
ul input {
text-align: center;
background: transparent;
border: none;
box-shadow: none;
outline: none;
}