It's a simple example that makes an animated hotspot for a tour inside tutorya.com.
A Pen by David Felipe Camargo Polo on CodePen.
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Migue</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<style type="text/css"> | |
#icons{ | |
display: flex; | |
width: 100%; | |
justify-content: center; |
#menu { | |
width: 100%; | |
display: flex; | |
align-items: center; | |
justify-content: space-between; | |
padding: 8px; | |
} | |
#lista { | |
display: flex; | |
align-items: center; |
<?php | |
/** | |
* Definition of RandomSamplesShell | |
* | |
* PHP version 5.3.x | |
* | |
* | |
* Unless required by applicable law or agreed to in writing, software | |
* distributed under the License is distributed on an "AS IS" BASIS, |
{ | |
"added_words": | |
[ | |
"customizado" | |
], | |
"caret_extra_width": 1, | |
"caret_style": "phase", | |
"close_windows_when_empty": false, | |
"color_scheme": "Packages/User/SublimeLinter/Flatland Monokai (SL).tmTheme", | |
"copy_with_empty_selection": false, |
It's a simple example that makes an animated hotspot for a tour inside tutorya.com.
A Pen by David Felipe Camargo Polo on CodePen.
# Path to your oh-my-zsh installation. | |
export ZSH=$HOME/.oh-my-zsh | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that oh-my-zsh is loaded. | |
ZSH_THEME="miloshadzic" | |
# Example aliases |
from tutorya.settings import * | |
print 'Usando local_settings' | |
DEBUG = True | |
#Auth User Model Information | |
# AUTH_USER_MODEL = 'profiles.User' | |
# EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' | |
INTERNAL_IPS = ('127.0.0.1',) |
alias sublime="sublime-text-2" | |
alias supsub="sudo sublime-text-2" | |
alias instalar="sudo apt-get install" | |
alias actualizar="sudo apt-get update" | |
alias proxyud='export http_proxy="http://proxy.udistrital.edu.co:3128"' | |
alias udproxy='export https_proxy="http://proxy.udistrital.edu.co:3128"' | |
alias gita="git add ." | |
alias gitpl="git pull origin master" | |
alias gitps="git push origin master" | |
alias gitc="git commit -m" |