123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- .button2 {
- background: url(../images/button-bg.png) repeat-x top center;
- border: 1px solid #999;
- -moz-border-radius: 5px;
- padding: 10px 5px;
- color: black;
- font-weight: bold;
- -webkit-border-radius: 5px;
- font-size: 13px;
- position:relative;
- left:-2px;
- margin: -20px 0px 0px 0px;
- }
- .boitelogin2 {
- border:1px solid #000000;
- padding:20px 10px;
- box-shadow:10px 10px #cccccc;
- width:500px;
- margin:auto;
- margin-bottom:30px;
- }
- .mdp{
- margin:10px 0px;
- }
- .authenticator{
- margin:auto;
- margin-top:20px;
- width:500px;
- border:1px solid #000000;
- padding:20px 10px;
- box-shadow:10px 10px #cccccc;
- text-align: justify;
- text-justify: inter-word;
- }
- img {
- border-style: outset;
- border-radius: 5px;
- cursor: pointer;
- transition: 0.3s;
- }
- img:hover {
- opacity: 0.7;
- }
- #image-viewer {
- display: none;
- position: fixed;
- z-index: 1;
- padding-top: 100px;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- overflow: auto;
- background-color: rgb(0,0,0);
- background-color: rgba(0,0,0,0.9);
- }
- .modal-content {
- margin: auto;
- display: block;
- width: 80%;
- max-width: 1000px;
- }
- .modal-content {
- animation-name: zoom;
- animation-duration: 0.6s;
- }
- @keyframes zoom {
- from {
- transform:scale(0)
- }
- to {
- transform:scale(1)
- }
- }
- #image-viewer .close {
- position: absolute;
- top: 15px;
- right: 35px;
- color: #f1f1f1;
- font-size: 40px;
- font-weight: bold;
- transition: 0.3s;
- }
- #image-viewer .close:hover,
- #image-viewer .close:focus {
- color: #bbb;
- text-decoration: none;
- cursor: pointer;
- }
- @media only screen and (max-width: 1000px){
- .modal-content {
- width: 100%;
- }
- }
|