-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (64 loc) · 1011 Bytes
/
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
.main {
font-family: "Shadows Into Light", cursive;
font-size: 2em;
}
.main nav img {
margin: 0 9px;
}
nav {
width: 100%;
}
.navbar-brand {
font-size: 1.5em;
}
.nav-link {
margin-left: 10px;
}
.nav-link:hover {
border-radius: 10px;
background: #c3a0db;
transition: ease-in-out 0.3s;
}
.dog-images {
height: 70vh;
}
.dog-images img {
height: 70vh;
width: auto;
}
.carousel-item {
height: 700px;
}
.carousel-item img {
position: absolute;
object-fit: cover;
top: 0;
left: 0;
min-height: 700px;
}
.carousel-item div h5 {
padding: 0 15px;
border-radius: 10px;
display: inline;
background-color: #fce77d;
font-size: 1.5em;
font-weight: bold;
color: #f96167;
}
.carousel-item div p {
margin: 20px 0;
border-radius: 10px;
background-color: #fcedda;
color: #ee4e34;
}
.about {
padding: 20px 5px;
text-align: center;
font-family: sans-serif;
background: #3d4147;
}
#grey-bg {
padding: 10px 10px;
border-radius: 10px;
background: #c2acb7;
}