-
-
Notifications
You must be signed in to change notification settings - Fork 102
/
CustomStyle.html
55 lines (51 loc) · 921 Bytes
/
CustomStyle.html
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
<html>
<head>
<style>
body {
margin: 0;
}
.stateDig{
display: flex;
padding: 0;
margin: 0;
container: flex;
flex-direction: row;
}
.stateDig > li {
display: flex;
flex-direction: row;
height: 50px;
}
.stateDig > li > .title {
line-height: 50px;
padding-right: 5px;
padding-left: 5px;
background-color: #d4d4d4;
border: 1px solid gray;
pointer-events: none;
}
.stateDig > li.active > .title {
background-color: #b9eeb9;
border: 1px solid green;
}
li.node::after {
content: "";
border: 1px solid black;
display: flex;
flex-grow: 1;
margin: auto;
width: 20px;
}
</style>
</head>
<body>
<ul class="stateDig">
<li class="node">
<div class="title">Extracted</div>
</li>
<li class="active">
<div class="title">Imported</div>
</li>
</ul>
</body>
</html>