Skip to content

Instantly share code, notes, and snippets.

View phaberest's full-sized avatar
🌎
On a world tour as digital nomad

Luca Sartori phaberest

🌎
On a world tour as digital nomad
View GitHub Profile
#!/bin/bash
# This script creates a new project (or site) under /var/sites and creates
# new virtual host for that site. With the options a site can also
# install the latest version of Laravel directly.
# This script was originally based on the following script by @Nek from
# Coderwall: https://coderwall.com/p/cqoplg
# Display the usage information of the command.
create-project-usage() {
@phaberest
phaberest / CSS Scrollbars IE
Created April 9, 2013 12:04
Style scrollbars in IE with simple CSS
body {
scrollbar-arrow-color: #FF3300;
scrollbar-3dlight-color: #FF6633;
scrollbar-highlight-color: #FF9933;
scrollbar-face-color: #FF9900;
scrollbar-shadow-color: #FF6633;
scrollbar-darkshadow-color: #FF0033;
scrollbar-track-color: #FF6600;
}
@phaberest
phaberest / CSS Scrollbars webkit
Created April 9, 2013 11:59
CSS Styled scrollbars on webkit
/* For the "inset" look only */
html {
overflow: auto;
}
body {
position: absolute;
top: 20px;
left: 20px;
bottom: 20px;
right: 20px;