-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
76 lines (64 loc) · 1.13 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
body {
padding-top: 80px;
font-family: 'Montserrat';
}
.show-cart li {
display: flex;
}
.card {
margin-bottom: 20px;
}
.card-img-top {
width: 200px;
height: 200px;
align-self: center;
}
h3 {
display: inline-block;
text-align: center;
font-weight: bold;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
text-align: right;
}
li {
display: inline-block;
}
li a {
color: rgb(255, 255, 255);
padding: 14px 16px;
}
nav ul li a:hover {
color: #ff9727;
}
.btn {
font-size: 12px;
letter-spacing: 2px;
padding: 13px 17px;
border: none;
transition: 0.5s;
background-size: 200% auto;
}
.btn:hover {
background-position: right center;
/* change the direction of the change here */
}
.btn-1 {
background-image: linear-gradient(to right, #f6d365 0%, #fda085 51%, #f6d365 100%);
}
#myinput {
width: 60%;
border: 3px solid #0000;
border-right: none;
padding: 10px;
height: 30px;
border-radius: 5px 5px 5px 5px;
outline: none;
color: #9DBFAF;
text-align: center;
margin-bottom: 10px;
}