-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
78 lines (69 loc) · 1.15 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
html {
font-family: 'Helvetica', sans-serif;
}
body {
width:100%;
height:100%;
padding:0;
margin:0
}
.bgimage {
min-width:100%;
height:100%;
display: inline-block;
position:absolute;
top: 0;
left:0;
z-index:0;
}
header {
display: inline-block;
z-index: 5;
position:absolute;
top:0;
left:0;
width:100%;
height:44px;
background-color:RGB(230,230,230);
border-bottom:1px black;
}
.prodTable {
width:100%;
margin: 10px auto;
padding:10px;
display:block;
}
.headerContainer {
max-width:100%;
margin:0 auto;
display: flex;
justify-content: space-around;
align-items: center;
height:100%;
}
.headerTitle {
display:inline-block;
margin: 0 auto;
vertical-align:middle;
width:50%;
text-align:center;
}
.searchBox {
display:inline-block;
vertical-align: middle;
margin:0 auto;
width: 300px;
height: 100px;
background-color: RGB(230, 230, 230);
z-index:10;
}
.mainContentWrapper {
width:100%;
position:absolute;
top:44px;
margin:0 auto;
}
.mainContent {
width:50%;
margin:0 auto;
}