Moortiii

Neoguy396 - main.css

May 21st, 2017
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.12 KB | None | 0 0
  1. *{
  2.  
  3. padding: 0px;
  4. margin:0px;
  5.  
  6.  
  7. }
  8.  
  9. .tm-container{
  10.  
  11.  
  12. max-width: 1200px;
  13. margin: 0px auto;
  14.  
  15. }
  16.  
  17. /* .calculator-background{
  18.  
  19. background: #4286f4;
  20. height: 250px;
  21. width: 250px;
  22. margin: 100px auto;
  23. line-height: 60px;
  24.  
  25. }
  26.  
  27.  
  28.  
  29. span.keys{
  30.  
  31.     border: 18px solid #7db252;
  32.     margin: 0px 3px;
  33.     background: #7db252;
  34.  
  35.  
  36.     text-align: center;
  37.  
  38. }
  39.  
  40.  WITHOUT TABLES. */
  41.  
  42.  table{
  43.  
  44.     background: #e6e6ed;
  45.     margin: 100px auto;
  46.     border-collapse: collapse;
  47. box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  48.  }
  49.  
  50.  table td{
  51.  
  52.  
  53.     height: 30px;
  54.     width: 40px;
  55.     border: 16px solid #88ba48;
  56.     text-align: center;
  57.     font-weight: 600;
  58.  
  59.  
  60.  }
  61.  
  62.  table td.keys{
  63.     background: #eaf215;
  64.  
  65.  }
  66.  
  67.  table td.equal{
  68.     background: #0963f4;
  69.  
  70.  }
  71.  
  72.   table td.operator{
  73.  
  74.     background: #6060a5;
  75.  }
  76.  
  77.  
  78.  
  79.  table td.keys:hover{
  80.  
  81. background: #e2c312;
  82. cursor: pointer;
  83. transition: 0.25s;
  84.  
  85.  }
  86.  
  87.  table td.equal:hover{
  88.  
  89.     background: #e2c312;
  90.     cursor: pointer;
  91.     transition: 0.25s;
  92.  }
  93.  
  94. table td.operator:hover{
  95.     background: #e2c312;
  96.     cursor: pointer;
  97.     transition: 0.25s;
  98.  
  99.  
  100. }
Add Comment
Please, Sign In to add comment