A PHP Error was encountered

Severity: 8192

Message: Function create_function() is deprecated

Filename: geshi/geshi.php

Line Number: 4698

Backtrace:

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4698
Function: _error_handler

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4621
Function: _optimize_regexp_list_tokens_to_string

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 1655
Function: optimize_regexp_list

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2029
Function: optimize_keyword_group

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2168
Function: build_parse_cache

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/Process.php
Line: 45
Function: parse_code

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/models/Pastes.php
Line: 517
Function: syntax

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/controllers/Main.php
Line: 693
Function: getPaste

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/index.php
Line: 315
Function: require_once

CSS Style - Stikked
From Bill, 6 Years ago, written in CSS.
Embed
  1. @import url('https://fonts.googleapis.com/css?family=Muli:300,400,700');
  2.  
  3. * {
  4.   margin: 0;
  5.   padding: 0;
  6. }
  7. body {
  8.   background-color: #000;
  9.   height: 200vh;
  10.   font-family: 'Muli', sans-serif;
  11. }
  12. .text {
  13.   position: fixed;
  14.   top: 50%;
  15.   left: 50%;
  16.   transform: translateX(-50%) translateY(-50%);
  17.   list-style: none;
  18.   border-bottom: 0;
  19. }
  20.  
  21. .text.hidden {
  22.   border-bottom: 1px solid #fff;
  23. }
  24.  
  25. .text li {
  26.   display: inline-block;
  27.   float: left;
  28.   font-weight: 700;
  29.   font-size: 2em;
  30.   color: #fff;
  31.   opacity: 1;
  32.   transition: all 0.5s ease-in-out;
  33.   max-width: 2em;
  34. }
  35. .text.hidden li.spaced {
  36.   padding-left: 0;
  37. }
  38. .text li.spaced {
  39.   padding-left: 0.5em;
  40. }
  41.  
  42. .text.hidden li.ghost {
  43.   opacity: 0;
  44.   max-width: 0;
  45. }
  46.  

Replies to CSS Style rss

Title Name Language When
Re: CSS Style Bill css 6 Years ago.