Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <!--
- KONTAKTAUFNAHME
- Page #11 by @silbrigthemes
- A simple contact page.
- Features:
- Custom scrollbar, tooltips, text selection and mobile toolbar.
- Responsive layout.
- Combined ask and submit.
- Rules:
- 1) Do not edit beyond recogniton.
- 2) Do not steal (parts of) the code.
- 3) Do not claim as your own.
- 4) Do not delete the credit.
- 5) Please like / reblog if using.
- The code has been annotated to make customization easier.
- If you have any questions, need help or notice any oddities, please feel free to contact me:
- silbrigthemes.tumblr.com/ask
- silbrigsupport.tumblr.com
- Have fun with this page!
- -->
- <head>
- <meta charset="utf-16">
- <title>Contact</title> <!-- Change title here. -->
- <link rel="shortcut icon" href="{Favicon}"/>
- <link rel="alternate" type="application/rss+xml" href="{RSS}"/>
- <link rel="apple-touch-icon-precomposed" href="{PortraitURL-128}">
- <!-- Custom font Merriweather. -->
- <link href="https://fonts.googleapis.com/css?family=Merriweather:300,400,700&subset=cyrillic,cyrillic-ext,latin-ext,vietnamese" rel="stylesheet">
- <!-- Necessary for the theme to be responsive. -->
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <!-- Necessary for the icon font to work. -->
- <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css" integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt" crossorigin="anonymous">
- <!-- Tooltips Script -->
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
- <script src="https://static.tumblr.com/rzl30kg/eAxm7a751/jquery.style-my-tooltips.js"></script>
- <script>
- (function($){
- $(document).ready(function(){
- $("[title]").style_my_tooltips({
- tip_follows_cursor:true,
- tip_delay_time:200,
- tip_fade_speed:300
- }
- );
- });
- })(jQuery);
- </script>
- <!-- Changes the toolbar color on mobile. -->
- <meta name="theme-color" content="#d4e4fd"/>
- <style>
- body{
- margin:0;
- font-size:1em; /* 1em = 16px */
- background-color:#fefefe; /* body background */
- font-family:"Merriweather"; /* global font */
- color:#3a3533; /* text color */
- overflow-x:hidden;
- }
- /* Bold Text */
- b, strong{
- font-weight:700; /* bold text */
- }
- /* Italic Text */
- i, em{
- font-style:italic;
- font-weight:300; /* thin text */
- }
- /* Links */
- a{
- text-decoration:none;
- border-bottom:2px solid #c7bfbd; /* link border */
- color:#3a3533; /* link text color */
- transition:0.5s;
- -moz-transition:0.5s;
- -o-transition:0.5s;
- -webkit-transition:0.5s;
- }
- a:hover{
- text-decoration:none;
- border-bottom:2px solid #d4e4fd; /* link border, hover */
- transition:0.5s;
- -moz-transition:0.5s;
- -o-transition:0.5s;
- -webkit-transition:0.5s;
- }
- /* Marked Text */
- mark{
- background-color:#d4e4fd; /* mark background */
- padding:0 0.25em;
- border-radius:1em; /* rounded corners */
- }
- /* Underlined Text */
- u{
- text-decoration:none;
- border-bottom:2px solid #3a3533; /* border color */
- }
- /* Custom Scrollbar */
- ::-webkit-scrollbar{
- width:10px;
- background-color:#ecf3fe;
- border:4px solid #d6d4d6;
- }
- ::-webkit-scrollbar-thumb{
- width:10px;
- border-radius:5px;
- background-color:#d6d4d6;
- border:4px solid #ecf3fe;
- }
- /* Custom Text SElection */
- ::selection{
- background-color:#ecf3fe; /* background color */
- }
- ::-moz-selection{
- background-color:#ecf3fe;
- }
- ::-o-selection{
- background-color:#ecf3fe;
- }
- ::-webkit-selection{
- background-color:#ecf3fe;
- }
- /* Custom Tooltips */
- #s-m-t-tooltip{
- max-width:300px;
- margin:15px;
- padding:0.5em;
- background:#d4e4fd; /* Tooltip Background Color */
- color:#031e49; /* Toolip Color */
- z-index:999999;
- font-size:12px;
- text-transform:uppercase;
- font-weight:500;
- }
- /* LEFT SIDE */
- #left{
- width:50vw;
- height:100vh;
- background-color:#d6d4d6; /* background color */
- display:flex;
- align-items:center;
- justify-content:center;
- flex-direction:column;
- }
- /* Title */
- #l-title{
- font-size:3em; /* 3em = 48px */
- }
- /* Sidebar Image */
- #l-image img{
- width:300px;
- height:auto;
- }
- /* Description */
- #l-desc{
- width:300px;
- text-align:justify; /* alt.: left, center, right */
- }
- /* Navigation */
- #l-nav{
- width:300px;
- display:flex;
- align-items:center;
- justify-content:space-evenly;
- }
- /* Navigation Bubbles */
- .icon{
- width:40px;
- height:40px;
- border-radius:50%; /* circle */
- background-color:#c7bfbd; /* background color */
- display:flex;
- align-items:center;
- justify-content:center;
- transition:0.5s;
- -moz-transition:0.5s;
- -o-transition:0.5s;
- -webkit-transition:0.5s;
- }
- .icon:hover{
- background-color:#d4e4fd; /* hover background */
- transform:scale(1.1); /* increases size */
- transition:0.5s;
- -moz-transition:0.5s;
- -o-transition:0.5s;
- -webkit-transition:0.5s;
- }
- a.navlink{
- color:#3a3533; /* link color */
- text-decoration:none;
- border-bottom:none;
- }
- a.navlink:hover{
- color:#031e49; /* hover link color */
- border-bottom:none;
- }
- /* RIGHT SIDE */
- #right{
- width:50vw;
- height:100vh;
- margin-left:50vw;
- margin-top:-100vh;
- background-color:inherit; /* same as body background */
- display:flex;
- align-items:center;
- justify-content:center;
- flex-direction:column;
- }
- #right iframe{
- margin-left:-25%;
- }
- /* Hides the tumblr app button. By @yeoli-thm */
- .tmblr-iframe--app-cta-button {
- display: none!important;
- }
- /* Hides standard tumblr controls */
- body > iframe:first-child {
- display: none !important;
- }
- /* Necessary for responsive layout */
- @media only screen and (max-width:800px){
- #left{
- width:100vw;
- }
- #right{
- width:100vw;
- margin-top:0;
- margin-left:0;
- }
- }
- @media only screen and (max-width:500px){
- #right iframe{
- width:300px;
- margin-left:calc(50% - 150px);
- }
- }
- </style>
- </head>
- <body>
- <div id="left">
- <!-- Title -->
- <div id="l-title">Kontakt</div>
- <!-- Sidebar Image -->
- <div id="l-image">
- <img src="https://mediaslide-europe.storage.googleapis.com/munichmodels/pictures/1285/1285/large-1509614986-5754b4242325e78a8f21a73ac77d0ae3.jpg"/>
- </div>
- <!-- Sidebar Description -->
- <div id="l-desc">
- <mark>Luisa Hartema</mark>. 23. Model @ IMG Models and <a href="https://www.munich-models.de/" title="munich models">Munich Models</a>.
- <p>It will take up to three working days for your message to be answered.</p>
- <!-- Navigation Links -->
- <div id="l-nav">
- <a class="navlink" href="https://www.instagram.com/luisahartema_/?hl=de" title="instagram">
- <div class="icon">
- <i class="fab fa-instagram"></i>
- </div>
- </a>
- <a class="navlink" href="https://de-de.facebook.com/LuisaHartema/" title="facebook">
- <div class="icon">
- <i class="fab fa-facebook"></i>
- </div>
- </a>
- <a class="navlink" href="https://twitter.com/luisa_hartema?lang=de" title="twitter">
- <div class="icon">
- <i class="fab fa-twitter"></i>
- </div>
- </a>
- <a class="navlink" href="https://www.munich-models.de/find-models/1285-luisa-h/" title="munich models">
- <div class="icon">
- <i class="fas fa-user-circle"></i>
- </div>
- </a>
- <a class="navlink" href="https://silbrigthemes.tumblr.com/" title="page by silbrigthemes">
- <div class="icon">
- <i class="fas fa-code"></i>
- </div>
- </a>
- </div>
- </div>
- </div>
- <div id="right">
- <!-- Iframe for Askbox -->
- <p><iframe frameborder="0" scrolling="no" width="150%" height="150" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form"></iframe><!--[if IE]><script type="text/javascript">document.getElementById('ask_form').allowTransparency=true;</script><![endif]--></p>
- <!-- Iframe for submitbox -->
- <p><iframe frameborder="0" scrolling="no" width="150%" height="400" id="submit_form" src="http://www.tumblr.com/submit_form/{Name}.tumblr.com" style="background-color:transparent; overflow:hidden;"></iframe><!--[if IE]><script type="text/javascript">document.getElementById('submit_form').allowTransparency=true;</script><![endif]--></p>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment