style_viewer.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. .button2 {
  2. background: url(../images/button-bg.png) repeat-x top center;
  3. border: 1px solid #999;
  4. -moz-border-radius: 5px;
  5. padding: 10px 5px;
  6. color: black;
  7. font-weight: bold;
  8. -webkit-border-radius: 5px;
  9. font-size: 13px;
  10. position:relative;
  11. left:-2px;
  12. margin: -20px 0px 0px 0px;
  13. }
  14. .boitelogin2 {
  15. border:1px solid #000000;
  16. padding:20px 10px;
  17. box-shadow:10px 10px #cccccc;
  18. width:500px;
  19. margin:auto;
  20. margin-bottom:30px;
  21. }
  22. .mdp{
  23. margin:10px 0px;
  24. }
  25. .authenticator{
  26. margin:auto;
  27. margin-top:20px;
  28. width:500px;
  29. border:1px solid #000000;
  30. padding:20px 10px;
  31. box-shadow:10px 10px #cccccc;
  32. text-align: justify;
  33. text-justify: inter-word;
  34. }
  35. img {
  36. border-style: outset;
  37. border-radius: 5px;
  38. cursor: pointer;
  39. transition: 0.3s;
  40. }
  41. img:hover {
  42. opacity: 0.7;
  43. }
  44. #image-viewer {
  45. display: none;
  46. position: fixed;
  47. z-index: 1;
  48. padding-top: 100px;
  49. left: 0;
  50. top: 0;
  51. width: 100%;
  52. height: 100%;
  53. overflow: auto;
  54. background-color: rgb(0,0,0);
  55. background-color: rgba(0,0,0,0.9);
  56. }
  57. .modal-content {
  58. margin: auto;
  59. display: block;
  60. width: 80%;
  61. max-width: 1000px;
  62. }
  63. .modal-content {
  64. animation-name: zoom;
  65. animation-duration: 0.6s;
  66. }
  67. @keyframes zoom {
  68. from {
  69. transform:scale(0)
  70. }
  71. to {
  72. transform:scale(1)
  73. }
  74. }
  75. #image-viewer .close {
  76. position: absolute;
  77. top: 15px;
  78. right: 35px;
  79. color: #f1f1f1;
  80. font-size: 40px;
  81. font-weight: bold;
  82. transition: 0.3s;
  83. }
  84. #image-viewer .close:hover,
  85. #image-viewer .close:focus {
  86. color: #bbb;
  87. text-decoration: none;
  88. cursor: pointer;
  89. }
  90. @media only screen and (max-width: 1000px){
  91. .modal-content {
  92. width: 100%;
  93. }
  94. }