Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en" dir="ltr">
- <!----------------------------------------------------
- credits:
- - honeybee icon font by themehive
- - fathom page by annasthms (sept 24, 2018)
- more info @ https://annasthms.tumblr.com/more/page/04
- rules:
- 1. don't remove the credit
- 2. don't steal/claim as yours
- 3. don't use as a base code
- thank you!! ♡♡♡
- ----------------------------------------------------->
- <head>
- <meta charset="utf-8">
- <title>blogroll | {Title}</title>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <link rel="shortcut icon" href="{Favicon}">
- <link href="https://fonts.googleapis.com/css?family=Karla" rel="stylesheet">
- <link href="https://solrainha.github.io/honeybee/honeybee.css" rel="stylesheet">
- <link href="https://static.tumblr.com/0podkko/Fijpg5uvz/blogroll.css" rel="stylesheet">
- <style>
- * {
- position: relative;
- }
- body {
- /* these four styles apply to the whole page */
- background: #fff; /* change #fff to your desired background color */
- font-family: 'Karla', sans-serif; /* to change the font, change every instance of Karla to your desired font */
- font-size: 16px; /* change 16px to your desired font size */
- color: #000; /* change #000 to your desired font color */
- }
- a {
- color: #528591; /* link color */
- text-decoration: none;
- }
- a:hover {
- color: #85b1d0; /* link hover color */
- }
- img {
- display: block;
- max-height: 100%;
- max-width: 100%;
- height: auto;
- width: auto;
- object-fit: cover;
- }
- ::-webkit-scrollbar {
- width: 11px;
- }
- ::-webkit-scrollbar-thumb {
- background: #abd7e9; /* scrollbar color */
- border-width: 6px 4px;
- border-style: solid;
- border-color: #ffffff;
- }
- ::-webkit-scrollbar-track {
- background: #ffffff;
- }
- /* header styles */
- /* blog avatar */
- div#blog_avatar_container {
- width: 6em;
- margin: 3em auto 0;
- }
- div#blog_avatar {
- height: 6em; /* blog avatar height */
- width: 6em; /* blog avatar width */
- }
- div#blog_avatar img {
- border-radius: 0.5em; /* blog avatar "roundness": 0 = square, 100% = circle */
- }
- /* username line */
- div#blog_name {
- width: 6em;
- margin-top: 0.35em;
- text-align: center;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- letter-spacing: 0.075em;
- }
- /* blog description */
- div#blog_description {
- width: 95%;
- max-width: 700px;
- margin: 2em auto 0;
- text-align: center;
- line-height: 1.35em;
- }
- /* blog links */
- div#blog_links {
- margin-top: 2em;
- text-align: center;
- }
- div#blog_links a {
- margin: 0 0.35em;
- }
- /* blogroll container */
- main {
- margin: 3em auto;
- }
- main:empty {
- padding: 2em;
- text-align: center;
- }
- main:empty::before {
- content: "{lang:Aw This Tumblr isnt following anyone}";
- text-transform: lowercase;
- }
- /* blogroll */
- div#following {
- text-align: center;
- width: 90%;
- margin: auto;
- }
- /* each individual blog */
- .followed {
- display: inline-block;
- margin: 1em; /* space between each icon */
- font-size: 0.9em;
- overflow: hidden;
- }
- /* followed blog avatar */
- img.followed_avatar {
- height: 115px; /* followed blog avatar height */
- width: 115px; /* followed blog avatar width */
- top: 0;
- transition: 0.35s all;
- }
- .followed:hover img.followed_avatar {
- top: -1.5em; /* followed blog avatar moves up on hover */
- filter: blur(10px); /* followed blog avatar blurs on hover */
- transform: scale(1.15); /* followed blog avatar grows on hover */
- }
- /* followed blog links container */
- .followed_info {
- display: grid;
- align-items: center;
- position: absolute;
- top: -25%;
- left: 5%;
- width: 90%;
- height: calc(90% - 1.5em);
- background: rgba(255,255,255,0.75);
- text-align: center;
- opacity: 0;
- transition: 0.35s all;
- box-sizing: border-box;
- }
- .followed:hover .followed_info {
- top: 5%;
- opacity: 1;
- }
- .followed_info::before {
- content: "";
- display: block;
- position: absolute;
- top: 50%;
- left: 50%;
- height: 1px;
- width: 0;
- background: #000;
- opacity: 0;
- transform: translate(-50%, -50%);
- transition: 0.5s all;
- }
- .followed:hover .followed_info::before {
- width: 65%;
- opacity: 1;
- transition-delay: 0.2s;
- }
- .followed_info .info_row2 {
- font-size: 0.9em;
- }
- .followed_info a {
- color: #000;
- }
- .followed_info a.followed_home {
- left: 0;
- transition: 0.5s all;
- }
- .followed_info a.followed_home:hover {
- left: -0.9em;
- }
- .followed_info a.followed_home .th {
- z-index: 1;
- }
- .followed_info .info_row2 a {
- display: inline-block;
- margin: 0 0.5em;
- }
- .followed_info .icon_name {
- position: absolute;
- top: 50%;
- right: 50%;
- padding-left: 0;
- transform: translate(50%, -50%) scale(0.75);
- opacity: 0;
- transition: 0.5s all;
- font-size: 0.8em;
- }
- .followed_info a:hover .icon_name {
- right: 0;
- padding-left: 0.65em;
- transform: translate(100%, -50%);
- opacity: 1;
- }
- /* followed blog username line */
- .followed_name {
- width: 100%;
- text-align: center;
- line-height: 1em;
- padding: 0.25em;
- position: absolute;
- bottom: 0;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- background: rgba(255,255,255,0.5);
- transform: translateY(100%) scale(0.75);
- opacity: 0;
- transition: 0.35s all;
- box-sizing: border-box;
- }
- .followed:hover .followed_name {
- transform: translateY(0) scale(1);
- opacity: 1;
- }
- .followed_name a {
- color: #000; /* followed blog username color */
- }
- /* tumblr controls: dashboard, follow, message */
- div#blog_controls {
- position: fixed;
- top: 0;
- right: 0;
- }
- div#blog_controls a {
- display: block;
- height: 1em;
- width: 1em;
- margin: 1em;
- text-decoration: none;
- font-size: 0.7em;
- color: #222;
- background: #fafafa;
- padding: 0.65em;
- }
- div#blog_controls a .icon_name {
- position: absolute;
- left: -0.75em;
- bottom: 50%;
- transform: translate(-100%, 50%);
- opacity: 0;
- transition: 0.35s opacity;
- pointer-events: none;
- }
- div#blog_controls a:hover .icon_name {
- opacity: 1;
- }
- /* hide the default tumblr controls iframe */
- .tmblr-iframe {
- display: none!important;
- }
- /* makes the page responsive */
- /* it's best not to touch */
- @media screen and (min-width: 500px) {
- header {
- margin-top: 8em;
- }
- }
- @media screen and (max-width: 500px) {
- .followed_info {
- display: none;
- }
- .followed_name {
- padding: 0.5em 0.25em;
- }
- div#blog_controls {
- position: relative;
- text-align: center;
- margin: 1em auto 3em;
- padding: 1em;
- }
- div#blog_controls a {
- display: inline-block;
- height: auto;
- width: auto;
- margin: 0.5em;
- font-size: 0.9em;
- }
- div#blog_controls .th {
- display: none;
- }
- div#blog_controls a .icon_name {
- position: relative;
- opacity: 1;
- left: 0;
- }
- }
- </style>
- </head>
- <body>
- <header>
- <div id="blog_info">
- <div id="blog_avatar_container">
- <div id="blog_avatar">
- <img src="{PortraitURL-128}" alt="avatar" />
- </div>
- <div id="blog_name">{Name}</div>
- </div>
- <div id="blog_description">
- <!-- your description goes here; you can replace this text with {Description} to have your description automatically appear -->
- </div>
- <div id="blog_links">
- <a href="/">home</a>
- <a href="/ask">ask</a>
- <a href="/archive">archive</a>
- </div>
- </div>
- </header>
- <main>{block:Following}
- <div id="following">
- {block:Followed}<div class="followed">
- <img src="{FollowedPortraitURL-128}" alt="{FollowedName} avatar" class="followed_avatar" />
- <div class="followed_info">
- <div class="info_row1">
- <a href="{FollowedURL}" class="followed_home" target="_blank"><span class="th th-house-1-o"></span><span class="icon_name">visit</span></a>
- </div>
- <div class="info_row2">
- <a href="https://www.tumblr.com/follow/{FollowedName}" class="followed_follow" target="_blank"><span class="th th-plus-2-o"></span></a>
- <a href="https://www.tumblr.com/message/{FollowedName}" class="followed_message" target="_blank"><span class="th th-chat-bubbles"></span></a>
- </div>
- </div>
- <div class="followed_name"><a href="{FollowedURL}" target="_blank">{FollowedName}</a></div>
- </div>{/block:Followed}
- </div>
- {/block:Following}</main>
- <div id="blog_controls">
- <a href="https://www.tumblr.com" target="_blank"><span class="th th-house-1-o"></span><span class="icon_name">dashboard</span></a>
- <a href="https://www.tumblr.com/follow/{Name}"><span class="th th-plus-2-o"></span><span class="icon_name">follow</span></a>
- <a href="https://www.tumblr.com/message/{Name}"><span class="th th-chat-bubbles"></span><span class="icon_name">message</span></a>
- <a href="https://annasthms.tumblr.com" target="_blank" id="credit"><span class="th th-code"></span><span class="icon_name">credit</span></a>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment