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
# http://www.webtype.com/info/articles/fonts-weights/ | |
100 Extra Light or Ultra Light | |
200 Light or Thin | |
300 Book or Demi | |
400 Normal or Regular | |
500 Medium | |
600 Semibold, Demibold | |
700 Bold | |
800 Black, Extra Bold or Heavy |
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
/** | |
* A "deeper" indented text effect with the :before pseudo-element. | |
*/ | |
html, body { | |
height: 100%; | |
} | |
body { | |
margin: 0; |
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
.inner { | |
color: rgba(252, 195, 67, 0.8); | |
font-size: 48px; | |
text-shadow: 1px 2px 3px #fff, 0 0 0 #000; | |
} | |
/* | |
This sets the opacity of the text to 80%, and then creates two shadows: | |
The first is a white shadow (assuming the text is on a white background) offset 1px from the left and 2px from the top, blurred 3px. |
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
wget http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p448.tar.gz | |
yum -y install gcc gcc-c++ kernel-devel zlib zlib-devel libxml2 libxml2-devel libxslt libxslt-devel readline readline-devel openssl-devel libyaml libyaml-devel curl-devel apr-devel apr-util-devel httpd-devel |
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
curl --data-urlencode "name=I am Daniel" http://www.example.com |