-
Notifications
You must be signed in to change notification settings - Fork 0
/
seller-page-style.css
76 lines (66 loc) · 1.23 KB
/
seller-page-style.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
body{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
overflow: hidden;
}
#background{
height: 92vh;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
#div1{
background-color: rgba(255, 255, 255, 0.75);
width: 95%;
height: 500px;
border-radius: 10px;
align-self: center;
display: flex;
justify-content: space-around;
align-items: center;
flex-wrap: wrap;
}
#div2{
background-color: rgba(217, 217, 217, 0.75);
width: 40%;
height: 300px;
border-radius: 10px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#div3{
background-color: rgba(217, 217, 217, 0.25);
width: 40%;
height: 300px;
border-radius: 10px;
display: flex;
justify-content: center;
align-items: center;
}
#p1{
font-size: large;
height: 100px;
}
#p2{
font-size: smaller;
height: 15px;
}
#add-button{
height: 40px;
width: 150px;
background-color: rgba(234, 182, 118, 0.75);
display: flex;
justify-content: center;
align-items: center;
}
.reference{
color: black;
}
.reference:hover{
opacity: 0.8;
}