Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
521
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 3.68 KB | None | 0 0
  1. <style>
  2. @media (pointer:none), (pointer:coarse) {
  3.     body {
  4.         overflow-Y: scroll !important;
  5.     }
  6. }
  7.  
  8. @media (max-width:700px) {
  9.     body {
  10.         overflow-Y: scroll !important;
  11.     }
  12.  
  13.     #links {
  14.         width: 100% !important;
  15.     }
  16. }
  17.  
  18. body::before {
  19.     height: 100vh;
  20.     width: 100vw;
  21.     content: "";
  22.     position: fixed;
  23.     top: 0px;
  24.     left: 0px;
  25.     z-index: -1; /* Ensure this stays under all elements */
  26.     filter: blur(3px) saturate(70%) brightness(75%);
  27. }
  28.  
  29. body {
  30.     height: 100vh;
  31.     width: 100vw;
  32.     color: #FFF;
  33.     overflow: hidden;
  34.     background-color: black;
  35.     background-image: url("https://cdn.discordapp.com/attachments/676989065769254912/681666633345007677/63-635006_gta-5-sunset-gta-5-background-hd.jpg");
  36.     background-size: cover;
  37.     background-repeat: no-repeat;
  38.     background-position: center center;
  39.     font-family: arial;
  40. }
  41.  
  42. /* Page Layout **/
  43. #grid-wrapper {
  44.     display: grid;
  45.     grid-template-rows: 3fr 5fr 2fr;
  46.     min-height: 100vh;
  47.     padding: 2vh 2vw 2vw 2vh;
  48. }
  49.  
  50. header {
  51.     display: grid;
  52.     align-content: center;
  53.     font-style: oblique;
  54.     font-family: "Trebuchet MS";
  55.     padding-left: 5vw;
  56.     margin-bottom: 5vh;
  57.     margin-top: -40vh;
  58. }
  59.  
  60. header i {
  61.     position: relative;
  62.     top: -10px;
  63. }
  64.  
  65. #headline h1 {
  66.     font-size: 4em;
  67.     margin-bottom: 0px;
  68.     position: relative;
  69.     z-index: 2;
  70.     filter: drop-shadow(5px 5px 3px rgba(0,0,0,0.5));
  71.     user-select: none;
  72. }
  73.  
  74. #headline h1 i {
  75.     margin-left: 25px;
  76.     margin-right: 25px;
  77. }
  78.  
  79. #headline h3 {
  80.     font-size: 1.5em;
  81. }
  82.  
  83. main {
  84.     display: grid;
  85.     align-content: center;
  86. }
  87.  
  88. #links {
  89.     display: grid;
  90.     width: 50%;
  91.     grid-template-columns: repeat( auto-fit, minmax(5em, 1fr) );
  92.     grid-gap: 5em;
  93.     margin-top: -50px;
  94. }
  95.  
  96. #links a {
  97.     color: white;
  98.     font-size: 2em;
  99.     text-decoration: none;
  100.     display: grid;
  101.     grid-row: 1fr 1fr;
  102.     align-content: center;
  103.     justify-content: center;
  104.     text-align: center;
  105. }
  106.  
  107. a:hover {
  108.     transform: scale(0.99);
  109.     filter: drop-shadow(3px 3px 2px rgba(0,0,0,0.5));
  110. }
  111.  
  112. a i {
  113.     font-size: 4em;
  114.     margin-bottom: 20px;
  115. }
  116.  
  117. a .text-link {
  118.  
  119. }
  120.  
  121. footer {
  122.     display: grid;
  123.     align-content: end;
  124.     justify-content: center;
  125.     padding-bottom: 2vh;
  126. }
  127. </style>
  128.  
  129. <html>
  130.     <head>
  131.         <title>Sunset Roleplay</title>
  132.         <meta charset="UTF-8">
  133.         <meta name="description" content="CC0 Landing Page Template for Minecraft">
  134.         <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
  135.         <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
  136.     </head>
  137.  
  138.     <body>
  139.        
  140.         <section id="grid-wrapper">
  141.         <background>
  142.             </background>
  143.             <header id="headline">
  144.                 <img src="https://cdn.discordapp.com/attachments/676989065769254912/681656445321740302/SRPlogo.png" alt="SunsetRP" style="width:300px;height:300px;">
  145.             </header>
  146.             <main id="links">
  147.                 <a href="/apply"><i class="fas fa-book-open" style="color:#9DA6A6;"></i><span class="link-Text">Apply</span></a>
  148.                 <a href="/forum"><i class="far fa-comments" style="color:#9DA6A6;"></i><span class="link-Text">Forum</span></a>
  149.                 <a href="/gallery"><i class="fas fa-images" style="color:#9DA6A6;"></i><span class="link-Text">Gallery</span></a>
  150.             </main>
  151.             <footer id="footer">
  152.                 <p>&copy; 2020 Sunset RP</p>
  153.             </footer>
  154.         </section>
  155.     </body>
  156.  
  157. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement