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
64
65
| .kb_dashboard {
| width: 1920px;
| height: 1080px;
| position: relative;
| background-color: lightblue;
| font-size: 20px;
| font-family: Microsoft YaHei;
| }
|
| .kb_header {
| background-color: #00a79d;
| height: 90px;
| line-height: 90px;
| font-size: 40px;
|
| }
|
| .kb_content {
| display: flex;
| position: relative;
| height: 990px;
| }
|
| .kb_left {
| width: 30%;
| height: 100%;
| }
|
| .kb_center {
| width: 40%;
| background-color: #00a79d;
| height: 100%;
| }
|
| .kb_right {
| width: 30%;
| height: 100%;
| }
|
| .flex_c_c {
| display: flex;
| justify-content: center;
| align-content: center;
| }
|
| .flex_c_s {
| display: flex;
| flex-direction: column;
| justify-content: space-evenly;
| /*align-content: center;*/
| }
|
| .kb_block{
| display: flex;
| align-content: center;
| justify-content: center;
| width: 556px;
| height: 400px;
| line-height: 400px;
| background-image: linear-gradient(to bottom right, red , yellow);
| /*background-image: repeating-radial-gradient(red, yellow 10%, green 15%);*/
|
| /*background-color: #5a5e66;*/
| margin: 10px;
| }
|
|