123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- #login, #online-room {
- background: #C7CC2D;
- border: 1px solid #972620;
- border-radius: 6px;
- height: 300px;
- margin-top: 20px;
- margin-left: auto;
- width: 300px;
- }
- #online-room {
- position: relative;
- width: 500px;
- margin-left: -150px;
- }
- input[type="password"], input[type="text"] {
- background: linear-gradient(top, #C7CC2D, #e6e6e6);
- border: 1px solid #C7CC2D;
- border-radius: 4px;
- box-shadow: 0 1px #C7CC2D;
- box-sizing: border-box;
- color: #567199;
- height: 39px;
- margin: 24px 0 0 29px;
- padding-left: 37px;
- transition: box-shadow 0.3s;
- width: 240px;
- }
- input[type="password"]:focus, input[type="text"]:focus {
- box-shadow: 0 0 4px 1px rgba(55, 166, 155, 0.3);
- outline: 0;
- }
- .show-password {
- display: block;
- height: 16px;
- margin: 26px 0 0 28px;
- width: 87px;
- }
- input[type="checkbox"] {
- cursor: pointer;
- height: 16px;
- opacity: 0;
- position: relative;
- width: 64px;
- }
- input[type="checkbox"]:checked {
- left: 29px;
- width: 58px;
- }
- .toggle {
- display: block;
- height: 16px;
- margin-top: -20px;
- width: 87px;
- z-index: -1;
- }
- input[type="checkbox"]:checked + .toggle { background-position: 0 -16px }
- input[type="button"] {
- width:240px;
- height:35px;
- display:block;
- font-family:Arial, "Helvetica", sans-serif;
- font-size:16px;
- font-weight:bold;
- color:#F8E15E;
- text-decoration:none;
- text-transform:uppercase;
- text-align:center;
- text-shadow:1px 1px 0px #567199;
- padding-top:6px;
- margin: 23px 0 0 29px;
- position:relative;
- cursor:pointer;
- border: none;
- background-color: #567199;
- background-image: linear-gradient(top,#567199,rgba(252, 4, 4, 0.067));
- border-top-left-radius: 5px;
- border-top-right-radius: 5px;
- border-bottom-right-radius: 5px;
- border-bottom-left-radius:5px;
- box-shadow: inset 0px 1px 0px #567199, 0px 5px 0px 0px #324F70, 0px 10px 5px #C7CC2D;
- }
- input[type="button"]:hover:enabled, input[type="text"]:hover:enabled {
- transform:scale(1.1);
- }
- input[type="button"]:disabled {
- width:240px;
- height:35px;
- display:block;
- font-family:Arial, "Helvetica", sans-serif;
- font-size:16px;
- font-weight:bold;
- color:#F8E15E;
- text-decoration:none;
- text-transform:uppercase;
- text-align:center;
- text-shadow:1px 1px 0px #909998;
- padding-top:6px;
- margin: 23px 0 0 29px;
- position:relative;
- cursor:pointer;
- border: none;
- background-color: #7e7e7e;
- background-image: linear-gradient(top,#909998,#82a09c);
- border-top-left-radius: 5px;
- border-top-right-radius: 5px;
- border-bottom-right-radius: 5px;
- border-bottom-left-radius:5px;
- box-shadow: inset 0px 1px 0px #7e7e7e, 0px 5px 0px 0px #808586, 0px 7px 5px #C7CC2D;
- }
- .shadow {
- background: #000;
- border-radius: 12px 12px 4px 4px;
- box-shadow: 0 0 20px 10px #000;
- height: 12px;
- margin: 30px auto;
- opacity: 0.2;
- width: 270px;
- }
- input[type="button"]:enabled:active {
- top:3px;
- box-shadow: inset 0px 1px 0px #567199, 0px 2px 0px 0px #324F70, 0px 5px 3px #C7CC2D;
- }
- .connection {
- font-family:Arial, "Helvetica", sans-serif;
- font-size:14px;
- color: #972620;
- text-align:center;
- }
- #online-room-buttons {
- position: absolute;
- top:50px;
- left:205px;
- }
- #online-games {
- background: #567199;
- border: 1px solid #567199;
- border-radius: 3px;
- margin: 20px 20px;
- height: 250px;
- width: 185px;
- overflow: hidden;
- font-family:Arial, "Helvetica", sans-serif;
- font-size:16px;
- font-weight:bold;
- color:#F8E15E;
- text-decoration:none;
- text-transform:uppercase;
- text-align:center;
- text-shadow:1px 1px 0px #567199;
- vertical-align: middle;
- padding-top: 8px;
- }
- #list-games {
- padding: 0;
- list-style:none;
- }
- #list-games li {
- font-family:Arial, "Helvetica", sans-serif;
- font-size:14px;
- margin: 7px 10px 0px 10px;
- }
- #list-games span {
- width:155px;
- height:35px;
- background-color:#333;
- padding-left:10px;
- text-decoration:none;
- color:#bfe1f1;
- display: table-cell;
- vertical-align: middle;
- }
|