Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #buttonSize{
- align: center;
- }
- .button2048 {
- display: inline-block;
- color: black;
- text-decoration: none;
- padding: .5em 2em;
- outline: none;
- border-width: 2px 0;
- border-style: solid none;
- border-color: cornflowerblue cornflowerblue cornflowerblue;
- border-radius: 6px;
- background: cornflowerblue;
- transition: 0.2s;
- font-family: AR DELANEY;
- text-align: center;
- }
- .button2048:hover { background: darkslateblue; border-color: darkslateblue darkslateblue darkslateblue }
- #wrap1{
- display: none;
- opacity: 0.8;
- position: fixed;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- padding: 16px;
- background-color: rgba(1, 1, 1, 0.725);
- z-index: 100;
- overflow: auto;
- }
- #wrap2{
- display: none;
- opacity: 0.8;
- position: fixed;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- padding: 16px;
- background-color: rgba(1, 1, 1, 0.725);
- z-index: 100;
- overflow: auto;
- }
- #wrap3{
- display: none;
- opacity: 0.8;
- position: fixed;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- padding: 16px;
- background-color: rgba(1, 1, 1, 0.725);
- z-index: 100;
- overflow: auto;
- }
- #window{
- width: 400px;
- height: 400px;
- margin: 50px auto;
- background: #FFEFD5;
- z-index: 200;
- position: fixed;
- left: 0;
- right: 0;
- display: none;
- top: 0;
- bottom: 0;
- padding: 16px;
- }
- canvas {
- border: 5px solid darkblue;
- margin: 10px;
- margin-left: 25%;
- }
- .imgblock {
- position: relative;
- display: inline-block;
- margin-top: 0px !important;
- margin-left: 25%;
- }
- .imgblock img {
- height: 160px;
- width: 250px;
- }
- .imgblock h2 {
- left: 0;
- position: absolute;
- top: 30px;
- width: 100%;
- left: 35px;
- }
- .imgblock h2 span {
- background: darkblue;
- border-radius: 5px;
- color: lightskyblue;
- font: 28px AR DELANEY;
- line-height: 29px;
- padding: 2px 2px;
- }
- #GameOverWindow{
- width: 550px;
- height: 400px;
- margin: 50px auto;
- background: #FFEFD5;
- z-index: 200;
- position: fixed;
- left: 0;
- right: 0;
- display: none;
- top: 0;
- bottom: 0;
- padding: 16px;
- border-color: darkmagenta;
- }
- #YouWinWindow{
- width: 550px;
- height: 400px;
- margin: 50px auto;
- background: #FFEFD5;
- z-index: 200;
- position: fixed;
- left: 0;
- right: 0;
- display: none;
- top: 0;
- bottom: 0;
- padding: 16px;
- border-color: darkmagenta;
- }
- .close{
- margin-left: 364px;
- margin-top: 4px;
- height: 30px;
- width: 30px;
- cursor: pointer;
- }
- .pic{
- margin-left: 364px;
- margin-top: 4px;
- height: 100px;
- width: 100px;
- cursor: pointer;
- }
- /* Clip text element */
- .clip-text {
- font-size: 6em;
- font-weight: bold;
- line-height: 1;
- position: relative;
- display: inline-block;
- margin: .25em;
- padding: .5em .75em;
- text-align: center;
- /* Color fallback */
- color: #fff;
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- .clip-text:before,
- .clip-text:after {
- position: absolute;
- content: '';
- }
- /* Background */
- .clip-text:before {
- z-index: -2;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background-image: inherit;
- }
- .clip-text:after {
- position: absolute;
- z-index: -1;
- top: .125em;
- right: .125em;
- bottom: .125em;
- left: .125em;
- background-color: #000000;
- }
- .clip-text--cover,
- .clip-text--cover:before {
- background-repeat: no-repeat;
- -webkit-background-size: cover;
- background-size: cover;
- background-position: 50% 50%;
- }
- .clip-text_game_over {
- background-image: url("end.jpg");
- }
- .clip-text_you_win {
- background-image: url("youWin.jpg");
- }
- .buttonText {
- font: 10px AR DELANEY;
- }
- h1{
- font: 40px AR DELANEY;
- color: cornflowerblue;
- }
- h3{
- font: 16px AR DELANEY;
- color: blue;
- text-align: center;
- }
- button{
- text-align: center;
- font: 10px AR DELANEY;
- color: black;
- font-size: medium;
- }
Advertisement
Add Comment
Please, Sign In to add comment