-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
75 lines (63 loc) · 1.09 KB
/
index.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
.status-list {
display: flex;
gap: 10px;
font-size: 11px;
margin-bottom: 10px;
}
.not-on-impressing {
background-color: skyblue;
}
.on-impressing {
background-color: lightcoral;
}
.impressed {
background-color: lightgreen;
}
.list-container {
width: 500px;
height: 500px;
background-color: gray;
overflow: scroll;
padding: 10px;
border: 1px solid black;
font-size: 10px;
}
.list {
display: flex;
flex-direction: column;
justify-content: stretch;
gap: 10px;
background-color: lightgray;
}
.list-item {
background-color: white;
height: 100px;
border: 1px solid black;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr;
}
.top-left {
justify-self: flex-start;
align-self: flex-start;
}
.top-right {
justify-self: flex-end;
align-self: flex-start;
}
.top-clock {
justify-self: center;
align-self: flex-start;
}
.bottom-clock {
justify-self: center;
align-self: flex-end;
}
.bottom-left {
justify-self: flex-start;
align-self: flex-end;
}
.bottom-right {
justify-self: flex-end;
align-self: flex-end;
}