main.css 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .administration-buttons div{
  2. padding: 8px 8px 0px;
  3. transition: all 0.5s;
  4. -webkit-transition: all 0.5s;
  5. min-width:125px;
  6. min-height:100px;
  7. }
  8. .administration-buttons div:hover {
  9. transition: all 0.1s;
  10. -webkit-transition: all 0.1s;
  11. background-color: #0F3;
  12. border-radius: 10px;
  13. text-decoration:none;
  14. cursor:pointer;
  15. box-shadow: 3px 3px 3px 3px #999, inset 1px 1px 1px 1px #0F7;
  16. -webkit-box-shadow: 3px 3px 3px 3px #999, inset 1px 1px 1px 1px #0F7;
  17. }
  18. .administration-buttons div:active {
  19. background-color: #0F3;
  20. box-shadow: 1px 1px 1px 1px #999, inset 0px 0px 0px 0px #0F5;
  21. -webkit-box-shadow: 1px 1px 1px 1px #999, inset 0px 0px 0px 0px #0F5;
  22. border-radius: 8px;
  23. -webkit-border-radius: 8px;
  24. color:#555;
  25. text-shadow:0.1em 0.1em #FFF;
  26. }
  27. .administration-buttons div:active img{
  28. position:relative;
  29. top:0.5px;
  30. left:0.5px;
  31. }
  32. .administration-buttons, .administration-buttons:hover, .administration-buttons :active {
  33. color:black !important;
  34. text-decoration:none;
  35. }
  36. .administration-buttons-hmargin{
  37. width:40px;
  38. }
  39. .administration-buttons-vmargin{
  40. height:40px;
  41. }