-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmissingContent.css
More file actions
99 lines (85 loc) · 1.45 KB
/
missingContent.css
File metadata and controls
99 lines (85 loc) · 1.45 KB
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
93
94
95
96
97
98
99
html {
background-color: #222629;
font-family: 'Roboto', sans-serif;
}
p {
font-family: 'Roboto', sans-serif;
}
h1, h2, h3, h4, i, button {
font-family: 'Roboto', sans-serif;
}
body {
background-color: #222629;
margin: 40px;
display: block;
}
div {
color: white;
}
a {
color: lightblue;
}
.itemGrid {
display: grid;
grid-template-columns: auto;
grid-template-rows: auto auto auto auto;
column-gap: 7px;
row-gap: 7px;
}
#missing {
width: 100%;
}
th {
text-align: left;
}
#staticTextParentGrid {
display: grid;
grid-template-columns: auto auto auto;
grid-template-rows: auto;
}
#decapGrid {
display: grid;
grid-template-columns: auto;
grid-template-rows: auto auto;
}
#container {
background-color: #474B4F;
position: relative;
width: 700px;
margin: 0px auto;
padding: initial;
border: 1px solid #D2DBED;
border-radius: 5px;
box-shadow: 3px 3px #888888;
padding-left: 10px;
padding-right: 10px;
}
.detailed {
display: none;
}
.btn {
margin-top: 10px;
background-color: #222629;
color: white;
border-radius: 4px;
}
.deleteButton {
background-color: #222629;
color: white;
border-radius: 4px;
margin-bottom: 5px;
}
.button-parent {
width: 100px;
display: none;
}
.btn:focus, .deleteButton:focus {
outline: none;
box-shadow: none;
}
i {
font-weight: 500;
}
td, th {
padding: 10px;
}