-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
58 lines (49 loc) · 1.02 KB
/
Copy pathstyles.css
File metadata and controls
58 lines (49 loc) · 1.02 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
*{
font-family: "MartelSans", sans-serif;
}
#root {
display:flex;
flex-wrap: wrap;
}
details {
min-width: 300px;
margin: 10px auto 0;
background: white;
padding: 20px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
text-align: left;
position: relative;
border-radius: 3px;
align-self: flex-start;
}
details > summary > span {
display: flex;
flex-direction: column;
flex-wrap: wrap;
}
summary .key {
font-weight: 600;
text-align: center;
margin: -1em -1em 0;
padding: 0em;
}
summary .value {
margin: -.5em -.5em 0;
padding: .5em;
}
details[open] {
padding: .5em;
box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
details[open] summary {
border-bottom: 1px solid #aaa;
margin-bottom: .5em;
}
.parent-wrapper {
margin: .5%;
}
.parent-wrapper .parent {
display:flex;
flex-direction: column;
flex-wrap: wrap;
}