-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
114 lines (96 loc) · 1.59 KB
/
index.css
File metadata and controls
114 lines (96 loc) · 1.59 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
html, body {
margin: 0;
padding: 0;
font-family: 'Questrial', sans-serif;
}
header {
background-color: #414141;
padding: 20px;
text-align: center;
}
header h1{
position: absolute;
}
header img{
width: 100%;
height: 250px;
}
#breweryListLeft {
width:25%;
height: auto;
margin-left: 20px;
margin-top: 20px;
display:block;
border: solid;
}
#breweryListLeft h2 {
font-size: 2em;
margin-top: 0px;
}
#container {
display:flex;
height:auto;
}
#breweryListLeft p {
padding: 0;
margin: 0;
font-size: 1.5rem;
}
#breweryListLeft p:not(:last-child) {
margin-bottom: .5em;
}
#breweryListLeft p:hover {
color: red;
cursor: pointer;
}
#middle {
position: relative;
margin: 20px;
width: 100%;
height: auto;
}
#brewery-detail {
position: relative;
top:0px;
margin-left: 0px;
margin-top: 0px;
padding: 0px;
width:auto;
height:auto;
background-color: rgba(255, 255, 255, 0.75);
}
#brewery-name {
text-transform: uppercase;
font-size: 1.5em;
text-align: center;
}
#brewery-description {
font-size: 1.25em;
text-align: 0px;
}
input[type=submit] {
border:0px;
background:white;
font-size: 1em;
border: 1px solid black;
margin-left: 10px;
border-radius: 10px;
}
textarea {
width: 300px;
font-size: 1em;
border: 1px solid black;
border-radius: 10px;
padding:10px;
}
#reviews{
height: auto;
}
#reviews p{
border: solid;
padding: 20px;
overflow-wrap: break-word;
}
#sort-form{
border: solid;
}