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
@-webkit-keyframes spin { | |
from { | |
-webkit-transform: rotate(0deg); | |
} | |
to { | |
-webkit-transform: rotate(360deg); | |
} | |
} | |
@keyframes spin { |
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
#social a:hover { | |
-webkit-animation: spin 2s linear infinite; | |
-moz-animation: spin 2s linear infinite; | |
animation: spin 2s linear infinite; | |
} |
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> | |
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> | |
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> | |
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> | |
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<link rel="dns-prefetch" href="//www.google-analytics.com" /> |
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> | |
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> | |
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> | |
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> | |
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<link rel="dns-prefetch" href="//www.google-analytics.com" /> |
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
.polaroid { | |
float: left; | |
position: relative; | |
width: 200px; | |
margin: 10px 10px; | |
padding: 6px 8px 10px 8px; | |
list-style: none; | |
-webkit-box-shadow: 4px 4px 8px -4px rgba(0, 0, 0, .75); | |
-moz-box-shadow: 4px 4px 8px -4px rgba(0, 0, 0, .75); | |
box-shadow: 4px 4px 8px -4px rgba(0, 0, 0, .75); |
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
.polaroid:nth-child(even) { | |
-webkit-transform: rotate(5deg); | |
-moz-transform: rotate(5deg); | |
transform: rotate(5deg); | |
-ms-transform: rotate(5deg); | |
} |
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
.polaroid { | |
float: left; | |
position: relative; | |
width: 200px; | |
margin: 10px 10px; | |
padding: 6px 8px 10px 8px; | |
list-style: none; | |
-webkit-box-shadow: 4px 4px 8px -4px rgba(0, 0, 0, .75); | |
-moz-box-shadow: 4px 4px 8px -4px rgba(0, 0, 0, .75); | |
box-shadow: 4px 4px 8px -4px rgba(0, 0, 0, .75); |
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
; hhvm configuration | |
hhvm.pid_file = /var/log/hhvm/hhvm.pid | |
hhvm.server.user = nginx | |
hhvm.server.type = fastcgi | |
hhvm.server.file_socket=/var/run/hhvm/hhvm.sock | |
;hhvm.server.port = 9000 | |
hhvm.server.default_document = index.php |
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
; php options | |
; hhvm specific | |
hhvm.log.level = Warning | |
hhvm.log.always_log_unhandled_exceptions = true | |
hhvm.log.runtime_error_reporting_level = 8191 | |
hhvm.mysql.typed_results = false | |
OlderNewer