-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
85 lines (72 loc) · 1.61 KB
/
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
77
78
79
80
81
82
83
84
85
:root {
--blue: rgb(0, 113, 133);
--bluewhite: rgb(84, 179, 196);
--green: rgb(0, 118, 0);
--yellow: rgb(255, 216, 20);
--yellowhite: rgb(253, 227, 96);
--orange: rgb(255, 164, 28);
--orangewhite: rgb(247, 173, 62);
}
.back {
color: var(--blue);
font-size: 23px;
cursor: pointer;
transition: opacity 150ms;
}
.back:hover {
opacity: 0.8 ;
}
.back:active {
opacity: 0.7;
}
#stock {
font-size: 22px;
font-weight: bold;
color: var(--green);
margin-top: 40px;
}
h1 {
margin-top: 40px;
}
#delivery {
font-size: 20px;
}
#cart {
height: 40px;
width: 150px;
border-radius: 20px;
border: none;
background-color: var(--yellow);
font-size: 16px;
font-weight: 550;
cursor: pointer;
transition: background-color 200ms, font-size 100ms, opacity 300ms, box-shadow 300ms;
}
#buy:hover {
background-color: var(--orangewhite) ;
font-size: 17px;
box-shadow: 0 3px 10px rgba(196, 173, 173, 0.507);
}
#cart:hover {
background-color: var(--yellowhite) ;
font-size: 17px;
box-shadow: 0 3px 10px rgba(196, 173, 173, 0.507);
}
#buy:active {
opacity: 0.7;
}
#cart:active {
opacity: 0.7;
}
#buy {
margin-left: 8px;
height: 40px;
width: 150px;
border-radius: 20px;
border: none;
background-color: var(--orange);
font-size: 16px;
font-weight: 550;
cursor: pointer;
transition: background-color 200ms, font-size 100ms, opacity 300ms, box-shadow 300ms;
}