Skip to content

Instantly share code, notes, and snippets.

View ltrademark's full-sized avatar
👨‍💻
Working from home

Leo H. ltrademark

👨‍💻
Working from home
View GitHub Profile

Keybase proof

I hereby claim:

  • I am ltrademark on github.
  • I am ltrademark (https://keybase.io/ltrademark) on keybase.
  • I have a public key whose fingerprint is D31F 432E 4443 3DEC E218 4B09 1A4F 98B1 58D1 AD4B

To claim this, I am signing this object:

@ltrademark
ltrademark / scss_grid-mixins.css
Last active May 15, 2018 13:37
Generated by SassMeister.com.
.all-in-one-grid {
display: grid;
grid-template-columns: 300px 300px 300px 300px;
grid-template-rows: 300px 300px 300px 300px;
grid-column-start: 1;
grid-row-start: 3;
grid-column-end: 1;
grid-row-end: 4;
}
@ltrademark
ltrademark / zoomph-defaults.scss
Last active May 16, 2018 13:42
Boilerplate for variables, mixins, & functions for the zoomph cobra platform.
// Zoomph Document Setup
// UI components
$quare-size: 8;
$padding: ($quare-size * 2)+0px;
/// Durations, Interpolations, Size, Colors, Functions, & Mixins are are default values and never change. likely to be used in an @import
// Durations
$near: 225ms;
$far: 375ms;
@ltrademark
ltrademark / L-master.scss
Last active July 18, 2018 15:23
master SASS functions, mixins, variables, and so on
// functions
@function font($to, $from, $toWidth, $fromWidth) {
$slope: ($to - $from) / ($toWidth - $fromWidth);
$base: $from - $slope * $fromWidth;
@return calc(#{$base} + #{100vw * $slope});
}
@function convert($val, $base-font: $font-large) {
// This works in conjunction to the `font` function when sizing
// text, since its working off the basis of `1em` when converting.
//
@ltrademark
ltrademark / .hyper.js
Last active May 6, 2019 11:44
Hyper Term Config
module.exports = {
config: {
updateChannel: 'stable',
// default font size in pixels for all tabs
fontSize: 12,
// font family with optional fallbacks
fontFamily: '"Roboto Mono", "Fira Code", Menlo, "DejaVu Sans Mono", "Lucida Console", monospace',
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk)
@ltrademark
ltrademark / DISCORD_FIX--WINDOWS10.MD
Last active January 13, 2021 18:59
quick set-up how-to and settings dump for fixing the abysmal experience for discord on windows 10.
@ltrademark
ltrademark / theme.js
Created March 26, 2021 16:42
Round 1 @ theming
export const theme = {
name: "LTM - CYB",
space: [],
colors: {
"primary-blues": [
"hsl(233.69,100%,29.43%)",
"hsl(226.5,100%,35.72%)",
"hsl(221.75,100%,41.55%)",
"hsl(221.54,86.67%,50%)",
],
@ltrademark
ltrademark / business_card
Last active April 2, 2021 15:43
curlable card from ltmbc-curl.glitch.me
╭──────────────────────────────────────────────────╮
│ │
│(B ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ │
│(B █ █ │
│(B ▀ ▄▄▄ ▄ ▄ █ │
│(B █ █ █▀▄▀█ █ │
│(B █ █ █ █ █ │
│(B █ █ │
│(B █▄▄▄ ▄▄▄▄▄▄▄▄▄█ │
@ltrademark
ltrademark / bannerimg-figma.jpg
Last active May 3, 2022 16:57
Content dump test
bannerimg-figma.jpg
@ltrademark
ltrademark / sideberry.css
Created May 15, 2022 03:50
sideberry styles
#root,
#root[data-style="auto"] {
--accent: #15e;
--container-dot: 6px;
--nav-btn-size: 32px;
--tabs-fg: #fff;
--tabs-fg-hover: #eee;
--tabs-bg-hover: rgba(255,255,255,0.1);
--tabs-selected-bg: var(--accent);