MrDehH4ck3r

Deh Tech style

Dec 9th, 2023
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.94 KB | Source Code | 0 0
  1. body, html {
  2.   background-color: #fff;
  3.   background-size: 100% 100%;
  4.   }
  5.  p.article, p.article:hover {
  6.   font-family: Monospace;
  7.   white-space: pre-wrap;
  8.   font-size: 12px;
  9.   text-decoration: none;
  10.   font-weight: bold;
  11.   opacity: .7;
  12.   margin: 0px;
  13.   color: #000 !important;
  14.   text-transform: lowercase;
  15.   border: 0px;
  16.   }
  17.   p.article:first-letter {
  18.    text-transform: uppercase;
  19.    font-size: 15px;
  20.    }
  21.   a, a:hover, a:visited {
  22.   color: blue;
  23.   text-decoretion: none;
  24.   transion: ease 0.5;
  25.   font-family: monospace;
  26.   font-style: normal;
  27.   }
  28.   li {
  29.   list-style-type: none;
  30.   font-family: monospace;
  31.   font-weight: bolder;
  32.   }
  33.    h1 {
  34.    color: black;
  35.    font-weight: bolder;
  36.    font-size: 25px;
  37.    margin: 0px;
  38.    font-family: FontAweso;
  39.    animation: 5s color ease-out infinite;
  40.    }
  41.    @keyframes color {
  42.     0% {color: #000;}
  43.     25% {color: blue;}
  44.     35% {color: green;}
  45.     50% {color: cyan;}
  46.     75% {color: red;}
  47.     85% {color: lime;}
  48.     96% {color: DarkBlue;}
  49.     100% {color: purple;}
  50.     }
  51.       p.note {
  52.       color: red;
  53.       font-style: italic;
  54.       font-weight: 900;
  55.       font-family: inherit;
  56.       font-size: 12px !important;
  57.       text-transform: lowercase;
  58.       text-decoration: none;
  59.       }
  60.       p.note:before {
  61.       content: 'NOTE: ';
  62.       text-transform: uppercase;
  63.       texte-decoration: underline;
  64.       }
  65.         h2 {
  66.         color: #000 !important;
  67.         font-size: 16px;
  68.         font-style: normal;
  69.         text-decoration: none;
  70.         text-transform: normal;
  71.         }
  72.          code {
  73.          color: #fff !important;
  74.          background-color: black;
  75.          padding: 10px;
  76.          font-family: 'ariel', sans-serif;
  77.          }
  78.          code:before, code:after {
  79.          content: '$'
  80.          color: white;
  81.          }
  82.          textarea {
  83.          background-color: black;
  84.          color: #fff;
  85.          width: 400px;
  86.          height: auto;
  87.          }
Advertisement
Add Comment
Please, Sign In to add comment