styles.scss 796 Bytes
Newer Older
liujiaxin's avatar
1  
liujiaxin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/* You can add global styles to this file, and also import other style files */
/* You can add global styles to this file, and also import other style files */

html, body {
  width: 100%;
  height: 100%;
  font-size: 16px;
}

body {
  background-color: #f0f2f5 !important;
}

* {
  outline: none;
}

@font-face {
  font-family: ChalkboardSE-Regular;
liujiaxin's avatar
liujiaxin committed
20
  src: url('assets/font/ChalkboardSE-Regular.woff') format('WOFF');
liujiaxin's avatar
1  
liujiaxin committed
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
}

.k-16-9 {
  position: relative;
  width: 100%;
  height: fit-content;
&:before {
   content: "";
   display: block;
   position: relative;
   width: 100%;
   height: 0;
   padding-bottom: 56.25%;
 }
}

.k-full-fill {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.k-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}