Tobiahao

[PAI] style.css

Nov 18th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.49 KB | None | 0 0
  1. body {
  2.   font-family: "Open Sans", sans-serif;
  3.   background-color: #020300;
  4.   color: #EECBFF;
  5.   height: 1400px;
  6. }
  7.  
  8. #Header {
  9.     width: 100%;
  10.   height: 200px;
  11.   margin: auto;
  12.   margin-top: 0px;
  13.   background-image: url("the-background-301145_960_720.png");
  14.     color: #EECBFF;
  15.     font-size: 4rem;
  16.     text-align: center;
  17. }
  18.  
  19. .topnav {
  20.   background-color: #333;
  21.   overflow: hidden;
  22.   display: inline;
  23. }
  24.  
  25. .topnav ul {
  26.   padding: 0px;
  27.   list-style-type: none;
  28.  
  29. }
  30.  
  31. .topnav a {
  32.   width: 25%;
  33.   padding-top: 15px;
  34.   padding-bottom: 15px;
  35.   float: left;
  36.   color: #b92746;
  37.   text-align: center;
  38.   text-decoration: none;
  39.   font-size: 17px;
  40.   background-color: #333;
  41. }
  42.  
  43. .topnav a:hover {
  44.   background-color: #ddd;
  45.   color: black;
  46. }
  47.  
  48. #content {
  49.   padding: 20px;
  50. }
  51.  
  52. .left {
  53.   font-size: 1.5rem;
  54.   width: 15%;
  55.   height: 300px;
  56.   float: left;
  57.   text-align: center;
  58.   overflow: hidden;
  59. }
  60.  
  61. #container {
  62.     height: 550px;
  63.   width: 85%;
  64.     font-size: 2rem;
  65.     text-align: center;
  66.     overflow-y: scroll;
  67.   float: left;
  68.   white-space: pre-wrap;
  69.   margin-bottom: 50px;
  70.   word-spacing: 2px;
  71. }
  72. .buttons {
  73.   width: 20%;
  74.   margin: auto;
  75. }
  76. .button1, .button2, .SubmitButton {
  77.   width: 107%;
  78.   background-color: #b92746;
  79.   border: none;
  80.   color: white;
  81.   padding: 15px 32px;
  82.   display: inline-block;
  83.   font-size: 16px;
  84.   margin: 4px 2px;
  85.   cursor: pointer;
  86. }
  87.  
  88. .button1:active, .button2:active{
  89.   color: #555;
  90. }
  91. .button1:focus, .button2:focus {
  92.   background-color: #111;
  93. }
  94.  
  95. .button1:focus {
  96.   text-transform: lowercase;
  97. }
  98.  
  99. .button2:focus {
  100.   text-transform: uppercase;
  101. }
  102.  
  103. .FORM {
  104.   width: 7%;
  105.   margin: auto;
  106.   padding: 50px;
  107. }
  108.  
  109. .FORM label {
  110.   text-align: center;
  111. }
  112.  
  113. .name{
  114.  
  115. }
  116.  
  117. footer {
  118.     width: 100%;
  119.     height: 100%;
  120.     text-align: center;
  121.     margin-top: 50px;
  122.     padding: 20px 0 10px 0;
  123.   clear: both;
  124.   position: fixed;
  125.   top: 80%;
  126.   left: 0%;
  127.   font-size: 1rem;
  128.   background-color: #1d1e1b;
  129.   opacity: 0.8;
  130. }
  131.  
  132. footer small:first-child {
  133.   display: block;
  134. }
  135.  
  136. footer small{
  137.   font-size: inherit;
  138.     display: inline-block;
  139. }
  140.  
  141. span:first-child {
  142.   width: 100%;
  143.   color: #b92746;
  144.   letter-spacing: 7px;
  145.   font-size: 4.5rem;
  146. }
  147.  
  148. span {
  149.   font-size: 2rem;
  150.   padding: inherit;
  151.   display: block;
  152. }
  153.  
  154. p::before {
  155.   content: "lOREM IPSUM "
  156. }
  157. p::after {
  158.   content: "Generated by Piotr Piasecki Tobiasz Nartowski"
  159. }
  160. p::first-line {
  161.   background-color: #444;
  162. }
  163. p::last-line {
  164.   background-color: #444;
  165. }
  166. ::first-letter{
  167.   text-transform: uppercase;
  168. }
Add Comment
Please, Sign In to add comment