This file contains 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
<!doctype html> | |
<html> | |
<head> | |
<title>Larodiel lab - Smile</title> | |
<style type="text/css"> | |
#corpo-smille { | |
border:5px solid #2b2b2b; | |
background:#ece413; | |
width:160px; height:160px; | |
box-shadow: 0px 8px 15px #9C9C9C; |
This file contains 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
/* Smartphones (portrait and landscape) ----------- */ | |
@media only screen | |
and (min-device-width : 320px) | |
and (max-device-width : 480px) { | |
/* Styles */ | |
} | |
/* Smartphones (landscape) ----------- */ | |
@media only screen | |
and (min-width : 321px) { |
This file contains 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
/* | |
** Opacity | |
*/ | |
.opacity(@opacity: 0.5) { | |
-moz-opacity: @opacity; | |
-khtml-opacity: @opacity; | |
-webkit-opacity: @opacity; | |
opacity: @opacity; | |
@opperc: @opacity * 100; | |
-ms-filter: ~"progid:DXImageTransform.Microsoft.Alpha(opacity=@{opperc})"; |
This file contains 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
@ECHO OFF | |
::Execute como administrador | |
set choice= | |
set /p choice=Nome da pasta que deseja criar o link. | |
set cloud_service= | |
set /p cloud_service=Escreva o nome do serviço "Google Drive" ou "Dropbox" |
This file contains 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
<meta name="viewport" content="user-scalable=no,width=device-width, initial-scale=1, maximum-scale=1" /> |
This file contains 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
<!-- Mobile Metas --> | |
<meta content="user-scalable=no,width=device-width, initial-scale=1, maximum-scale=1" name="viewport" /> | |
<meta content="True" name="HandheldFriendly" /> | |
<meta content="320" name="MobileOptimized" /> | |
<meta content="Larodiel" name="author" /> | |
<meta content="on" http-equiv="cleartype" /> | |
<!-- Mobile Metas --> |
This file contains 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
<html xmlns:fb="http://ogp.me/ns/fb#" xmlns:og="http://ogp.me/ns#"> | |
<!-- OpenGraph METAS --> | |
<meta content="" property="og:title" /> | |
<meta content="" property="og:description" /> | |
<meta content="product" property="og:type" /> | |
<meta content="http://mysite.com/" property="og:url" /> | |
<meta content="http://image.myimage.com/" property="og:image" /> | |
<!-- OpenGraph METAS --> |
This file contains 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
module.exports = function(grunt) { | |
'use strict'; | |
var imagePath = "../htdocs/images"; | |
var jsPath = "../htdocs/js"; | |
var uglifyOptions = { | |
beautify: false, | |
report: "min", | |
mangle: { | |
except: ['jQuery'] |
OlderNewer