Create home page
This commit is contained in:
parent
24c81cc8d7
commit
7d941777c1
2 changed files with 112 additions and 13 deletions
45
style.css
45
style.css
|
|
@ -1,5 +1,46 @@
|
|||
:root {
|
||||
/* auto light/dark based on user choice */
|
||||
color-scheme: light dark;
|
||||
--text: light-dark(#000, #FFF);
|
||||
--bg: light-dark(#EEE, #242936);
|
||||
--text: light-dark(#000000, #FFFFFF);
|
||||
--bg: light-dark(#FFFFFF, #000000);
|
||||
}
|
||||
|
||||
|
||||
/* https://smolweb.org/subset.html */
|
||||
/* structural */
|
||||
html {
|
||||
/* respect user font choices */
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
|
||||
/* semantic */
|
||||
header strong {
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
|
||||
footer {
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
|
||||
/* textual */
|
||||
h1 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
/* hypertextual */
|
||||
/* listing */
|
||||
/* forms */
|
||||
/* basic table */
|
||||
/* image */
|
||||
/* presentation */
|
||||
/* metainformation and linking */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue