Un fork del popular contrato open source para diseñadores y desarrolladores creado por Stuff & Nonsense
- Publicado: 05/02/2014
- Entrada original
Entre nosotros [nombre de la compañía]
Entre nosotros [nombre de la compañía]
| body { | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| text-rendering: optimizeLegibility; | |
| font-feature-settings: "liga" on; | |
| -moz-font-feature-settings: "liga" on; | |
| } |
| @mixin for-size($range) { | |
| $phone-upper-boundary: 600px; | |
| $tablet-portrait-upper-boundary: 900px; | |
| $tablet-landscape-upper-boundary: 1200px; | |
| $desktop-upper-boundary: 1800px; | |
| @if $range == phone-only { | |
| @media (max-width: #{$phone-upper-boundary - 1}) { @content; } | |
| } @else if $range == tablet-portrait-up { | |
| @media (min-width: $phone-upper-boundary) { @content; } |
| docker stop $(docker ps -a -q) && docker rm $(docker ps -a -q) |
Pointing your domains to a gh-pages branch requires three steps.
A records on Namecheap. Both Github IPs are 192.30.252.153 and 192.30.252.154.CNAME alias on Namecheap. your_username.github.io. (mind the extra period!)CNAME with your new domain name in your repository. lowercase and nothing else| #!/bin/bash | |
| killall Xcode | |
| xcrun -k | |
| xcodebuild -alltargets clean | |
| rm -rf "$(getconf DARWIN_USER_CACHE_DIR)/org.llvm.clang/ModuleCache" | |
| rm -rf "$(getconf DARWIN_USER_CACHE_DIR)/org.llvm.clang.$(whoami)/ModuleCache" | |
| rm -rf ~/Library/Developer/Xcode/DerivedData/* | |
| rm -rf ~/Library/Caches/com.apple.dt.Xcode/* | |
| open /Applications/Xcode.app |
| sudo lsof -P | grep ':80' | awk '{print $2}' | xargs kill -9 |
| const fs = require('fs'); | |
| const path = require('path'); | |
| const opentype = require('opentype.js'); | |
| const fontFormats = ['.ttf', '.otf']; | |
| const fontsPath = path.join(__dirname, 'assets', 'fonts'); | |
| const filenames = fs.readdirSync(fontsPath); | |
| filenames.forEach(filename => { | |
| const extension = path.extname(filename); |
| // Install craco package https://www.npmjs.com/package/@craco/craco and create a craco.config.js with the following configuration | |
| module.exports = { | |
| webpack: { | |
| configure: { | |
| target: "electron-renderer", | |
| }, | |
| }, | |
| }; |
| version: 2 | |
| aliases: | |
| - &restore_npm_cache | |
| name: 'Restoring node_modules from the cache' | |
| key: yarn-v1-{{ checksum "yarn.lock" }}-{{ arch }} | |
| - &install_npm_dependencies | |
| name: Installing NPM Dependencies | |
| command: yarn install | |
| - &save_npm_cache |