-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackStyle.css
93 lines (80 loc) · 1.52 KB
/
PackStyle.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
body{
background-color: rgb(255, 255, 255);
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
}
.topbar{
margin-left: 5%;
top: 10px;
width: 90%;
padding-top: 15px;
padding-bottom: 15px;
display: flex;
border-bottom: 3px solid transparent;
background-color: teal;
position: fixed;
border-radius: 20px;
}
.topbar h1{
color: white;
margin: 0;
}
.content{
width: 100%;
height: 1000px;
padding-top: 0;
background-color: blueviolet;
margin: 0;
display: flex;
flex-direction: column;
}
.search{
margin-left: 10%;
margin-top: 6%;
margin-bottom: 10px;
height: 10%;
width: 80%;
background-color: brown;
}
.Pack{
height: 90%;
width: 100%;
background-color: blue;
display: flex;
flex-direction: column;
margin-bottom: 10px;
}
/*.Categories{
margin-left: 10%;
width: 80%;
height: 100px;
background-color: cadetblue;
}*/
.List{
margin-left: 10%;
width: 80%;
height: 800px;
background-color: rgb(179, 240, 181);
border-radius: 10px;
border: solid;
border-width: thick;
border-color: maroon;
overflow: auto;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.List h1{
color: blue;
}
.List a{
width: 40%;
height: 40%;
background-color: chartreuse;
margin: 5%;
}
.bottombar{
text-align: center;
}