Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. /*CSS Style definitions start here*/
  2. #container /*Styles for Container*/
  3. /* scale and fade */
  4.  
  5. /* scale and fade */
  6.  
  7. .pt-page-scaleDown {
  8. animation: scaleDown .7s ease both;
  9. }
  10.  
  11. .pt-page-scaleUp {
  12. animation: scaleUp .7s ease both;
  13. }
  14.  
  15. .pt-page-scaleUpDown {
  16. animation: scaleUpDown .5s ease both;
  17. }
  18.  
  19. .pt-page-scaleDownUp {
  20. animation: scaleDownUp .5s ease both;
  21. }
  22.  
  23. .pt-page-scaleDownCenter {
  24. animation: scaleDownCenter .4s ease-in both;
  25. }
  26.  
  27. .pt-page-scaleUpCenter {
  28. animation: scaleUpCenter .4s ease-out both;
  29. }
  30.  
  31. /************ keyframes ************/
  32.  
  33. /* scale and fade */
  34.  
  35. @keyframes scaleDown {
  36. to { opacity: 0; transform: scale(.8); }
  37. }
  38.  
  39. @keyframes scaleUp {
  40. from { opacity: 0; transform: scale(.8); }
  41. }
  42.  
  43. @keyframes scaleUpDown {
  44. from { opacity: 0; transform: scale(1.2); }
  45. }
  46.  
  47. @keyframes scaleDownUp {
  48. to { opacity: 0; transform: scale(1.2); }
  49. }
  50.  
  51. @keyframes scaleDownCenter {
  52. to { opacity: 0; transform: scale(.7); }
  53. }
  54.  
  55. @keyframes scaleUpCenter {
  56. from { opacity: 0; transform: scale(.7); }
  57. }
  58. {
  59. width:100%;
  60. margin: 0 auto; /*Centres the main container*/
  61. max-width: 800px;
  62. border:1px solid gray;
  63. background-color: #2c2f33;
  64. }
  65.  
  66. #header /*Styles for Header*/
  67. {
  68. padding: 15px;
  69. color: #ffffff;
  70. font-family: Arial, Verdana, sans-serif;
  71. font-size: 16px;
  72. background-color: #7289da;
  73. }
  74.  
  75. #banner
  76. {
  77. padding:0;
  78. margin:0;
  79. }
  80.  
  81. #navbar
  82. {
  83. float:left; /*Moves the container to the left*/
  84. width:160px;
  85. margin:0;
  86. padding:15px;
  87. font-family: sans-serif;
  88.  
  89. }
  90.  
  91. #content /*Styles for Main Content area*/
  92. {
  93. margin-left:190px;
  94. padding:10px;
  95. font-family: Arial, Verdana, sans-serif;
  96. font-size: 16px;
  97. background-color: #ffffff;
  98. }
  99.  
  100. /*Styles for links*/
  101. a:link {color: #003961;}
  102. a:visited {color: #7289da;}
  103. a:hover {color: #ffffff;}
  104. a:active {color: #33ccff;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement