-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
48 lines (37 loc) · 872 Bytes
/
styles.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
body {
background-color: #F8F8F8;
font-family: "Open sans", Helvetica, Arial, sans-serif;
}
.flex-container{
display: flex;
}
.card {
/* Add shadows to create the "card" effect */
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
}
/* On mouse-over, add a deeper shadow */
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
/* Add some padding inside the card container */
.container {
padding: 2px 16px;
}
footer {
position: fixed;
bottom: 0;
left: 0;
padding: 10px;
background-color: #f0f0f0;
width: 100%;
}
.social-links {
display: flex;
align-items: center;
justify-content: flex-start;
}
.social-links a {
margin-right: 10px; /* Adjust the spacing between social links */
color: #000; /* Set the color of the social links */
}