-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
114 lines (92 loc) · 1.5 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
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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
html, body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
}
header{
position: sticky;
top: 0;
background: rgb(195, 212, 40);
height: 66px;
box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.rightBox{
display: flex;
margin: 12px;
}
.left img{
width: 32px;
height: 23px;
}
.container{
padding: 0 10vw;
}
.containerHeader{
padding: 0 10vw;
}
nav{
font-size: 12px;
padding-top: 14px;
}
nav ul li{
list-style: none;
padding: 0 12px;
}
.section1{
background: #496b74;
}
.search{
width: 34vw;
padding: 7px 17px;
border: 0.5px solid grey;
background: #193747;
border-radius: 5px;
}
.homeImg{
width: 80vw;
margin: 12px 0;
}
.itemImg{
width: 10vw;
margin: 6px 12px;
}
footer{
padding: 23px;
text-align: center;
box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
}
.tall{
min-height: 40vh;
}
@media (max-width: 450px) {
.search {
width: 72vw;
}
}
@media (max-width: 1550px) {
nav ul li {
list-style: none;
padding: 0 4px;
font-size: 10px;
}
.containerHeader {
padding: 0 2vw;
}
header{
height:122px;
}
nav{
flex-direction: column;
align-items: center;
}
.right{
flex-direction: column;
}
.rightBox{
display: flex;
margin: 12px;
}
}