-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
89 lines (74 loc) · 1.32 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
*, ::after, ::before {
box-sizing: border-box;
}
body {
background: #fefefe;
font-family: 'Poppins', sans-serif;
margin-bottom: 50px;
}
.container {
width: 1200px;
margin: auto;
max-width: 100%;
}
h1 {
text-align: center;
}
h2 {
position: relative;
text-align: center;
text-decoration: underline;
}
ul {
display: flex;
flex-wrap: wrap;
justify-content: center;
list-style-type: none;
padding: 0;
}
ul li {
background-color: #fff;
box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.15);
margin: 20px;
width: 350px;
}
ul li a {
color: #000;
text-decoration: none;
}
ul li img {
display: block;
object-fit: cover;
margin-bottom: 15px;
transition: transform 0.3s ease;
height: 200px;
width: 350px;
}
ul li p {
font-weight: bold;
padding: 0 15px;
}
.links-container {
padding: 15px;
}
.links-container a {
color: #fff;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 18px;
text-decoration: none;
margin-right: 5px;
height: 35px;
width: 35px;
transition: transform 0.3s ease;
}
.links-container a.blue {
background-color: #34a0e9;
}
.links-container a.youtube {
background-color: #ea0000;
}
.links-container a:hover {
transform: scale(1.2);
}