-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
45 lines (38 loc) · 775 Bytes
/
main.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
.itemContent{
margin:10px
}
.itemCell{
display:table-cell;
border-top-style:solid;
border-bottom-style :solid;
border-left-style : none;
border-right-style : none;
}
.itemCell:first-child{
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
border-left-width : 10px;
border-left-style : solid;
}
.itemCell:last-child{
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
border-right-width : 10px;
border-right-style : solid;
border-left-style:solid;
}
.itemRowContainer{
display : table-row;
width : 100%;
}
.itemListContainer{
display : table;
}
#itemListContainer{
width:70%;
margin :auto;
}
#addDTOContainer{
width:50%;
margin :auto;
}