Skip to content

Instantly share code, notes, and snippets.

View shepelevstas's full-sized avatar
😁

Shepelev Stas shepelevstas

😁
  • Russia, Krasnoyarsk
View GitHub Profile
@shepelevstas
shepelevstas / locked_aspect_ratio_block.css
Last active September 15, 2020 09:40
css block with fixed aspect ratio
.fixed-ratio-block {
position: relative;
}
.fixed-ratio-block:before {
content: '';
display: block;
padding-top: 80%;
}
.fixed-ratio-block__content {
position: absolute;
@shepelevstas
shepelevstas / settings.json
Created September 6, 2020 18:50
vscode solarized dark custom adjustments
{
"workbench.settings.openDefaultSettings": false,
"workbench.settings.openDefaultKeybindings": true,
"editor.fontFamily": "menlo, dejavu sans code hinted, hackmen, jetbrains mono, fira code, consolas, hasklig, iosevka ss04, courier new",
"editor.fontLigatures": true,
"window.zoomLevel": -1,
"editor.fontSize": 17,
"editor.lineHeight": 26,
"terminal.integrated.fontSize": 17,
"editor.letterSpacing": -0.5,