Pastebin
API
tools
faq
paste
Login
Sign up
Please fix the following errors:
New Paste
Syntax Highlighting
<!DOCTYPE html> <html> <head> <!-- Sky theme made by hendrixrph. Do not redistribute or remove credit, but you are free to play with colors and fonts and whatever you want. QUICK TIPS: 1. If you want to make the font size for the character name smaller on one character but not the others, add the following code inside the <div class="name"> tag on that tab: style="font-size:SIZEYOUWANTpx" For example: <div class="name" style="font-size:30px">Name McVeryLongName</div> 2, Theoretically you can have any number of tabs, but 24 or less is ideal. 25+ will look okay in chrome, but bad in firefox and ie. --> <title>Your Title Here</title> <link rel="shortcut icon" href="{Favicon}"> <style> ::-webkit-scrollbar { width:3px; height:5px; } ::-webkit-scrollbar-track { background-color: #f6f9fb; } ::-webkit-scrollbar-thumb { background-color: #BCC5CC; } * { padding:0; margin:0; box-sizing:border-box; } body { background-image: url(http://www.transparenttextures.com/patterns/fabric-of-squares.png); } .header { width:600px; clear:both; text-align:center; height:9px; margin:10px auto; color:#333; font-size:12px; font-family:Helvetica,Arial,sans-serif; font-weight:100; } .header div { border-right:1px solid #ccc; } .header div:last-of-type { border-right:none; } .link { width:17.5%; float:left; } .link a { color:#999; text-decoration:none; transition:all 0.5s; } .link a:hover { color:#79A3BD; letter-spacing:1px; } .title { width:30%; float:left; color:#5299cc; } .wrapper { min-width:700px; max-width:1000px; height:600px; margin:0 auto; margin-top:20px; position:relative; font-family:helvetica,arial,sans-serif; font-weight:100; } .tabs { height:600px; width:20%; clear:both; overflow:auto; } .tab { width:100%; } .tab label { display:block; width:100%; background:#f6f9fb; border-bottom:#BCC5CC 1px solid; border-left:#BCC5CC 1px solid; text-align:center; font-size:12px; padding:5px; color:#79A3BD; } .tabs .tab:first-of-type label { border-top-left-radius:10px; border-top:#BCC5CC 1px solid; } .tabs .tab:last-of-type label { border-bottom-left-radius:10px; } .tab [type=radio] { display: none; } .content { position:absolute; top: 0px; left: 20%; right: 0; bottom: 0; padding: 20px; width:80%; background:white; opacity:0; clear:both; transition:opacity 1.5s ease; } [type=radio]:checked ~ label { background: #fff; color:#52ADCC; } [type=radio]:checked ~ label ~ .content { z-index: 1; opacity:1; transition:opacity 1s ease; } .portrait { width:40%; background-size:cover; background-position:center; height:600px; position:absolute; top:0; left:0; border:1px solid #BCC5CC; border-right:none; } .name { position:absolute; bottom:0; left:0; width:40%; padding:10px; font-size:40px; /* If your names are too long for the portrait box, you can lower the font size here. */ font-weight:bold; font-style:italic; text-transform:uppercase; text-shadow:0 0 15px #79A3BD, 0 0 5px #406982; color:white; } .bio { width:60%; background:#fff; height:600px; position:absolute; top:0; left:40%; padding:10px; border:1px solid #BCC5CC; border-left:none; font-size:12px; overflow:auto; color:#555; } .bio h2 { text-align:right; font-weight:100; border-bottom:1px solid #BCC5CC; margin-bottom:10px; padding-bottom:2px; color:#5299cc; text-shadow:0 0 5px #a8d6e5; font-size:20px; letter-spacing:1px; text-transform:lowercase; } .bio p { text-indent:15px; margin-bottom:5px; line-height:1.35em; } .bio blockquote { width:80%; margin:10px auto; text-align:center; padding:20px; border:1px solid #BCC5CC; text-transform:lowercase; font-style:italic; background:#f6f9fb; color:#79A3BD; line-height:1.35em; text-shadow:0 0 5px #bdefff; } .bio b, .bio strong { color:#52ADCC; } .bio a { color:#5299cc; text-decoration:none; transition:0.5s all; } .bio a:hover { color:#BCC5CC; } .bio ul, .bio ol { padding-left:30px; margin-bottom:5px; line-height:1.35em; } .bio img { padding:20px; border:1px solid #BCC5CC; background:#f6f9fb; display:block; margin:10px auto; max-width:80%; } </style> </head> <body> <div class="header"> <!-- Sadly, there must be 4 links plus a title to look right, unless you know code enough to play with the percentage widths. If you want to remove some of them without throwing off the layout, just have no text within the <a> tag.--> <div class="link"><a href="#">link 1</a></div> <div class="link"><a href="#">link 2</a></div> <div class="title">sky page theme</div> <div class="link"><a href="#">link 3</a></div> <div class="link"><a href="http://hendrixrph.tumblr.com">theme</a></div> </div> <div class="wrapper"> <div class="tabs"> <!-- BEGIN COPY/PASTE --> <div class="tab"> <input type="radio" id="tab-1" name="tab-group-1" checked> <!-- Make sure to change the id of this to something unique, or else the tabs won't work! I recommend the tab number, such as tab-3 or tab-4. NOTE: THE FIRST TAB IS THE ONLY ONE THAT SHOULD HAVE "checked" IN IT! --> <label for="tab-1">Tab One</label> <!-- Tab name. Change the for attribute to the id of the input above. --> <div class="content"> <div class="portrait" style="background-image:url('https://pbs.twimg.com/media/BxuRdHlIIAAPcCX.jpg')"> <!-- Put the URL of your image between the first and last single quote in the "style" attribute. Should look like this: style="background-image:url('YOURIMAGEURLHERE');" --> </div> <!-- End portrait image --> <div class="name">Name</div> <!-- Character name (or whatever text you want to go over the picture) goes here. --> <div class="bio"> <h2>Heading</h2> <p>Theoretically you can have any number of tabs, but 24 or less is ideal. 25+ will look okay in chrome, but bad in firefox and ie.</p> <p><b>Bolded,</b> <i>italicized,</i> <del>strikethrough</del>, <big>big,</big> <small>small</small>, <a href="#">a link,</a> <sup>superscript</sup> and <sub>subscript.</sub></p> <blockquote>Blockquote</blockquote> </div><!-- end bio --> </div> <!-- end content --> </div> <!-- end tab --> <!-- END COPY/PASTE --> <!-- BEGIN COPY/PASTE --> <div class="tab"> <input type="radio" id="tab-2" name="tab-group-1"> <!-- Make sure to change the id of this to something unique, or else the tabs won't work! I recommend the tab number, such as tab-3 or tab-4. --> <label for="tab-2">Tab Two</label> <!-- Tab name. Change the for attribute to the id of the input above. --> <div class="content"> <div class="portrait" style="background-image:url('http://resources0.news.com.au/images/2014/11/04/1227112/444260-335fa27a-63de-11e4-8f83-4f43733686cd.jpg')"> <!-- Put the URL of your image between the first and last single quote in the "style" attribute. Should look like this: style="background-image:url('YOURIMAGEURLHERE');" --> </div> <div class="name">Name</div> <!-- Character name (or whatever text you want to go over the picture) goes here --> <div class="bio"> Bio info goes here </div> <!-- end bio --> </div> <!-- end content --> </div> <!-- end tab --> <!-- END COPY/PASTE --> </div> </div> </body> </html>
Optional Paste Settings
Category:
None
Cryptocurrency
Cybersecurity
Fixit
Food
Gaming
Haiku
Help
History
Housing
Jokes
Legal
Money
Movies
Music
Pets
Photo
Science
Software
Source Code
Spirit
Sports
Travel
TV
Writing
Tags:
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
JSON
Java
JavaScript
Lua
Markdown (PRO members only)
Objective C
PHP
Perl
Python
Ruby
Swift
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
AIMMS
ALGOL 68
APT Sources
ARM
ASM (NASM)
ASP
ActionScript
ActionScript 3
Ada
Apache Log
AppleScript
Arduino
Asymptote
AutoIt
Autohotkey
Avisynth
Awk
BASCOM AVR
BNF
BOO
Bash
Basic4GL
Batch
BibTeX
Blitz Basic
Blitz3D
BlitzMax
BrainFuck
C
C (WinAPI)
C Intermediate Language
C for Macs
C#
C++
C++ (WinAPI)
C++ (with Qt extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
CMake
COBOL
CSS
Ceylon
ChaiScript
Chapel
Clojure
Clone C
Clone C++
CoffeeScript
ColdFusion
Cuesheet
D
DCL
DCPU-16
DCS
DIV
DOT
Dart
Delphi
Delphi Prism (Oxygene)
Diff
E
ECMAScript
EPC
Easytrieve
Eiffel
Email
Erlang
Euphoria
F#
FO Language
Falcon
Filemaker
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
GDB
GDScript
Game Maker
Genero
Genie
GetText
Go
Godot GLSL
Groovy
GwBasic
HQ9 Plus
HTML
HTML 5
Haskell
Haxe
HicEst
IDL
INI file
INTERCAL
IO
ISPF Panel Definition
Icon
Inno Script
J
JCL
JSON
Java
Java 5
JavaScript
Julia
KSP (Kontakt Script)
KiXtart
Kotlin
LDIF
LLVM
LOL Code
LScript
Latex
Liberty BASIC
Linden Scripting
Lisp
Loco Basic
Logtalk
Lotus Formulas
Lotus Script
Lua
M68000 Assembler
MIX Assembler
MK-61/52
MPASM
MXML
MagikSF
Make
MapBasic
Markdown (PRO members only)
MatLab
Mercury
MetaPost
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MySQL
Nagios
NetRexx
Nginx
Nim
NullSoft Installer
OCaml
OCaml Brief
Oberon 2
Objeck Programming Langua
Objective C
Octave
Open Object Rexx
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
PARI/GP
PCRE
PHP
PHP Brief
PL/I
PL/SQL
POV-Ray
ParaSail
Pascal
Pawn
Per
Perl
Perl 6
Phix
Pic 16
Pike
Pixel Bender
PostScript
PostgreSQL
PowerBuilder
PowerShell
ProFTPd
Progress
Prolog
Properties
ProvideX
Puppet
PureBasic
PyCon
Python
Python for S60
QBasic
QML
R
RBScript
REBOL
REG
RPM Spec
Racket
Rails
Rexx
Robots
Roff Manpage
Ruby
Ruby Gnuplot
Rust
SAS
SCL
SPARK
SPARQL
SQF
SQL
SSH Config
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
StandardML
StoneScript
SuperCollider
Swift
SystemVerilog
T-SQL
TCL
TeXgraph
Tera Term
TypeScript
TypoScript
UPC
Unicon
UnrealScript
Urbi
VB.NET
VBScript
VHDL
VIM
Vala
Vedit
VeriLog
Visual Pro Log
VisualBasic
VisualFoxPro
WHOIS
WhiteSpace
Winbatch
XBasic
XML
XPP
Xojo
Xorg Config
YAML
YARA
Z80 Assembler
ZXBasic
autoconf
jQuery
mIRC
newLISP
q/kdb+
thinBasic
Paste Expiration:
Never
Burn after read
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Exposure:
Public
Unlisted
Private
Folder:
(members only)
Password
NEW
Enabled
Disabled
Burn after read
NEW
Paste Name / Title:
Create New Paste
Hello
Guest
Sign Up
or
Login
Sign in with Facebook
Sign in with Twitter
Sign in with Google
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Public Pastes
✅ API Glitch (Docs Leak)
CSS | 51 min ago | 0.45 KB
I made $15,000 in 2 days
CSS | 52 min ago | 0.45 KB
This summer smells like money
CSS | 52 min ago | 0.45 KB
HELLO PROGRAMMER
1 hour ago | 0.03 KB
Untitled
5 hours ago | 2.26 KB
FB2600 User Handbook v0.91
1 day ago | 6.06 KB
FB2600 Administrator & Moderator SOP
1 day ago | 8.13 KB
Untitled
1 day ago | 7.38 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!