-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
93 lines (77 loc) · 1.45 KB
/
index.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: #f7efe5;
}
.lead{
margin-top: 50px;
height: 100px!important;
overflow: auto;
}
.card-img-top {
width: 100%;
height: 30vh;
object-fit: cover;
padding-top: 5px;
}
.card {
margin: 5px;
margin-top: 15px;
}
.mState {
font-size: 1.2em;
text-align: center;
font-weight: bold;
}
#mPage {
background-image: url(https://d17fnq9dkz9hgj.cloudfront.net/uploads/2017/06/why-are-dogs-scared-of-firework-header.jpg);
background-repeat: no-repeat;
background-size: cover;
height: 575px;
margin-top: 0;
margin-bottom: 0;
}
#cenBox {
width: 700px;
max-width: 700px;
max-height: fit-content;
padding: 3px;
position: absolute;
}
.btn-primary {
background-color: #e7664f;
border-color: black;
}
.btn-primary:hover {
background-color: #924031;
border-color: black;
}
.btn-primary:focus {
background-color: #924031;
box-shadow: none;
}
.btn-outline-secondary {
border-color: #924031;
color: #e7664f;
}
.btn-outline-secondary:hover {
background-color: #a85303;
border-color: black;
}
.btn-outline-secondary:focus {
box-shadow: none;
}
.search-bar:focus {
box-shadow: none;
border-color: black;
}
@media only screen and (max-width: 700px){
#cenBox {
width: 100%;
}
}
@media only screen and (max-width: 425px){
.card-img-top {
width: 100%;
height: 50%;
object-fit: cover;
}
}