From 318684826823b480dfac00f7a1ba7045e688130d Mon Sep 17 00:00:00 2001 From: amanullahakhundzada Date: Wed, 10 Aug 2022 00:04:22 -0700 Subject: [PATCH] Kenken exercise --- style.css | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/style.css b/style.css index 00fb5a7..e8ffeba 100644 --- a/style.css +++ b/style.css @@ -5,3 +5,46 @@ html { font-size: 10px; } + +body{ + width:600px; + height:; + margin:0 ; + background: color #222; ; +} +.grid{ + display: grid; + grid-template-columns: repeat(4,1fr); + grid-template-rows: repeat(4,1fr); +} +.grid-items{ + border: 0.1rem solid gray; + font-size: 2rem; + background-color: white; +} +.box3 , .box7 , .box10 , .box11 , .box12 , .box15{ + border-left: 0.5rem solid black; +} +.box1 , .box2 , .box3 , .box4 , .box5 , .box8 , .box9 , .box10 , .box11{ + border-bottom: 0.5rem solid black; +} +/* .prompt{ + position: absolute; + top: 0%; + right: 0%; +} */ +.answer{ + width: 50%; + height: 50%; + text-align: center; +} + .special{ + border: none; + font-size: 2rem; + } + + @media only screen and (min-width: 475px) { + html { + font-size: 16px; + } + } \ No newline at end of file