Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2015
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.82 KB | None | 0 0
  1. root {
  2.     display: block;
  3. }
  4.  
  5. #wrapper {
  6.     padding-top: 40px;
  7.     position: relative;
  8.     width: 1000px;
  9.     height: 400px;
  10.     margin-right: auto;
  11.     margin-top: 0;
  12.     margin-left: auto;
  13.         font-size: 60px;
  14.         font-style: oblique;  
  15.         color: red;
  16.         text-align: center;
  17.         font-family: "Times New Roman", Georgia, serif;;
  18. }
  19.  
  20. #porta2_estado , #porta2_titulo , #porta3_estado , #porta3_titulo , #porta4_estado , #porta4_titulo , #porta5_estado , #porta5_titulo , #porta6_estado , #porta6_titulo , #porta7_estado , #porta7_titulo , #porta8_estado , #porta8_titulo, #porta9_estado , #porta9_titulo {
  21.     visibility: hidden;
  22. }
  23.  
  24. #float-image {
  25. position: fixed;
  26. top: 0;
  27. right: 0;
  28. width: 166px;
  29. height: 40px;
  30. background: url(http://imgur.com/lnvypyN) no-repeat;
  31. display: block;
  32. }
  33.  
  34. div.rele_ligado {
  35.     position: absolute;
  36.     right: 10px;
  37.     top: 100px;
  38.     width: 300px;
  39.     height: 206px;
  40.     border: none;
  41.     background: url(modulo_rele_on.png) no-repeat left top;
  42. }
  43.  
  44. div.rele_desligado {
  45.     position: absolute;
  46.     right: 0px;
  47.     top: 100px;
  48.     width: 300px;
  49.     height: 206px;
  50.     border: none;
  51.     background: url(modulo_rele.png) no-repeat 0 center;
  52. }
  53.  
  54. div.porta_ligada {
  55.     background-color: green;
  56.     position: absolute;
  57.     left:0px;
  58.     top:0px;
  59.     width: 47px;
  60.     height: 47px;
  61.     border-radius:5px;
  62. }
  63.  
  64. div.porta_desligada {
  65.     background-color: gray;
  66.     position: absolute;
  67.     left:0px;
  68.     top:0px;
  69.     width: 47px;
  70.     height: 47px;
  71.     border-radius:5px;
  72. }
  73.  
  74. #botao{
  75.     position: absolute;
  76.     right: 30px;
  77.     top: 330px;
  78. }
  79.  
  80. .botao {
  81.     position: absolute;
  82.     left:55px;
  83.     top:0px;
  84.    
  85.     -moz-box-shadow:inset 0px 1px 0px 50px blue;
  86.     -webkit-box-shadow:inset 0px 1px 0px 50px yellow;
  87.     box-shadow:inset 0px 1px 0px 12px #ffffff;
  88.     background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) );
  89.     background:-moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% );
  90.     filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf');
  91.     background-color:#ededed;
  92.     -moz-border-radius:16px;
  93.     -webkit-border-radius:16px;
  94.     border-radius:16px;
  95.     border:5px solid red;
  96.     display:inline-block;
  97.     color:#727727;
  98.     font-family:arial;
  99.     font-size:30px;
  100.     font-weight:bold;
  101.     padding:6px 24px;
  102.     text-decoration:none;
  103.     text-shadow:1px 25px 25px blue;
  104.         width: 200px;
  105.         text-align: center;
  106. }.botao:hover {
  107.     background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed) );
  108.     background:-moz-linear-gradient( center top, yellow 35%, black 65% );
  109.     filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed');
  110.     background-color:#dfdfdf;
  111. }.botao:active {
  112.    
  113. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement