Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. body{
  2. background-color: #eeeeee;
  3. color: white;
  4. text-align: center;
  5. font-family: monospace;
  6. }
  7.  
  8. h1 {
  9. width: 100%;
  10. display: fixed;
  11. font-family: 'Courier New', Courier, monospace;
  12. font-size:10em;
  13. -webkit-text-stroke: #333 5px;
  14. color: aqua;
  15. }
  16. * {
  17. margin: 0;
  18. padding: 0;
  19. }
  20.  
  21. .diagram {
  22. z-index: -1;
  23. position: sticky;
  24. opacity: 0.5;
  25. position: absolute;
  26. top: 60%;
  27. left: 50%;
  28. transform: translate(-50%, -50%);
  29. }
  30.  
  31. .bg{
  32. z-index: -1;
  33. position: sticky;
  34. opacity: 0.5;
  35. position: absolute;
  36. top: 50%;
  37. left: 50%;
  38. transform: translate(-50%, -50%);
  39. }
  40.  
  41. #form-container {
  42. min-width: 20%;
  43. position: absolute;
  44. top: 50%;
  45. left: 50%;
  46. transform: translate(-50%, -50%);
  47.  
  48. box-shadow: 10px 10px #333;
  49. background-color: aqua;
  50. padding: 10px;
  51. color: black;
  52. }
  53. button {
  54. width: 280px;
  55. }
  56.  
  57. nav {
  58. position: absolute;
  59. top: 35%;
  60. left: 50%;
  61. transform: translate(-50%, -50%);
  62.  
  63. }
  64.  
  65. ul {
  66. overflow: hidden;
  67. list-style-type: none;
  68. }
  69.  
  70. li {
  71.  
  72. height: 35px;
  73. float: center;
  74. margin-right: 0px;
  75. border-right: 1px solid #aaa;
  76. padding: 0 20px;
  77.  
  78. }
  79.  
  80. li:last-child {
  81. border-right: none;
  82. }
  83.  
  84. li a {
  85. text-decoration: none;
  86. color: white;
  87. font: 35px/1 Helvetica, Verdana, sans-serif;
  88. text-transform: uppercase;
  89.  
  90. -webkit-transition: all 0.5s ease;
  91. -moz-transition: all 0.5s ease;
  92. -o-transition: all 0.5s ease;
  93. -ms-transition: all 0.5s ease;
  94. transition: all 0.5s ease;
  95. }
  96.  
  97. li a:hover {
  98. color: aqua;
  99. opacity: .5;
  100. }
  101.  
  102. li.active a {
  103. font-weight: bold;
  104. color: aqua;
  105. -webkit-text-stroke: 2px #333;
  106.  
  107.  
  108.  
  109. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement