1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | @import url(fonts/clear-sans.css); html, body { margin: 0; padding: 0; background: #faf8ef; color: #776E65; font-family: "Clear Sans", "Helvetica Neue", Arial, sans-serif; } body { margin: 80px 0; } h1 { font-size: 80px; font-weight: bold; margin: 0; } .container { width: 500px; margin: 0 auto; } .game-container { margin-top: 50px; position: relative; padding: 15px; background: #bbada0; border-radius: 6px; width: 500px; height: 500px; box-sizing: border-box; } .grid-container { position: absolute; z-index: 1; } .grid-row { margin-bottom: 15px; } .grid-row:last-child { margin-bottom: 0; } .grid-row:after { content: ""; display: block; clear: both; } .grid-cell { width: 106.25px; height: 106.25px; margin-right: 15px; float: left; border-radius: 3px; background: rgba(238, 228, 218, 0.35); } .grid-cell:last-child { margin-right: 0; } .tile-container { position: absolute; z-index: 2; } .tile { background: red; width: 106.25px; height: 106.25px; border-radius: 3px; background: #eee4da; text-align: center; line-height: 116.25px; font-size: 60px; font-weight: bold; } .tile.tile-position-1-1 { position: absolute; left: 0px; top: 0px; } .tile.tile-position-1-2 { position: absolute; left: 0px; top: 121.25px; } .tile.tile-position-1-3 { position: absolute; left: 0px; top: 242.5px; } .tile.tile-position-1-4 { position: absolute; left: 0px; top: 363.75px; } .tile.tile-position-2-1 { position: absolute; left: 121.25px; top: 0px; } .tile.tile-position-2-2 { position: absolute; left: 121.25px; top: 121.25px; } .tile.tile-position-2-3 { position: absolute; left: 121.25px; top: 242.5px; } .tile.tile-position-2-4 { position: absolute; left: 121.25px; top: 363.75px; } .tile.tile-position-3-1 { position: absolute; left: 242.5px; top: 0px; } .tile.tile-position-3-2 { position: absolute; left: 242.5px; top: 121.25px; } .tile.tile-position-3-3 { position: absolute; left: 242.5px; top: 242.5px; } .tile.tile-position-3-4 { position: absolute; left: 242.5px; top: 363.75px; } .tile.tile-position-4-1 { position: absolute; left: 363.75px; top: 0px; } .tile.tile-position-4-2 { position: absolute; left: 363.75px; top: 121.25px; } .tile.tile-position-4-3 { position: absolute; left: 363.75px; top: 242.5px; } .tile.tile-position-4-4 { position: absolute; left: 363.75px; top: 363.75px; } |