-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
92 lines (86 loc) · 1.34 KB
/
style.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[v-cloak]{
display: none;
}
body{
overflow: hidden;
}
#app{
display: flex;
flex-direction: column;
height: 100vh;
display: relative;
}
header{
border-bottom: 1px solid #ccc;
background: #DBE7E2;
padding: 15px;
}
header h1{
font-size: 1.7em;
}
.main{
padding: 15px;
overflow: scroll;
flex: 1;
}
.badge-num-found{
color: #fff !important;
float: left;
}
.badge-not-found{
float: left;
}
.statuses{
display: flex;
padding: 15px;
border-bottom: 1px solid #eee;
}
.statuses .status{
margin-right: 15px;
}
.statuses .status:last-child{
margin-right: 0;
}
.statuses .status.active{
text-decoration: underline;
}
.statuses .status.status-missing{
cursor: pointer;
user-select: none;
}
.delete-item-btn{
background-image: url(icons/trash.svg);
background-repeat: no-repeat;
background-size: contain;
background-position: center;
width: 15px;
height: auto;
display: block;
}
.lang-items .row{
border-bottom: 1px solid #eee;
padding-bottom: 15px;
}
.logo{
max-width: 100%;
height: auto;
}
.custom-modal{
min-width: 400px;
background: #fff;
padding: 15px;
margin: auto;
max-width: 100vw;
overflow: scroll;
max-height: 100vh;
}
.custom-modal-backdrop{
z-index: 10000;
position: fixed;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
background: rgba(0,0,0,0.3);
display: flex;
}