-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.css
70 lines (58 loc) · 928 Bytes
/
index.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
64
65
66
67
68
69
70
* {
margin: 0;
}
html {
overflow: hidden;
}
.content {
width: 100%;
height: 100%;
display: flex;
flex-direction: row;
background: #f5f5f5;
}
.left {
width: 30%;
}
.left .item {
border-bottom: solid 1px #fff;
margin-left: 15px;
display: flex;
flex-direction: row;
align-items: center;
}
.header {
text-align: center;
height: 40px;
line-height: 40px;
}
.right {
width: 70%;
height: 100%;
background: #fff;
}
.area {
border: dashed 1px #000;
width: 99.6%;
height: 100px;
display: flex;
justify-content: center;
align-items: center;
}
.start {
height: 40px;
width: 80px;
color: #fff;
background: #999;
text-align: center;
line-height: 40px;
box-shadow: 1px 1px 1px #000;
}
.status {
margin-top: 20px;
}
.status-info {
margin-left: 10px;
height: 45%;
overflow-y: scroll;
}