-
Notifications
You must be signed in to change notification settings - Fork 0
/
product.css
110 lines (93 loc) · 1.86 KB
/
product.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
body {
margin: 0px;
background-color: #f3f3f3;
font-family: "Lucida Sans Typewriter", "Lucida Console", Monaco, "Bitstream Vera Sans Mono", monospace;
}
header {
height: 10vh;
}
header button {
height: 100%;
width: 200px;
border: none;
background-color: transparent;
cursor: pointer;
}
/* parent complete */
/* parent cheaked */
#parent {
height: 90vh;
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
}
/* images completed */
/* images cheaked */
#images {
height: 100%;
width: 30%;
display: flex;
align-items: center;
justify-content: center;
}
#images img {
width: 90%;
height: 90%;
object-fit: cover;
}
/* details completed */
/* details cheaked */
#details {
height: 100%;
width: 60%;
display: flex;
flex-direction: column;
align-items: start;
justify-content: space-evenly;
}
#details h2 {
font-size: 30px;
margin: 0px;
padding: 0px;
}
#details h4 {
font-size: 30px;
margin: 0px;
padding: 0px;
color: grey;
}
#details ul {
margin: 0px;
padding: 0px;
}
#details ul p {
font-size: 15px;
margin: 0px 0px 5px 0px;
padding: 0px;
}
#bottom {
margin: 0px;
padding: 0px;
width: 220px;
height: 50px;
display: flex;
justify-content: space-between;
}
#select {
margin: 0px;
padding: 0px 10px 0px 10px;
width: 105px;
height: 100%;
border: none;
background-color: #dddddd;
}
#details button {
margin: 0px;
padding: 0px;
width: 220px;
height: 50px;
border: none;
background-color: #232323;
color: #ffffff;
}