mirror of
https://github.com/neon443/neon443.github.io.git
synced 2026-03-11 07:09:12 +00:00
104 lines
1.6 KiB
CSS
104 lines
1.6 KiB
CSS
* {
|
|
box-sizing: border-box;
|
|
margin: 0px;
|
|
}
|
|
b {
|
|
color: #007AFF
|
|
}
|
|
a {
|
|
color: #007AFF
|
|
}
|
|
#topbar {
|
|
position: fixed;
|
|
top: 0px;
|
|
backdrop-filter: blur(2.5px);
|
|
-webkit-backdrop-filter: blur(2.5px);
|
|
box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.4);
|
|
-webkit-box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.4);
|
|
width: 100%;
|
|
}
|
|
#topbarTitle {
|
|
|
|
}
|
|
body {
|
|
background-color: #f2f2f2;
|
|
color: #222222;
|
|
font-family: system-ui;
|
|
height: 100%;
|
|
}
|
|
p {
|
|
font-size: 20px;
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
}
|
|
h1 {
|
|
font-size: 45px;
|
|
font-weight: 750;
|
|
padding-top: 0px;
|
|
padding-bottom: 0px;
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
}
|
|
h2 {
|
|
font-size: 35px;
|
|
font-weight: 300;
|
|
padding-top: 0px;
|
|
padding-bottom: 0px;
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
}
|
|
h3 {
|
|
font-size: 25px;
|
|
font-weight: 200;
|
|
padding-top: 0px;
|
|
padding-bottom: 0px;
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
}
|
|
::-webkit-scrollbar {
|
|
width: 15px;
|
|
}
|
|
::-webkit-scrollbar-track {
|
|
background: #fff;
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background: #ddd;
|
|
}
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #bbb;
|
|
}
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
background-color: #1C1C1E;
|
|
color: #f2f2f2;
|
|
}
|
|
.topbar {
|
|
box-shadow: 0px 0px 20px 10px rgba(255, 255, 255, 0.4);
|
|
-webkit-box-shadow: 0px 0px 20px 10px rgba(255, 255, 255, 0.4);
|
|
|
|
}
|
|
|
|
#transaction {
|
|
background-color: #222222;
|
|
}
|
|
p {
|
|
color: #e6e6e6;
|
|
}
|
|
::-webkit-scrollbar {
|
|
width: 15px;
|
|
}
|
|
::-webkit-scrollbar-track {
|
|
background: #000;
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background: #333;
|
|
}
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #555;
|
|
}
|
|
}
|
|
@media screen and (max-width: 600px) {
|
|
* {
|
|
width: 100%;
|
|
}
|
|
} |