Advertisement
Guest User

sadblyad

a guest
Apr 6th, 2020
505
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.83 KB | None | 0 0
  1. @font-face {
  2.     font-family: Helvetica, Tahoma, Arial;
  3.     src: url(font/Helvetica.ttf);
  4. }
  5. * {
  6.     margin: 0;
  7.     padding: 0;
  8. }
  9. body {
  10.     font-family: Helvetica, Tahoma, Arial;
  11. }
  12. body > div {
  13.     width: 120px;
  14.     margin: 0 auto;
  15.     background-color: rgba(0, 0, 0, .2);
  16.     width: 390px;
  17.     display: inline;
  18. }
  19. h1 {
  20.     padding: 15px 0;
  21.     font-size: 6em;
  22.     text-align: center;
  23.     text-shadow: -5px 0 5px black;
  24. }
  25. body > div > div {
  26.     display: inline-block;
  27.     vertical-align: top;
  28.     margin: 0 10px;
  29.     width: 375px;
  30.     height: 175px;
  31.     background-color: rgba(210, 0, 0, .2);
  32. }
  33. body > div > div > h2 {
  34.     white-space: pre;
  35.     overflow: hidden;
  36.     text-overflow: ellis;
  37. }
  38. body > div > div:nth-child(2) > p {
  39.     word-spacing: 25px;
  40. }
  41. body > div > div:nth-child(3) > p {
  42.     word-spacing: 5px;
  43. }
  44. body > div > div:last-child > p {
  45.     font-size: ;
  46.     height: 25px;
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement