-
Notifications
You must be signed in to change notification settings - Fork 0
/
details.css
64 lines (56 loc) · 1.07 KB
/
details.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
body{
display: grid;
place-items: center;
}
.container{
width: 100%;
display: grid;
grid-gap: 15px;
grid-template-columns: repeat(1, 250px) 1fr;
grid-template-rows: repeat(1, 600px);
justify-content: space-around;
background-color: antiquewhite;
}
.div1{
display: grid;
width: 100%;
grid-template-columns: repeat(1, 1fr);
grid-template-rows: repeat(10, 1fr);
margin-left: 20px;
margin-top: 10px;
}
.list{
margin-top: 10px;
}
#list1{
background-color: black;
border-radius: 5px;
color: white;
padding-left: 30px;
display: grid;
align-items: center;
}
#list2{
border-radius: 5px;
background-color: black;
color: white;
padding-left: 30px;
display: grid;
align-items: center;
}
#list3{
border-radius: 5px;
background-color: black;
color: white;
padding-left: 30px;
display: grid;
align-items: center;
}
#list4{
border-radius: 5px;
background-color: black;
color: white;
padding-left: 30px;
display: grid;
align-items: center;
}