-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathD3.css
84 lines (73 loc) · 1.4 KB
/
D3.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
* {
box-sizing: border-box;
}
.nav2 {
margin-top: 10px;
}
.text {
display: inline-block;
margin-top: 200px;
padding: 20px;
font-size: 2vw;
font-weight: 300;
background-color: rgb(197, 140, 133);
background-blend-mode: lighten;
opacity: 0.8;
}
.main {
background: url("fruits.png");
background-repeat: no-repeat;
background-position: center center;
background-size: 100vw 82vh;
opacity: 1;
overflow: hidden;
width: 100%;
height: 500px;
padding: 12px;
float: left;
}
.btn {
text-align: center;
vertical-align: middle;
padding: .67em .67em;
cursor: pointer;
}
.btn-primary {
color: white;
background-color: #56CCF2;
border: none;
border-radius: .3em;
font-weight: bold;
}
.btn-primary:hover {
background-color: #2D9CDB;
font-weight: bolder;
}
.shop-item-title {
display: block;
width: 100%;
text-align: center;
font-weight: bold;
font-size: 1.5em;
color: #333;
margin-bottom: 5px;
}
.shop-item-image {
height: 250px;
padding: 10px;
}
.shop-item-details {
display: flex;
align-items: center;
padding: 5px;
}
.shop-item-price {
flex-grow: 1;
color: #333;
}
.shop-items {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
margin-top: 10px;
}