-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
102 lines (79 loc) · 1.25 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
92
93
94
95
96
97
98
99
100
101
102
/* Add your styling here */
.nav {
background-color: #eac4c4;
}
/* Hover effects for nav links */
.hvr-underline-from-center:before {
background: #d78c9c;
}
.hvr-underline-from-center:after {
background: #d78c9c;
}
/* Jumbotron Styling */
.jumbotron {
background-image: url(../images/cakes/cakebg.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 30rem;
overflow: auto;
width: 100%;
margin-top: 100px;
opacity: 0.8;
}
.btns {
background: #db96a0;
}
.btns:hover {
background: #eac4c4;
}
/* Card Styling */
.card-bg {
background: #e9c4c4;
}
.card-btn {
background: #d27c89;
}
.card-btn:hover {
background: #db96a0;
}
.card-section {
padding-bottom: 3rem;
}
/* Footer Styling */
.footer-section {
background-color: #d27c89;
margin: 0 auto;
text-align: center;
}
footer a {
color: #000000;
font-size: 1.5rem;
}
footer p {
font-size: 0.9rem;
}
/* Media Queries */
@media (min-width: 992px) {
.nav {
font-size: 1.25rem;
}
h1 {
font-size: 3rem;
}
h2 {
font-size: 2.5rem;
}
}
@media (min-width: 1200px) {
.jumbo-text,
.card-title {
font-size: 1.4rem;
}
.card-text {
font-size: 1.1rem;
}
form {
font-size: 1.25rem;
}
}