App.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. @import url(https://fonts.googleapis.com/css?family=Righteous);
  2. .App {
  3. font: 400 14px "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  4. overflow-x: hidden;
  5. max-width: 100%;
  6. }
  7. .headerBlock{
  8. border:1px solid black;
  9. }
  10. .foot{
  11. width: 100%;
  12. height:150px;
  13. background: grey;
  14. }
  15. .foot span{
  16. position:relative;
  17. top:30px;
  18. left:42%;
  19. color:white;
  20. font-size: 40px;
  21. text-shadow: 0 0 5px red, 0 0 10px orange, 0 0 15px yellow, 0 0 20px green, 0 0 25px aqua;
  22. }
  23. #myStyle{
  24. display: inline-block;
  25. color: white;
  26. background-color: blue;
  27. font-family: 'Righteous', serif;
  28. font-size: 2em;
  29. text-shadow: .03em .03em 0 hsla(230,40%,50%,1);
  30. }
  31. #myStyle:after {
  32. content: attr(data-shadow);
  33. position: absolute;
  34. top: .06em; left: .06em;
  35. z-index: -1;
  36. text-shadow: none;
  37. background-image:
  38. linear-gradient(
  39. 45deg,
  40. transparent 20%,
  41. hsla(48,20%,90%,1) 45%,
  42. hsla(48,20%,90%,1) 55%,
  43. transparent 0
  44. );
  45. background-size: .05em .05em;
  46. -webkit-background-clip: text;
  47. -webkit-text-fill-color: transparent;
  48. animation: shad-anim 15s linear infinite;
  49. }
  50. @keyframes shad-anim {
  51. 0% {background-position: 0 0}
  52. 0% {background-position: 100% -100%}
  53. }