pds-dash/src/app.css

53 lines
857 B
CSS
Raw Normal View History

2025-04-20 17:15:00 +09:00
@font-face {
font-family: 'ProggyClean';
src: url(https://witchcraft.systems/ProggyCleanNerdFont-Regular.ttf);
}
2025-04-20 17:15:00 +09:00
::-webkit-scrollbar {
width: 0px;
background: transparent;
}
2025-04-20 17:15:00 +09:00
* {
scrollbar-width: thin;
scrollbar-color: transparent transparent;
-ms-overflow-style: none; /* IE and Edge */
-webkit-overflow-scrolling: touch;
-webkit-scrollbar: none; /* Safari */
}
a {
font-weight: 500;
color: #646cff;
text-decoration: inherit;
}
a:hover {
color: #535bf2;
}
body {
margin: 0;
display: flex;
place-items: center;
min-width: 320px;
min-height: 100vh;
2025-04-20 17:15:00 +09:00
background-color: #12082b;
font-family: 'ProggyClean', monospace;
font-size: 24px;
color: white;
border-color: #8054f0;
}
h1 {
font-size: 3.2em;
line-height: 1.1;
}
#app {
2025-04-20 17:15:00 +09:00
max-width: 1400px;
margin: 0 auto;
padding: 2rem;
text-align: center;
}