mirror of
https://github.com/abocn/TelegramBot.git
synced 2025-03-10 21:00:03 +00:00
17 lines
342 B
CSS
17 lines
342 B
CSS
|
html {
|
||
|
background-color: #0d1117;
|
||
|
color: #f0f6fc;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
margin: 0;
|
||
|
transition: 300ms;
|
||
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
||
|
padding: 2rem 13rem;
|
||
|
}
|
||
|
|
||
|
@media (max-width: 1200px) {
|
||
|
body {
|
||
|
padding: 2rem 3rem;
|
||
|
}
|
||
|
}
|