Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.23 KB | None | 0 0
  1. body {
  2.     height: 100rem;
  3.  
  4.   margin: 0 !important;
  5.   padding: 0 !important;
  6.  
  7.    
  8.  
  9.   font-family: sans-serif;
  10.  
  11.   background: #0d0d0d;
  12. }
  13.  
  14. .headerBox{
  15.     width: 100%;
  16.     height:10%;
  17.  
  18.     position: fixed;
  19.     top:0%;
  20.     left:0%;
  21.  
  22.    
  23.     margin-bottom:240px;
  24.    
  25.     /*padding:40px;*/
  26.     background-color:#0d0d0d;
  27.     border-bottom: 2px solid #0a0a0a;
  28.    
  29.     z-index: 1;
  30.  
  31. }
  32.  
  33. .headerBox h2{
  34.  
  35.     color:#ffffff;
  36.     font-size: 20px;
  37.     text-align: left;
  38.    
  39.     float:right;
  40.        
  41.    
  42.     padding-left: 0.5%;
  43.  
  44.     margin-top: 1%;
  45.     margin-right: 10%;
  46.  
  47.    
  48.    
  49.     border-left: 2px solid #b30000
  50.  
  51. }
  52.  
  53. .index{
  54.     color: #ffffff;
  55.     font-size: 30px;
  56.  
  57.  
  58.     position:relative;
  59.     top: 25%;
  60.  
  61.     left: 2%;
  62.  
  63.    
  64.    
  65.    
  66.     padding:8px;
  67.  
  68.     text-decoration: none;
  69.    
  70.     border-left: 2px solid #b30000
  71.    
  72.    
  73. }
  74.  
  75.  
  76.  
  77. .text-box-input{
  78.  
  79.     width: 100%;
  80.    
  81.  
  82.     font-size: 16px;   
  83.  
  84.     position: relative;
  85.  
  86.  
  87.    
  88.   outline: none;
  89.     overflow: hidden;
  90.     background: #070707 !important;
  91.  
  92.  
  93.     padding:10px;
  94.     padding-left:8px;
  95.    
  96.     margin: 0 0 8px 0;
  97.  
  98.     border:none;
  99.  
  100.     border-left: 1px solid #b30000;
  101.  
  102.     border-top-right-radius: 4px;
  103.   border-bottom-right-radius: 4px;
  104.  
  105.    
  106.  
  107.  
  108.    
  109.  
  110.  
  111.  
  112.   color: #ffffff;
  113.  
  114.     transition: border 500ms ease-in-out;
  115.  
  116. }
  117.  
  118.  
  119.  
  120. .text-box-input:focus{
  121.  
  122.  
  123.     border-left-color: #ffffff;
  124.    
  125.  
  126. }
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133. .submit-frame{
  134.  
  135.   width: 40%;
  136.  
  137.  
  138.   margin-left: 8px;
  139.  
  140.  
  141.  
  142.   border: 1px solid #b30000;
  143.   background: none;
  144.   padding: 8px;
  145.   margin-top: 8px;
  146.   outline: none;
  147.  
  148.   border-radius: 5px;
  149.  
  150.   cursor: pointer;
  151.  
  152.   color: #ffffff;
  153.  
  154.   transition-duration: 500ms;
  155.  
  156.  
  157. }
  158.  
  159. .submit-frame:hover{
  160.  
  161.   /*background: #b30000;*/
  162.   /*border-color: #ffffff;*/
  163.   background: #b30000
  164.  
  165.  
  166.  
  167. }
  168.  
  169. .new-frame{
  170.   width: 40%;
  171.  
  172.  
  173.   float: left;
  174.   margin-left: 8px;
  175.  
  176.  
  177.  
  178.  
  179.   border: 1px solid #b30000;
  180.   background: none;
  181.   padding: 8px;
  182.   margin-top: 8px;
  183.   outline: none;
  184.  
  185.   border-radius: 5px;
  186.  
  187.   cursor: pointer;
  188.  
  189.     text-align: center;
  190.     font-size: 13px;
  191.   color: #ffffff;
  192.     text-decoration: none;
  193.  
  194.   transition-duration: 500ms;
  195.  
  196. }
  197.  
  198.  
  199. .new-frame:hover{
  200.  
  201.   /*background: #b30000;*/
  202.   /*border-color: #ffffff;*/
  203.   background: #b30000
  204.  
  205.  
  206. }
  207.  
  208. #error-Box {
  209.   width: fit-content;
  210.   height: 20px;
  211.   font-size: 16px;
  212.   color: #b30000;
  213.   margin: 6px 0 8px 0
  214. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement