thisisnotras

Second Layer

Jul 5th, 2014
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. /* SECOND LAYER STYLE */
  2.  
  3. @import url(http://fonts.googleapis.com/css?family=Special+Elite);
  4. @import url(https://fonts.googleapis.com/css?family=Allura);
  5.  
  6. body {background: white;}
  7.  
  8. #bigbody2{
  9. position: fixed;
  10. top: 0px;
  11. left: 0px;
  12. right: 0px;
  13. bottom: 0px;
  14. background-image:
  15. url(http://i62.tinypic.com/19m8fs.jpg);
  16. background-size: 100%;
  17. background-repeat: no-repeat;}
  18.  
  19. #schooltitle {
  20. position: relative;
  21. left: 30px;
  22. top: 100px;
  23. height: 40px;
  24. width: 330px;
  25. border: 0px solid black;
  26. font-size: 30pt;
  27. font-family: 'Allura', cursive;
  28. font-weight: 400;
  29. color: #191047;
  30. z-index: 1;
  31. }
  32.  
  33. #schoolinfo {
  34. position: relative;
  35. left: 50px;
  36. top: 98px;
  37. height: 300px;
  38. width: 300px;
  39. border: 0px solid black;
  40. -webkit-animation: zoomin 3s;
  41. }
  42.  
  43. #schoollinks {
  44. position: relative;
  45. top: 0px;
  46. left: 0px;
  47. height: 15px;
  48. width: 300px;
  49. border: 0px solid black;
  50. background: #B178A5;
  51. color: #black;
  52. font-family: 'Special Elite', cursive;
  53. font-size: 10pt;
  54. padding-top: 3px;
  55. }
  56. #schoolcontent {
  57. position: relative;
  58. left: 0px;
  59. height: 275px;
  60. width: 290px;
  61. border: 0px solid red;
  62. background: #191047;
  63. opacity: .8;
  64. border-bottom-left-radius: 60px;
  65. border-bottom-right-radius: 60px;
  66. overflow: hidden;
  67. padding-left: 5px;
  68. padding-top: 5px;
  69. }
  70.  
  71. #insideschoolcontent {
  72. height: 255px;
  73. width: 280px;
  74. border: 1px solid red;
  75. color: grey;
  76. font-family: 'Special Elite', cursive;
  77. font-size: 8pt;
  78. padding-bottom: 15px;
  79. padding-left: 4px;
  80. overflow: auto;}
  81.  
  82. @-webkit-keyframes zoomin{
  83. 0% {left: 9999px; opacity: 0;}
  84. 50% {left: 50px;}
  85. 100% {opacity: 1;}
  86. }
  87.  
  88. /* SECOND LAYER HTML */
  89.  
  90. <div id="bigbody2">
  91.  
  92. <div id="schooltitle">Kemonozume Gakuen
  93. </div>
  94.  
  95. <div id="schoolinfo">
  96.  
  97. <div id="schoollinks">faculties . . curriculum . . staff . . to apply
  98. </div>
  99.  
  100. <div id="schoolcontent">
  101. <div id="insideschoolcontent">Gonna blow your socks off.<br>
  102. </div>
  103. </div>
  104.  
  105. </div>
  106. </div>
Advertisement
Add Comment
Please, Sign In to add comment