소스 검색

add base.css

wwwlsfcom 6 년 전
부모
커밋
a50df86063
1개의 변경된 파일21개의 추가작업 그리고 0개의 파일을 삭제
  1. 21 0
      cccc-lib/base.css

+ 21 - 0
cccc-lib/base.css

@@ -0,0 +1,21 @@
+*{
+    margin: 0;
+    padding: 0;
+    box-sizing: border-box;
+}
+html {
+    -moz-user-select: none; /*火狐*/
+    -webkit-user-select: none; /*webkit浏览器*/
+    -ms-user-select: none; /*IE10*/
+    -khtml-user-select: none; /*早期浏览器*/
+    user-select: none;
+    /*overflow: auto; !*避免出现滚动条*!*/
+    font-size: 12px; /* larger, smaller */
+    color: white;
+}
+html, body{
+    height: 100%;
+}
+html, body{
+    overflow: visible;
+}