Advertisement
southcodes

full stop | resolutions page

Dec 27th, 2021
2,300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 4.84 KB | None | 0 0
  1. <!--
  2.    
  3.     - page 'full stop' by skye southcodes.tumblr.com
  4.     - modify as you please but please do not touch the credit
  5.     - any errors? need help? have questions? let me know!
  6.     southcodes.tumblr.com/inbox
  7.    
  8.     - normalize css by https://github.com/necolas
  9.     - fonts by google
  10.     - icon font by https://cappuccicons.com/
  11.  
  12. -->
  13.  
  14. <!DOCTYPE html>
  15. <html>
  16. <head>
  17.     <title>{title}</title>
  18.  
  19.     <meta charset="UTF-8">
  20.     <meta name="viewport" content="width=device-width">
  21.  
  22.     <link rel="shortcut icon" href="{favicon}">
  23.     <link rel="alternate" type="application/rss+xml" href="{RSS}">
  24.     {block:Description}<meta name="description" content="{MetaDescription}"/>{/block:Description}
  25.  
  26.     <!-- fonts -->
  27.     <link rel="preconnect" href="https://fonts.googleapis.com">
  28.     <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  29.     <link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;1,400;1,500&family=Open+Sans:ital,wght@0,400;0,600;1,400;1,600&display=swap" rel="stylesheet">
  30.  
  31.     <!-- icons -->
  32.     <script src="https://pull.cappuccicons.com/cpf.js"></script>
  33.     <link href="https://icons.cappuccicons.com/cpf.css" rel="stylesheet">
  34.    
  35.     <!-- normalize css -->
  36.     <link href="https://necolas.github.io/normalize.css/7.0.0/normalize.css" rel="stylesheet">
  37.  
  38. <style>
  39. /*  general  */
  40.  
  41. body, figure{margin: 0;padding: 0}
  42. html{font-size: 14px}
  43. body {font: 1rem 'Open Sans', sans-serif;
  44.  
  45. color:#333     /* text color */
  46.  
  47. }
  48. a {text-decoration: none;
  49.  
  50. color:#7778a4;      /* links color */
  51.  
  52. }
  53. a:hover {
  54.  
  55. color:#36608c;     /* links hover color */
  56.  
  57. }
  58. b {font-weight: 600}
  59.  
  60. nav ul,nav li {list-style-type:none;margin:0;padding:0;}
  61.  
  62. /*  header  */
  63.  
  64. header {
  65. text-align: center;
  66. margin:7rem auto 5rem;
  67. width:95vw;
  68. max-width: 35rem;
  69. }
  70.  
  71. figure.header-image {
  72. width:5rem;
  73. height:5rem;
  74. display: inline-block;
  75. vertical-align: middle;
  76. margin-right: 2rem;
  77. }
  78. img.header-image {
  79. width:100%;
  80. height:100%;
  81. border-radius: 100%;
  82. object-fit: cover;
  83. }
  84.  
  85. #title {
  86. font: 500 1.2rem 'Montserrat', sans-serif;
  87. vertical-align: middle;
  88. display: inline-block;
  89. }
  90.  
  91. #description {
  92. margin:3rem 0;
  93. line-height: 170%;
  94. letter-spacing: .03rem;
  95. font-size: .9rem;
  96. }
  97.  
  98. #navigation .cp {
  99. font-size: 1.2rem;
  100. }
  101. #navigation li{
  102. display: inline-block;
  103. margin:0 1.5rem
  104. }
  105.  
  106. /* main */
  107.  
  108. main {    
  109. width:95vw;
  110. max-width: 35rem;
  111. margin:0 auto 5rem;
  112. font-size: .95rem;
  113. }
  114.  
  115. main li{
  116. list-style-type:none;margin:0;padding:0;
  117. border:1px solid rgb(206, 206, 206);
  118. margin-top:-1px;
  119. padding:1rem;
  120. margin-bottom: 2rem;
  121. }
  122.  
  123. .finished {background:rgb(226, 240, 228);
  124. position: relative;}
  125. .finished:before {
  126. font-family:'cappuccicons';
  127. content: '\e9d9';
  128. color:green;
  129. margin-right: 1rem;
  130. }
  131.  
  132. .pending {background-color:rgb(245, 231, 231);padding-left: 3rem;position: relative;}
  133. .pending:before {
  134. position: absolute;
  135. left:1rem;
  136. font-family:'cappuccicons';
  137. content: '\ec3a';
  138. color:red;
  139. -webkit-animation:spin 4s linear infinite;
  140. -moz-animation:spin 4s linear infinite;
  141. animation:spin 4s linear infinite;
  142. }
  143. @-moz-keyframes spin {
  144. 100% { -moz-transform: rotate(360deg); }
  145. }
  146. @-webkit-keyframes spin {
  147. 100% { -webkit-transform: rotate(360deg); }
  148. }
  149. @keyframes spin {
  150. 100% {
  151.     -webkit-transform: rotate(360deg);
  152.     transform:rotate(360deg);
  153. }
  154. }
  155.  
  156. </style>
  157. </head>
  158. <body>
  159.  
  160. <header>
  161.  
  162.     <figure class="header-image">
  163.  
  164.         <img src="IMAGE URL" class="header-image">
  165.  
  166.     </figure>
  167.  
  168.     <h1 id="title">new years resolutions title</h1>
  169.  
  170.     <article id="description">
  171.         <p>A description: Lorem ipsum dolor sit amet consectetur adipisicing elit. Sapiente velit quidem reiciendis ex? Animi adipisci nulla odit ducimus, possimus eos hic recusandae culpa debitis modi exercitationem ad, voluptates voluptatibus eius?</p>
  172.     </article>
  173.    
  174.     <nav id="navigation"><ul>
  175.  
  176.         <li><a href="/" title="home"><i class="cp cp-home"></i></a></li>
  177.  
  178.         <li><a href="/ask" title="ask"><i class="cp cp-envelope"></i></a></li>
  179.        
  180.         <li><a href="#" title="about"><i class="cp cp-user"></i></a></li>
  181.  
  182.         <li><a href="#" title="menu"><i class="cp cp-menu"></i></a></li>
  183.  
  184.     </ul></nav>
  185. </header>
  186.  
  187.  
  188.  
  189. <main>
  190.  
  191.     <!--
  192.         TEMPLATES:
  193.        
  194.         use this code if the resolution has not been completed:
  195.  
  196.         <li class="pending">your resolution here</li>
  197.  
  198.         ----------------
  199.  
  200.         use this code if the resolution has been completed:
  201.  
  202.         <li class="finished">your resolution here</li>
  203.  
  204.      -->
  205.  
  206.     <li class="pending">a pending resolution</li>
  207.    
  208.     <li class="finished">a finished resolution</li>
  209.  
  210.  
  211.  
  212. </main>
  213.  
  214.  
  215. <footer><a href="https://southcodes.tumblr.com/" style="font-size:.9rem;position: fixed;bottom:1rem;right:1rem;font-family: 'Montserrat', sans-serif;font-weight: 600;color:#888" target="_blank" >SC</a></footer>
  216. </body>
  217. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement