Skip to content

Latest commit

 

History

History
41 lines (39 loc) · 716 Bytes

carrom.md

File metadata and controls

41 lines (39 loc) · 716 Bytes

<div class="wrapper">
  <div class="top">
    <div class="block"></div>
    <div class="block"></div>
  </div>
  <div class="bottom">
    <div class="block"></div>
    <div class="block"></div>
  </div>
</div>
<style>
  body {
    display: flex;
    background: #62374e;
  }
  .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: auto;
    margin: 42px;
  }
  .bottom,
  .top {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .block {
    width: 50px;
    height: 50px;
    background: #fdc57b;
  }
</style>