-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathfeatures.css
More file actions
81 lines (69 loc) · 1.37 KB
/
features.css
File metadata and controls
81 lines (69 loc) · 1.37 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
.search-box {
width: 98%;
display: flex;
flex-direction: row;
align-items: center;
font-size: var(--text_s);
border: 2px solid var(--secondary);
border-radius: 0.25rem;
padding: 0.25rem;
background-color: white;
}
.search-box * {
margin: 0 0.25rem;
}
.search-input[type=text],
.search-input:focus {
width: 100%;
outline: none;
border:none;
}
/* Feature Panel */
#features {
display: grid;
grid-template-columns: 1fr 1fr;
grid-auto-rows: 3rem;
grid-column-gap: var(--space_l);
margin: var(--space_s);
align-items: start;
width: 100%;
overflow-y: scroll;
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
.invisible {
display: none;
position: absolute;
top:0;
}
.feature-row {
display: grid;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
grid-template-columns: 6% 30% auto auto 15%;
background-color: var(--surface);
margin: var(--space_s) 0;
padding: var(--space_s);
border-radius: 0.25rem;
border: 2px solid transparent;
}
.feature-row:hover {
border: 2px solid var(--primary);
}
.feature-row div {
justify-self: start;
width: 100%;
}
.feature-icon {
font-size: var(--text_m);
vertical-align: middle;
}
.information {
display: none;
grid-column: 2/6;
width: 30rem;
}
.info-box {
display: block !important;
}