/
moiseev_ov
/
mtk2-coder
Обзор
Документация
Войти
/
moiseev_ov
/
mtk2-coder
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
docs/main.css
119 строк
2 KB
moiseev oleg
fix: view
12 мар 2023, 17:27
12 мар 2023, 17:27
96abf42
Код
Авторство
О чём код?
@font-face { font-family: 'Source Code Pro'; font-style: normal; font-weight: 400; src: url(https://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQtMlrSQ.ttf) format('truetype'); } html, body { height: 100%; margin: 0; background-color: #121212; } body { max-width: 95%; margin: 0 auto; display: grid; grid-row-gap: 1em; grid-auto-rows: min-content; } body::-webkit-scrollbar { width: 1em; } header { width: 100%; } body::-webkit-scrollbar-track { box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); } body::-webkit-scrollbar-thumb { background-color: darkgrey; outline: 1px solid slategrey; } h2 { color: white; } #mtk-wrapper { display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100vh; } #mtk-coder { box-sizing: border-box; max-width: 500px; width: 100%; white-space: nowrap; overflow: hidden; font-family: "Source Code Pro", monospace; font-size: 28px; color: rgba(255, 255, 255, 0.7); position: relative; background: transparent; border: none; caret-color: #ececec; outline: none; } #border { border-bottom: solid 3px rgba(0, 255, 0, 0.75); position: absolute; right: -7px; width: 20px; } #mtk-draw { max-width: 500px; width: 100%; object-fit: contain; object-position: bottom; height: auto; max-height: 150px; } #mtk-content { display: flex; flex-direction: column; align-items: center; } a { color: white; text-decoration: none; } #download { margin-top: 16px; display: flex; flex-direction: row-reverse; gap: 8px; align-items: baseline; } #download svg { color: white; fill: white; width: 15px; height: 15px; } .tooltip { position: relative; display: inline-block; border-bottom: 1px dashed white; } .tooltip .tooltiptext { visibility: hidden; width: max-content; max-width: 30vw; background-color: #363636; color: #fff; font-size: 16px; text-align: left; border-radius: 6px; padding: 10px; position: absolute; z-index: 1; } @media only screen and (max-width: 600px) { .tooltip .tooltiptext { max-width: 50vw; } } .tooltip:hover .tooltiptext { visibility: visible; }