-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
59 lines (55 loc) · 903 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
body {
font-family: "Poppins", sans-serif;
overflow-x: hidden;
}
.bg-container {
background-color: #264653;
}
.custom-btn {
background-color: #e76f51;
padding-left: 2rem;
padding-right: 2rem;
color: white;
}
.img-featured {
width: 288px;
height: 243px;
}
.img-faq {
width: 400px;
height: 400px;
}
.img-greyscale {
width: 288px;
height: 243px;
filter: grayscale(1);
}
span {
color: #e76f51;
}
a {
text-decoration: none;
font-weight: 600;
}
.faq {
text-decoration: none;
}
.footer {
left: 0;
right: 0;
bottom: 0;
width: 100%;
background-color: rgb(24, 23, 23);
color: rgb(228, 225, 225);
text-align: center;
}
.zoom {
padding: 50px;
transition: transform 0.2s; /* Animation */
width: 250px;
height: 200px;
margin: 0 auto;
}
.zoom:hover {
transform: scale(1.3); /* (150% zoom)*/
}