mirror of
https://github.com/zyqunix/tools.git
synced 2025-07-06 22:31:05 +02:00
50 lines
821 B
CSS
50 lines
821 B
CSS
@font-face {
|
|
font-family: 'Hack';
|
|
src: url('/Fonts/Hack/Hack-Regular.ttf') format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'JetBrainsMono';
|
|
src: url('/Fonts/JetBrainsMono/JetBrainsMono-Regular.woff2');
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
margin: 0;
|
|
font-size: 1rem;
|
|
background-color: #2a2a2a;
|
|
color: #f0f0f0;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
* {
|
|
font-family: 'Hack', 'JetBrainsMono', monospace;
|
|
}
|
|
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
a {
|
|
color: #fff;
|
|
}
|
|
|
|
a:hover, svg:hover {
|
|
color: #c099ff;
|
|
}
|
|
|
|
.card {
|
|
background-color: #252525;
|
|
padding: 20px;
|
|
border-radius: 10px;
|
|
width: 600px !important;
|
|
text-align: center;
|
|
}
|
|
|
|
.shadow {
|
|
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
|
|
}
|