Guest User

Css Code

a guest
Nov 19th, 2016
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.05 KB | None | 0 0
  1. html {
  2.     font-family: Verdana;
  3.     background-color: #f2f2f2;
  4. }
  5.  
  6. /*  Wrapper    */
  7.  
  8. #wrapper {
  9.     background-color: #f2f2f2;
  10.     height: 100%;
  11. }
  12.  
  13. #grid {
  14.     width: 100%;
  15. }
  16.  
  17. /*  Navigation    */
  18.  
  19. nav {
  20.     width: 100%;
  21.     position: fixed;
  22.     list-style-type: none;
  23.     background-color: rgba(250, 250, 250, 0.8);
  24.     box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  25.     z-index: 100;
  26. }
  27. nav a {
  28.     padding-right: 50px;
  29.     padding-left:  10px;
  30. }
  31. nav li {
  32.     float: left
  33. }
  34. nav li a {
  35.     display: block;
  36.     color: black;
  37.     text-align: center;
  38.     padding: 15px;
  39.     text-decoration: none;
  40.     text-shadow: 0px 2px 9px rgba(150, 150, 150, 0.91);
  41.     /*  Standard    */
  42.     transition: background-color 1s, text-shadow 1s;
  43.     transition-timing-function: ease;
  44. }
  45. nav li a:hover {
  46.     background-color: rgba(193, 193, 193, 0.54);
  47.     text-shadow: 0px 10px 6px rgba(150, 150, 150, 1);
  48. }
  49.  
  50. /*  Image    */
  51.  
  52. .picture {
  53.     margin: auto;
  54.     background-color: #ededed;
  55.     width: 70%;
  56.     box-shadow: 0px 15px 57px 0px rgba(0,0,0,0.63);
  57.     text-align: center;
  58.     /* Standard syntax */
  59.     transition: transform 0.25s, box-shadow 0.4s;
  60.     transition-timing-function: ease;
  61.     /* Firefox syntax */
  62.     -moz-transition: transform 0.25s, box-shadow 0.4s;
  63.     -moz-transition-timing-function: ease;
  64.     /* Webkit syntax */
  65.     -webkit-transition: transform 0.25s, box-shadow 0.4s;
  66.     -webkit-transition-timing-function: ease;
  67.  
  68. }
  69. .picture:hover {
  70.     transform: scale(1.1);
  71.     box-shadow: 0px 22px 70px 0px rgba(0,0,0,0.83);
  72. }
  73. .picture p {
  74.     padding-bottom: 15px;
  75. }
  76. .picture img {
  77.     width: 100%;
  78. }
  79.  
  80. /*  Grid    */
  81.  
  82. .tinypic {
  83.     align-content: center;
  84.     float: left;
  85.     margin: 3.6%;
  86.     padding: 5px;
  87.     background-color: #ededed;
  88.     width: 400px;
  89.     box-shadow: 0px 15px 57px 0px rgba(0,0,0,0.33);
  90.     text-align: center;
  91.     /* Standard syntax */
  92.     transition: transform 0.25s, box-shadow 0.4s;
  93.     transition-timing-function: ease;
  94.     /* Firefox syntax */
  95.     -moz-transition: transform 0.25s, box-shadow 0.4s;
  96.     -moz-transition-timing-function: ease;
  97.     /* Webkit syntax */
  98.     -webkit-transition: transform 0.25s, box-shadow 0.4s;
  99.     -webkit-transition-timing-function: ease;
  100. }
  101. .tinypic:hover {
  102.     transform: scale(1.15);
  103.     box-shadow: 0px 22px 70px 0px rgba(0,0,0,0.5);
  104. }
  105. .tinypic img {
  106.     width: 100%;
  107. }
  108.  
  109. /*  Text    */
  110.  
  111. .textt {
  112.     float: center;
  113.     width: 85%;
  114.     color:  #999999;
  115.     font-size: 14pt;
  116.     padding: 15px;
  117.     margin-top: 150px;
  118.     margin-bottom: 150px;
  119.     align-content: center;
  120.     margin-left: auto;
  121.     margin-right: auto;
  122.     clear: both;
  123. }
  124.  
  125. /*  iFrame    */
  126.  
  127. iframe {
  128.     margin-top: 100px;
  129.     margin-bottom: 150px;
  130.     width: 100%;
  131.     height: 250px;
  132. }
  133.  
  134. /*  Footer    */
  135.    
  136. footer {
  137.     margin-top: 1500px;
  138.     color:  #e8e8e8;
  139.     bottom: 0px;
  140.     width: 100%;
  141.     text-align: center;
  142.     background: #454545;
  143.     z-index: 100;
  144.     padding-bottom: 60px;
  145.     padding-top: 60px;
  146.     position: relative;
  147.     clear: both;
  148. }
Add Comment
Please, Sign In to add comment