Skip to content

Instantly share code, notes, and snippets.

View simurai's full-sized avatar

simurai simurai

View GitHub Profile
@simurai
simurai / kbd.md
Created September 27, 2019 05:28

Press enter

@simurai
simurai / dropdown.scss
Last active September 6, 2019 10:52
Move dropdown to Primer CSS
.dropdown {
position: relative;
&.active {
.dropdown-menu-content {
display: block;
pointer-events: all;
}
}
}
@simurai
simurai / README.md
Last active November 28, 2019 05:39
Atom for minimalists

For minimalist ❤️ ers

minimalist

Just you, your code and nothing else.... :meditatingbuddha:

@simurai
simurai / .hyperterm.js
Created July 18, 2016 10:21
This adds a 2px outer border to HyperTerm.
// custom css to embed in the main window
// 2px outer border
css: '.hyperterm_main {border-width: 2px;} .header_header {top: 2px; left: 2px; right: 2px;}',
@simurai
simurai / Duotone Dark.tmTheme
Created January 11, 2016 03:05
DuoTone dark theme for TextMate
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<!-- Generated by: TmTheme-Editor -->
<!-- ============================================ -->
<!-- app: http://tmtheme-editor.herokuapp.com -->
<!-- code: https://github.com/aziz/tmTheme-Editor -->
<plist version="1.0">
<dict>
<key>name</key>
<string>Duotone Dark</string>
@simurai
simurai / css-properties.css
Created November 26, 2015 05:42
All CSS properties
/*
* CSS Properties
* http://ref.openweb.io/CSS/
**/
.properties {
align-content: value;
align-items: value;
align-self: value;
@simurai
simurai / toolbar.json
Created September 13, 2015 22:27
My flex-tool-bar config file
[
{
"tooltip": "Github",
"icon": "octoface",
"url": "http://github.com",
"type": "url"
},
{ "type": "spacer" },
@simurai
simurai / styles.less
Last active August 29, 2015 14:14
Don't shrink active Atom tab
// Atom default UI theme
.tab-bar .tab.active {
flex: 0 0 auto;
max-width: none;
}
.tab-bar .tab.active .title {
overflow: visible;
}
@simurai
simurai / tlkio-night.css
Last active August 29, 2015 14:10
tlk.io night theme
/* tlk.io night theme */
.button.button {
color: #999999;
border-color: rgba(0,0,0,0.4);
background-color: #3d4148;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255,255,255,0.05)), color-stop(100%, rgba(255,255,255,0)));
background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.05), rgba(255,255,255,0));
background-image: -moz-linear-gradient(top, rgba(255,255,255,0.05), rgba(255,255,255,0));