/****************** 
  yasinbaran.com.tr
 ******************/
html {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #4285F4;
}

html div.clock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh;
}

html div.clock div.clock-ring {
  width: 300px;
  height: 300px;
  border: 20px solid #ffffff;
  border-radius: 20%;
  -webkit-box-shadow: 0 0 20px #ffffff, 0 0 5px #000000, inset 0 0 5px #000000, inset 0 0 30px #ffffff;
          box-shadow: 0 0 20px #ffffff, 0 0 5px #000000, inset 0 0 5px #000000, inset 0 0 30px #ffffff;
  position: relative;
}

html div.clock div.clock-ring div.hand {
  width: 50%;
  height: 5px;
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
          clip-path: polygon(100% 0, 0 50%, 100% 100%);
  border: none;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  -webkit-transform-origin: 100%;
          transform-origin: 100%;
  -webkit-transition: all 30ms cubic-bezier(0.16, 0.88, 0.44, 1);
  transition: all 30ms cubic-bezier(0.16, 0.88, 0.44, 1);
  background: #000000;
}

/****************** 
    brnysn.com
 *****************/
/*# sourceMappingURL=style.css.map */