{"id":174935,"date":"2013-04-01T11:45:03","date_gmt":"2013-04-01T07:45:03","guid":{"rendered":"http:\/\/savepearlharbor.com\/?p=174935"},"modified":"-0001-11-30T00:00:00","modified_gmt":"-0001-11-29T21:00:00","slug":"","status":"publish","type":"post","link":"https:\/\/savepearlharbor.com\/?p=174935","title":{"rendered":"<span class=\"post_title\">\u041f\u0435\u0440\u0432\u043e\u0430\u043f\u0440\u0435\u043b\u0441\u044c\u043a\u0438\u0435 CSS \u0441\u043d\u0438\u043f\u0435\u0442\u044b<\/span>"},"content":{"rendered":"<div class=\"content html_format\">   \t\u041f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u0432\u043e\u0442 \u0442\u0430\u043a\u043e\u0439 \u0432\u043e\u0442 \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0442 CSS \u0441\u043d\u0438\u043f\u0435\u0442\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u043c\u043e\u0436\u043d\u043e \u0440\u0430\u0441\u043a\u0430\u0440\u0441\u0438\u0442\u044c \u043f\u0435\u0440\u0432\u043e\u0435 \u0430\u043f\u0440\u0435\u043b\u044f.<\/p>\n<pre><code class=\"css\">\/*   Turn every website upside down *\/ body {   \/*-webkit-transform: rotate(180deg);   transform: rotate(180deg);*\/ }  \/*   blur every website for a split second every 30 seconds *\/ body {   \/*-webkit-animation: blur 30s infinite;*\/ }  \/*   Spin every Website *\/  body {   \/*-webkit-animation: spin 5s linear infinite;     animation: spin 5s linear infinite;*\/ } <\/code><\/pre>\n<p>  <a name=\"habracut\"><\/a>  <\/p>\n<h5>\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u0435&#8230;<\/h5>\n<p>  <\/p>\n<pre><code class=\"css\">\/*   Flip all images upside down *\/ img {   \/*-webkit-transform: rotate(180deg);   transform: rotate(180deg);*\/ }  \/*   COMIC SANS EVERYTHING *\/  body, p, body p, body div p {   \/*font-family: 'Comic Sans MS', cursive !important;*\/ }  \/*   Spin all images *\/  img {   \/*-webkit-animation: spin 1s linear infinite;   animation: spin 1s linear infinite;*\/ }  \/*   Hide every 2nd paragraph element on a page *\/ p:nth-child(2) {   \/*display:none !important;*\/ }   \/*   Permanent cursor wait *\/  html {   \/*cursor:wait !important; *\/ }  \/*   hide the cursor all together *\/ html {   \/*cursor:none !important;*\/ }  \/*   slowly grow text *\/ p {   -webkit-animation: grow 120s ease-in;   -moz-animation: grow 120s ease-in;   animation: grow 120s ease-in; }  \/*   Spin dev tools round and round *\/ #-webkit-web-inspector {  \/*-webkit-animation: spin 1s linear infinite; *\/ }  \/*   Flip dev tools upside down *\/  #-webkit-web-inspector {  \/*-webkit-transform:rotate(180deg);*\/ }  \/* Hide the close button *\/ #-webkit-web-inspector .toolbar-item.close-left {   \/*display:none !important;*\/ }  \/* Make console text all blurry *\/ #-webkit-web-inspector .console-group-messages {   \/*text-shadow: 0 0 3px rgba(0,0,0,.5) !important;*\/ }  #-webkit-web-inspector .console-error-level .console-message-text, #-webkit-web-inspector .console-error-level .section .header .title {   \/*text-shadow: 0 0 3px rgba(255,0,0,.5) !important;*\/ }  #-webkit-web-inspector .console-user-command &gt; .console-message-text {   \/*text-shadow: 0 0 3px rgba(0,128,255,.5) !important;*\/ }  #-webkit-web-inspector .console-group-messages, #-webkit-web-inspector .console-user-command &gt; .console-message-text, #-webkit-web-inspector .console-formatted-null, #-webkit-web-inspector .console-formatted-undefined, #-webkit-web-inspector .console-debug-level .console-message-text, #-webkit-web-inspector .console-error-level .console-message-text, #-webkit-web-inspector .console-error-level .section .header .title, #-webkit-web-inspector .console-group-messages .section .header .title, #-webkit-web-inspector .console-formatted-object, #-webkit-web-inspector .console-formatted-node, #-webkit-web-inspector .console-formatted-array, #-webkit-web-inspector .section .properties .name, #-webkit-web-inspector .event-properties .name, #-webkit-web-inspector .console-formatted-object .name, #-webkit-web-inspector .console-formatted-number, #-webkit-web-inspector .console-formatted-string, #-webkit-web-inspector #console-messages a {   \/*color: transparent !important;*\/ }  \/* HTML PRIDE! *\/ html {   \/*-webkit-animation: rainbow 8s infinite;*\/ }  \/*   Make every website fall over! *\/ \/* html, body {   height: 100%; }  html {   -webkit-perspective: 1000;   perspective: 1000; }  body {   -webkit-transform-origin: bottom center;   -webkit-transform: rotateX(-90deg);   -webkit-animation: fall 1.5s ease-in; } *\/  \/* \tInsert a phrase every paragraph *\/ \/* p:before {    content: &quot;YOLO &quot;; } *\/  \/* Animations *\/  @-webkit-keyframes blur {   0%   { -webkit-filter: blur(0px); }   49%   { -webkit-filter: blur(0px); }   50%   { -webkit-filter: blur(1px); }   51%   { -webkit-filter: blur(0px); }   100%   { -webkit-filter: blur(0px); } }  @-webkit-keyframes spin {   0%   { -webkit-transform: rotate(0deg); }   100%   { -webkit-transform: rotate(360deg); } }  @-webkit-keyframes rainbow {   100% { -webkit-filter: hue-rotate(360deg); } }  @-webkit-keyframes fall {   0%   { -webkit-transform: none; }   100%   { -webkit-transform: rotateX(-90deg); } }  @keyframes spin {   0%   { transform: rotate(0deg); }   100%   { transform: rotate(360deg); } }  @keyframes fall {   0%   { transform: none; }   100%   { transform: rotateX(-90deg); } }  @-moz-keyframes spin {   0%   { transform: rotate(0deg); }   100%   { transform: rotate(360deg); } }  @-moz-keyframes fall {   0%   { transform: none; }   100%   { transform: rotateX(-90deg); } }   @-webkit-keyframes grow {   0%   { font-size: none; }   100%   { font-size: 80pt; } } @-moz-keyframes grow {   0%   { font-size: none; }   100%   { font-size: 80pt; } } @keyframes grow {   0%   { font-size: none; }   100%   { font-size: 80pt; } } <\/code><\/pre>\n<p>  \u0417\u0430\u0431\u0440\u0430\u0442\u044c \u0444\u0430\u0439\u043b \u0438 \u0444\u043e\u0440\u043a\u043d\u0443\u0442\u044c\u0441\u044f, \u043c\u043e\u0436\u043d\u043e \u043f\u043e \u0441\u0441\u044b\u043b\u043a\u0435 <a href=\"https:\/\/github.com\/wesbos\/aprilFools.css\">github.com\/wesbos\/aprilFools.css<\/a>    \t \t\t   \t<\/p>\n<div class=\"clear\"><\/div>\n<\/p><\/div>\n<p> \u0441\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u043e\u0440\u0438\u0433\u0438\u043d\u0430\u043b \u0441\u0442\u0430\u0442\u044c\u0438 <a href=\"http:\/\/habrahabr.ru\/post\/174935\/\"> http:\/\/habrahabr.ru\/post\/174935\/<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<div class=\"content html_format\">   \t\u041f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u0442\u0441\u044f \u0432\u043e\u0442 \u0442\u0430\u043a\u043e\u0439 \u0432\u043e\u0442 \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0442 CSS \u0441\u043d\u0438\u043f\u0435\u0442\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u043c\u043e\u0436\u043d\u043e \u0440\u0430\u0441\u043a\u0430\u0440\u0441\u0438\u0442\u044c \u043f\u0435\u0440\u0432\u043e\u0435 \u0430\u043f\u0440\u0435\u043b\u044f.<\/p>\n<pre><code class=\"css\">\/*   Turn every website upside down *\/ body {   \/*-webkit-transform: rotate(180deg);   transform: rotate(180deg);*\/ }  \/*   blur every website for a split second every 30 seconds *\/ body {   \/*-webkit-animation: blur 30s infinite;*\/ }  \/*   Spin every Website *\/  body {   \/*-webkit-animation: spin 5s linear infinite;     animation: spin 5s linear infinite;*\/ } <\/code><\/pre>\n<p>  <\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[],"tags":[],"class_list":["post-174935","post","type-post","status-publish","format-standard","hentry"],"_links":{"self":[{"href":"https:\/\/savepearlharbor.com\/index.php?rest_route=\/wp\/v2\/posts\/174935","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/savepearlharbor.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/savepearlharbor.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/savepearlharbor.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/savepearlharbor.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=174935"}],"version-history":[{"count":0,"href":"https:\/\/savepearlharbor.com\/index.php?rest_route=\/wp\/v2\/posts\/174935\/revisions"}],"wp:attachment":[{"href":"https:\/\/savepearlharbor.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=174935"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/savepearlharbor.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=174935"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/savepearlharbor.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=174935"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}