-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuy-item.css
More file actions
49 lines (49 loc) · 772 Bytes
/
buy-item.css
File metadata and controls
49 lines (49 loc) · 772 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
body{
margin: 0 auto;
background-color: lightgreen;
}
#date{
margin-left: 65%;
}
#data{
text-align: center;
}
#log{
color: blue;
margin-left: 10px;
margin-top: 20px;
height: fit-content;
}
#head{
display: flex;
flex-direction: row;
}
#itemholder{
text-align: center;
font-weight: bolder;
}
#items{
align-items: center;
text-align: center;
justify-content: center;
list-style: inside;
}
li{
margin: 20px;
}
#cost{
margin-top: 50px;
}
@media (min-width: 300px ){
#date{
margin-left: auto;
padding-left: 20px;
}
}
@media (max-width: 1000px){
#items{
left: 0;
text-align: left;
padding-left: 0;
}
}