-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
138 lines (116 loc) · 1.7 KB
/
main.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
body{
width: 100%;
padding-top: 60px;
margin:0px;
font-family: Helvetica, Arial, Open Sans, sans-serif;
}
.active{
display: block;
}
.hidden{
display: none;
height: 0px;
}
ul{
list-style-type: none;
}
#navBarContainer{
position: absolute;
top:0;
vertical-align: top;
width: 100%;
height: 40px;
margin: 0px auto;
background-color: #1b1b1b;
color: #999999;
}
#navBar{
margin: 0px auto;
width: 1170px;
height: 100%;
}
#navBar ul{
display: block;
margin: 0px;
padding: 0px;
}
#navBar li{
display: inline-block;
float: left;
}
#navBar li a{
text-decoration: none;
display: block;
float: left;
color: inherit;
line-height: 20px;
font-size: 14px;
padding: 10px 20px 10px;
}
#navBar a:hover{
color: white;
}
.homeNav{
text-decoration: none;
display: block;
float: left;
color: inherit;
padding: 10px 20px 10px;
margin-left: -20px;
font-weight: 200;
font-size: 20px;
line-height: 20px;
font-family: 'consolas';
}
.left{
float: left;
}
.right{
float: right;
}
#resources{
cursor: pointer;
}
#wineList h5{
margin-bottom: 4px;
margin-top: 10px;
font-weight: 900;
}
#wineList{
display: block;
width: 1170px;
margin: 0px auto;
}
#wineList > ul{
display: inline-block;
margin: 0px auto;
padding: 0px;
}
#wineList li{
display: inline-block;
margin-top: 0px;
margin-left: 0px;
margin-right: 20px;
margin-bottom: 20px;
}
#wineList a{
min-width: 260px;
padding: 4px;
border: 1px;
border-color: transparent;
box-shadow: 0px 0px 2px #ddd;
text-align: center;
color: black;
text-decoration: none;
display: inline-block;
font-weight: 100;
cursor: pointer;
}
#wineList a:hover{
box-shadow: 0px 0px 2px blue;
}
#wineList img {
height: 150px;
width: auto;
margin: 0px auto;
}