This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:80> | |
ServerName localhost | |
DocumentRoot /Users/devcut/PhpstormProjects/ | |
VirtualDocumentRoot /Users/devcut/PhpstormProjects/%1/public | |
SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1 | |
<Directory "/Users/devcut/PhpstormProjects/*/public"> | |
Options Indexes FollowSymLinks | |
AllowOverride All | |
Order allow,deny |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@for $i from 1 through 4 { | |
li:first-child:nth-last-child(#{$i}), li:first-child:nth-last-child(#{$i}) ~ li { | |
width: 100% / #{$i}; | |
} | |
} |