-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
127 lines (104 loc) · 1.69 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/* Write some CSS below */
/* style.css */
body {
font-family: 'Poppins', sans-serif;
color: #404042;
font-size: 18px;
background-color: lightyellow;
margin: 0;
}
h1, h2, h3 {
font-family: 'Poppins', sans-serif;
}
.btn-pink {
background-color: #f5c395;
font-weight: bold;
text-decoration: none;
color: ivory;
padding: 8px 16px;
}
.btn-pink:hover {
color: #f5cbe9;
}
.flowers {
color: #404042;
}
.banner {
background-image: url('images/backgroundd.jpg');
text-align: center;
padding: 100px 0px;
background-position: center;
}
.card-white {
background-color: white;
box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.2);
width: 200px;
padding: 16px;
border-radius: 5px;
}
.card-white img {
width: 100%;
}
.card-white2 {
background-color: white;
box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.2);
width: 400px;
padding: 16px;
border-radius: 5px;
}
.card-white2 img {
width: 100%;
}
.container {
width: 1000px;
margin: 0 auto;
margin-bottom: 20px;
}
.container p {
font-size: 15px;
}
@media (min-width: 500px) {
.container {
width: 400px;
}
}
@media (min-width: 800px) {
.container {
width: 600px;
}
}
@media (min-width: 1000px) {
.container {
width: 800px;
}
}
.footer {
background-color: #f5de93;
font-size: 15px;
padding: 30px 0px;
margin-top: 20px;
position: absolute;
bottom: 0;
width: 100%;
height: 2.5rem;
}
.grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-gap: 16px;
}
@media (max-width: 800px) {
.grid {
grid-template-columns: 1fr;
}
.card-white {
width: auto;
}
}
#page-container {
position: relative;
min-height: 100vh;
}
#content-wrap {
padding-bottom: 2.5rem; /* Footer height */
}