mirror of
https://github.com/milk-net/milk-net.github.io.git
synced 2025-04-20 14:13:42 -05:00
Create index.css
This commit is contained in:
parent
8405f09654
commit
c3f9bbee89
1 changed files with 37 additions and 0 deletions
37
assets/index.css
Normal file
37
assets/index.css
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
* {
|
||||||
|
background-color: black;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: light) {
|
||||||
|
* {
|
||||||
|
background-color: white;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, h3 {
|
||||||
|
font-family: DM Sans;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: DM Sans;
|
||||||
|
padding: 1%;
|
||||||
|
font-size: 18px;
|
||||||
|
max-width: 40em;
|
||||||
|
margin: auto;
|
||||||
|
width: 50%;
|
||||||
|
border: 10px solid lightgrey;
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#waves {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
z-index: -1;
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue