-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstructure.css
63 lines (52 loc) · 926 Bytes
/
structure.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
body * {
box-sizing: border-box;
}
a, input, textarea, select, button {
font-size: unset;
line-height: unset;
border: unset;
font-family: unset;
color: unset;
background-color: unset;
}
br.hide{
display: none;
}
body {
margin: 0;
/* user-select: none;*/
}
*::-webkit-scrollbar {
opacity: 0;
display:none;
}
*::-webkit-scrollbar-thumb {
}
.expand {
flex: 1 0 0;
}
.wrap {
width: 100%;
height: 100%;
}
.flex {
display: flex;
}
.column {
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.row {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
}
.center {
-webkit-align-items: center;
-ms-align-items: center;
align-items: center;
-webkit-justify-content: center;
-ms-justify-content: center;
justify-content: center;
}