styles.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}
  2. @font-face {
  3. font-family: 'Circular';
  4. src: url('../fonts/Circular-Book.woff') format('woff');
  5. font-weight: normal;
  6. }
  7. @font-face {
  8. font-family: 'Circular';
  9. src: url('../fonts/Circular-Bold.woff') format('woff');
  10. font-weight: bold;
  11. }
  12. * {
  13. margin: 0;
  14. padding: 0;
  15. box-sizing: border-box;
  16. }
  17. html,
  18. body {
  19. background: #18212D;
  20. }
  21. body {
  22. position: absolute;
  23. display: flex;
  24. align-items: center;
  25. justify-content: center;
  26. width: 100%;
  27. height: 100%;
  28. flex-wrap: wrap;
  29. color: white;
  30. font-family: 'Circular', sans-serif;
  31. -webkit-font-smoothing: antialiased;
  32. }
  33. section {
  34. min-width: 18rem;
  35. }
  36. div {
  37. width: 2rem;
  38. height: 2rem;
  39. }
  40. .red {
  41. background-color: #FF324A;
  42. }
  43. .green {
  44. background-color: #31FFA6;
  45. }
  46. .blue {
  47. background-color: #206EFF;
  48. }
  49. .yellow {
  50. background-color: #FFFF99;
  51. }
  52. .hidden {
  53. display: none;
  54. }