-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
91 lines (90 loc) · 1.33 KB
/
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
:root {
--bg-primary: #e7fbfb;
}
a, h3, p{
color: #67dfc1;
}
a:hover {
text-decoration: none;
color: #67dfc1;
}
#header{
background-color: #67dfc1;
color: #fff;
}
.navbar-light .navbar-brand{
font-size: 2.5rem;
color: #fff;
font-weight: bold;
}
.navbar-brand:hover{
color: #fff;
}
.navbar-brand img{
width: 13%;
}
.navbar-toggler{
background-color: #fff;
}
.nav-item{
padding: 0 15px;
}
.nav-link{
color: #582705;
cursor: pointer;
font-size: 1.2rem;
}
.navbar-light .navbar-nav .nav-link:hover{
color: #fff;
}
.title{
font-weight: bold;
font-size: 3.7rem;
line-height: 1.4;
}
.download-button{
margin: 10% 3% 5% 0;
}
.title-image{
width: 90%;
height: 100%;
}
.pets{
margin: 2% 0;
}
.pets-text{
color: #67dfc1;
text-align: center;
}
.bg-main{
transition: background-color 1s;
}
.bg-main:hover{
background-color: var(--bg-primary);
}
.pet-img {
width: 100%;
}
.carousel-indicators {
left: 0;
top: auto;
bottom: -60px;
}
.carousel-indicators .active{
background: #707070;
}
.carousel-indicators li{
background: #67dfc1;
border-radius: 100%;
width: 22px;
height: 6px;
margin-bottom: 3%;
}
@media (max-width: 768px){
.bg-main{
margin-bottom: 1rem;
}
.carousel-indicators{
display: none;
}
}