-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
126 lines (108 loc) · 2.03 KB
/
Copy pathstyle.css
File metadata and controls
126 lines (108 loc) · 2.03 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
margin : 0px;
padding : 0px;
box-sizing : border-box;
}
body{
font-family: "Roboto", sans-serif;
}
/* Grid 3 */
.grid-3 {
display: grid;
grid-template-columns: 20% 60% 20%;
justify-items: center;
align-items: center;
}
/* Menu Section */
#menu-container {
width: 1200px;
height: auto;
}
@media screen and (max-width: 1200px) {
#main-container{
width: 100%;
}
}
nav ul {
background-color: rgb(243, 241, 241);
position: relative;
display: flex;
flex-direction: row;
justify-content: flex-end;
list-style: none;
gap: 3rem;
}
nav ul li {
padding-left: 10px;
padding-right: 10px;
}
nav ul li:hover{
background-color: rgb(228, 201, 165);
}
/* User Container */
#user-container{
background-color: gainsboro;
padding: 0px 60px;
}
#user-container .grid-3 .position-left img{
height: 80px;
}
.search-bar {
display: flex;
flex-direction: row;
align-items: center;
}
.search-bar form{
width: 100%;
height: auto;
}
.search-bar input[type=text]{
border: none;
width: 400px;
padding : 6px;
}
.search-bar svg{
width: 100%;
height: auto;
background-color: antiquewhite;
padding-left: 5px;
padding-top: 1.5px;
padding-bottom: 2.3px;
border-radius: 2px;
}
.search-bar svg:hover{
-webkit-transform: scale(1.08);
transform: scale(1.08);
background-color: rgb(255, 213, 158);
}
#user-container .grid-3 .position-right svg{
height: 80px;
width: auto;
padding: 6px;
margin: 2px;
}
#user-container .grid-3 .position-right svg:hover{
border: solid 3px rgb(244, 244, 244);
border-radius: 10px;
}
.produk {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 20px;
}
.item {
border: 1px solid #ddd;
padding: 15px;
margin: 10px;
width: 200px;
text-align: center;
}
.item img {
width: 100%;
height: auto;
}
.rating {
color: gold;
}