mirror of
https://github.com/neon443/neon443.github.io.git
synced 2026-03-11 07:09:12 +00:00
49 lines
605 B
CSS
49 lines
605 B
CSS
*{
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
}
|
|
b{
|
|
color: #007AFF
|
|
}
|
|
body{
|
|
background-color: #f2f2f2;
|
|
color: #333333;
|
|
font-family: system-ui;
|
|
height: 100%;
|
|
}
|
|
p{
|
|
font-size: 20px;
|
|
padding: 20px;
|
|
}
|
|
h1{
|
|
font-size: 45px;
|
|
font-weight: 750;
|
|
padding: 20px;
|
|
}
|
|
h2{
|
|
font-size: 35px;
|
|
font-weight: 300;
|
|
padding: 20px;
|
|
}
|
|
h3{
|
|
font-size: 25px;
|
|
font-weight: 200;
|
|
padding: 20px;
|
|
}
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
background-color: #1C1C1E;
|
|
color: #f1f1f1;
|
|
}
|
|
#transaction {
|
|
background-color: #191919;
|
|
}
|
|
p{
|
|
color: #AAAAAA;
|
|
}
|
|
}
|
|
@media screen and (max-width: 600px) {
|
|
*{
|
|
width: 100%;
|
|
}
|
|
} |