forked from HuXn-WebDev/HTML-CSS-JavaScript-100-Projects
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (42 loc) · 648 Bytes
/
style.css
File metadata and controls
50 lines (42 loc) · 648 Bytes
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
* {
box-sizing: border-box;
}
body {
/* color: #fff; */
font-family: sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.card {
border: 2px solid black;
padding: 20px;
width: 30%;
height: 50%;
cursor: pointer;
transition: all 0.5s;
}
.card:hover {
box-shadow: 1px 1px 5px 0px;
transform: scale(1.2);
}
.container {
margin: 0 auto;
text-align: center;
}
.fa-brands {
font-size: 2rem;
}
.followers {
font-size: 5rem;
margin-top: 2.5rem;
margin-bottom: 1.5rem;
}
.fa-facebook {
color: rgb(66, 103, 178);
}
.fa-youtube {
color: rgb(255, 0, 0);
}