Guest User

HD

a guest
May 23rd, 2017
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.24 KB | None | 0 0
  1. *{
  2.     font-family: Arial, sans-serif;
  3.     padding: 0px;
  4.     margin: 0px;
  5.     box-sizing: border-box;
  6. }
  7.  
  8. body{
  9.    
  10. }
  11.  
  12. .head{
  13.     background-color: #1c1c1c;
  14. }
  15.  
  16. .head p{
  17.     font-size:36px;
  18.     color:#ffffff;
  19.     text-shadow: 0px 0px 8px green;
  20. }
  21.  
  22. .head img{
  23.     margin-top: 5px;
  24.     height: 240px;
  25.     width: 240px;
  26.     margin-bottom: 10px;
  27. }
  28.  
  29. .menu{
  30.     margin-top: 35px;
  31.     height: 50px;
  32.     padding: 10px;
  33.     background: linear-gradient(to top, #000, #1c1c1c)
  34. }
  35.  
  36. .menu a:link,a:visited{
  37.     margin-left:2%;
  38.     font-size: 21px;
  39.     color: white;
  40.     text-decoration: none;
  41.     padding:5px;
  42. }
  43.  
  44. .menu a:hover,a:active{
  45.     color: #0084bf;
  46. }
  47.  
  48. .main {
  49.     background-image: linear-gradient(rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0.6)), url(/images/indexBG.jpg);
  50.     background-size: cover;
  51.     height: 100vh;
  52. }
  53.  
  54.  
  55. .welcome {
  56.     position: relative;
  57.     top: 50%;
  58.     left: 50%;
  59.     text-align: center;
  60.     transform: translate(-50%,-50%)
  61. }
  62.  
  63. .welcome h1{
  64.     font-size: 52px;
  65.     font-family: Lato;
  66.     font-weight: 200;
  67.     color:white;
  68. }
  69.  
  70. .welcome p{
  71.     margin-top:20px;
  72.     font-size: 22px;
  73.     font-family: Arial;
  74.     font-weight: lighter;
  75.     color:white;
  76. }
  77.  
  78. .YT {
  79.     background-color: rgba(0,0,0,0.8);
  80.     border-radius: 15px 15px 15px 15px;
  81.     padding: 15px;
  82.     margin-top: 40px;
  83.     width:20%;
  84.     border: 3px solid white;
  85.    
  86. }
  87.  
  88. .YT a:link,a:visited{
  89.     color: green;
  90.     text-decoration:none;
  91.     font-size: 21px;
  92. }
  93.  
  94. .YT a:hover,a:active{
  95.     color: #005d00;
  96. }
  97.  
  98. .YTTitle{
  99.     position: relative;
  100.     top: 30px;
  101.     max-width: 95%;
  102.     text-align: left;
  103.     border-bottom: 3px solid white;
  104. }
  105.  
  106. .YTTitle h1{
  107.     color:white;
  108.     font-size: 42px;
  109.     margin-left: 30px;
  110.     margin-bottom: 15px;
  111. }
  112.  
  113. .MainVid {
  114.     position: relative;
  115.     float: left;
  116. }
  117.  
  118. .VideoSectionPvt {
  119.     position: relative;
  120.     top: 55px;
  121.     max-width: 95%;
  122.     padding: 25px;
  123.     background-color: rgba(0,0,0,0.8);
  124.     border-radius: 15px 15px 15px 15px;
  125.     border: 3px solid white;
  126.     margin: 25px;
  127. }
  128.  
  129. .VideoSectionPvt:after{
  130.     content: "";
  131.     display: table;
  132.     clear: both;
  133. }
  134.  
  135. .SideVid {
  136.     position: relative;
  137.     float: right;
  138. }
  139.  
  140. .SideVids {
  141.     margin: 10px;
  142. }
Add Comment
Please, Sign In to add comment