-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
51 lines (45 loc) · 844 Bytes
/
Copy pathstyles.css
File metadata and controls
51 lines (45 loc) · 844 Bytes
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
body {
background-color: #f7f7f7;
}
h3 {
font-size: 16px;
font-weight: 600;
}
#root {
display: grid;
grid-gap: 10px;
grid-template-columns: repeat(auto-fit, minmax(350px, 2fr));
grid-auto-rows: 50px;
/* grid-auto-flow: column; */
grid-gap: 20px;
}
.parent-card {
margin-left: 10px;
}
.student-card {
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
details {
color: #686868;
padding: 5px;
min-height: 50px;
}
details[open] {
z-index: 99;
min-height: 100px;
grid-row: span 6;
box-shadow: none;
}
[contenteditable="true"] {
padding: .25em .5em;
margin: 1em 0;
transition: padding .3s ease-in-out;
width: 100%;
background: #e0e0e0;
outline: 2px solid slategray;
}
[contenteditable="true"]:hover,
[contenteditable="true"]:focus {
padding: .25em;
}