-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
98 lines (84 loc) · 1.69 KB
/
styles.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
body {
width: auto;
height: auto;
min-height: 100%;
max-height: 100%;
max-width: 100%;
margin: 0;
padding: 0;
overflow-y: auto;
overflow-x: hidden;
}
div {
border-radius: 15px;
padding: 10px;
}
div#search-container,
div#results-container,
div#navigate-results-buttons,
div#detail-container {
border: black 5px solid;
}
div#my-breweries-container {
border: rgb(129, 123, 123) 5px solid;
}
label.form-check-label {
color: white;
}
header {
background-image: url("./img/kangabrewheader.jpg");
min-height: 100px;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
border-bottom: rgb(168, 134, 62, .8) 5px solid;
}
header h1, header h2, .label.form-check-label {
color: rgb(255, 255, 255);
font-size: large;
text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
.brewery-type-data, h2#brewery-type {
text-transform: capitalize;
}
.visible {
visibility: visible;
opacity: 1;
transition: opacity 2s linear;
}
.hidden {
visibility: hidden;
opacity: 0;
transition: visibility 0s 2s, opacity 2s linear;
}
.underline {
text-decoration: underline;
}
tr.active {
background-color: #e4db92;
}
footer {
border-top: 3px black solid;
box-shadow: 0 50vh 0 50vh rgb(212,212,212);
background-color: rgb(212,212,212);
}
#error-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(255, 156, 156, 0.5);
z-index: 9999;
}
#error-message {
position: fixed;
padding: 30px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: rgba(196, 112, 112, 1);
border-radius: 20px;
border: yellow 5px dashed;
z-index: 9999;
}