Advertisement
RyukiChan

Stl

Jun 1st, 2020
717
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 4.38 KB | None | 0 0
  1. body {
  2.     font-family: 'Dosis', sans-serif;
  3.     background: #ffffff;
  4.     height: 100%;
  5.     width: 100%;
  6.     color: #ffffff;
  7.     background: -webkit-linear-gradient(bottom, #bababa, #ffffff);
  8.     /* For Safari */
  9.     background: -o-linear-gradient(top, #bababa, #ffffff);
  10.     /* For Opera */
  11.     background: -moz-linear-gradient(top, #bababa, #ffffff);
  12.     /* For Firefox*/
  13.     background: linear-gradient(to top, #bababa, #ffffff);
  14.     /* Standard syntax */
  15. }
  16.  
  17. a,
  18. a:focus,
  19. a:hover {
  20.     color: #ffffff;
  21. }
  22.  
  23. ::-webkit-scrollbar {
  24.     display: none;
  25. }
  26.  
  27. ::scrollbar {
  28.     display: none;
  29. }
  30.  
  31. ::-moz-selection {
  32.     /* Code for Firefox */
  33.     color: #ffffff;
  34.     background: #00775A;
  35. }
  36.  
  37. ::selection {
  38.     color: white;
  39.     background: #00775A;
  40. }
  41.  
  42. input {
  43.     caret-color: #040157;
  44. }
  45.  
  46. input:active {
  47.     -webkit-box-shadow: inset 0px 0px 50px 5px rgba(4, 1, 87, 0.5);
  48.     -moz-box-shadow: inset 0px 0px 50px 5px rgba(4, 1, 87, 0.5);
  49.     box-shadow: inset 0px 0px 50px 5px rgba(4, 1, 87, 0.5);
  50. }
  51.  
  52. .shadow {
  53.     -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.5);
  54.     -moz-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.5);
  55.     box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.5);
  56. }
  57.  
  58. .shadow:hover {
  59.     -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.5);
  60.     -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.5);
  61.     box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.5);
  62. }
  63.  
  64. .site-gradient {
  65.     background: #000000;
  66.     background: -webkit-linear-gradient(left bottom, #040157, #00775A);
  67.     /* For Safari */
  68.     background: -o-linear-gradient(top right, #040157, #00775A);
  69.     /* For Opera */
  70.     background: -moz-linear-gradient(top right, #14131f, #00775A);
  71.     /* For Firefox*/
  72.     background: linear-gradient(to top right, #040157, #00775A);
  73.     /* Standard syntax */
  74.     -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.25);
  75.     -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.25);
  76.     box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.25);
  77. }
  78.  
  79. #nav {
  80.     justify-content: center;
  81.     text-align: justify;
  82.     padding: 1.5rem 0;
  83.     position: relative;
  84.     z-index: 500;
  85. }
  86.  
  87. #header-links {
  88.     text-decoration: none;
  89.     align-items: center;
  90. }
  91.  
  92. #header {
  93.     font-size: 2rem;
  94.     white-space: normal;
  95.     font-weight: 500;
  96.     margin: 0 0.25rem;
  97. }
  98.  
  99. #social-media {
  100.     width: 100%;
  101. }
  102.  
  103. #social-media-icons {
  104.     text-decoration: none;
  105.     margin: 0 -0.25rem;
  106. }
  107.  
  108. #social {
  109.     width: 2.5rem;
  110.     height: 2.5rem;
  111. }
  112.  
  113. #main {
  114.     margin: auto;
  115.     display: flex;
  116.     min-height: 100vh;
  117.     height: 100%;
  118.     width: 100vw;
  119.     align-items: center;
  120.     justify-content: center;
  121. }
  122.  
  123. #igpreview {
  124.     display: flex;
  125.     margin: -5rem auto auto auto;
  126.     position: relative;
  127.     text-align: center;
  128.     justify-content: center;
  129.     max-width: 75vw;
  130.     border: 0.25rem solid #ffffff;
  131.     -webkit-transition: all 1s ease;
  132.     transition: all 1s ease;
  133.     -moz-transition: all ease 1s;
  134.     -o-transition: all ease 1s;
  135. }
  136.  
  137. #igpreview:hover {
  138.     transform: scale(1.05);
  139.     -webkit-transition: all 1s ease;
  140.     transition: all 1s ease;
  141.     -moz-transition: all ease 1s;
  142.     -o-transition: all ease 1s;
  143. }
  144. #ytlink {
  145.     color: #000000;
  146.     text-align: center;
  147.     padding: 1.5rem 0;
  148.     margin: 0.25rem;
  149.     border-radius: 10rem;
  150.     font-weight: 500;
  151.     font-size: 1rem;
  152.     width: 90vw;
  153.     border: none;
  154. }
  155.  
  156. #igloadbtn {
  157.     color: #ffffff;
  158.     padding: 0.75rem;
  159.     border-radius: 15rem;
  160.     letter-spacing: 0.5rem;
  161.     font-weight: 500;
  162.     font-size: 1.25rem;
  163. }
  164.  
  165. #igloadbtn:active {
  166.     filter: brightness(1.5);
  167. }
  168.  
  169. .igloadbtn {
  170.     color: #ffffff;
  171.     border: none;
  172.     white-space: nowrap;
  173.     min-width: 50vw;
  174.     padding: 0.75rem;
  175.     margin: 0.5rem 0;
  176.     text-align: center;
  177.     border-radius: 15rem;
  178.     font-weight: 700;
  179.     font-size: 1.25rem;
  180. }
  181.  
  182. .igloadbtn:active {
  183.     filter: brightness(1.5);
  184. }
  185. .result {
  186.   margin: 0 auto;
  187.   padding: 4em 1em;
  188.   max-width: 40em;
  189. }
  190. .result video, .result img {
  191.   width: calc(100% - 4em);
  192.   margin: 2em;
  193. }
  194. .result .download {
  195.   text-decoration: none;
  196.   display: inline-block;
  197.   padding: 0.5em 1em;
  198.   background: #208bfd;
  199.   border-color: #208bfd;
  200.   border-width: 1px;
  201.   color: #f9f9f9;
  202.   transition: all 500ms ease;
  203. }
  204. .result .download:focus, .result .download:hover {
  205.   background: #208bfd;
  206.   border-color: #f9f9f9;
  207.   cursor: pointer;
  208.   transition: all 500ms ease;
  209. }
  210.  
  211.  
  212. #footer {
  213.     padding: 0.5rem;
  214.     font-weight: 500;
  215.     font-size: 1.5rem;
  216. }
  217.  
  218. @media only screen and (max-height: 440px) {
  219.     #nav {
  220.         padding: 0.25rem;
  221.     }
  222.     #main {
  223.         margin: 3rem auto;
  224.     }
  225.  
  226. }
  227.  
  228. @media only screen and (max-height: 380px) {
  229.     #header {
  230.         font-size: 3vw;
  231.     }
  232.     #main {
  233.         margin: 5rem auto;
  234.     }
  235. }
  236.  
  237.  
  238. @media only screen and (max-height: 280px) {
  239.     #main {
  240.         margin: 7rem auto;
  241.     }
  242. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement