-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
64 lines (54 loc) · 1023 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
body {
font-family:sans-serif;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: fit-content;
margin: 0;
padding: 0;
}
#business-card {
box-shadow: 0 0 10px #ccc;
background-color: white;
margin: 25px;
padding: 25px;
width: 300px;
text-align: center;
border-radius: 12px;
}
.profile-photo {
width: 100px;
height: auto;
border-radius: 50%;
margin: 0 auto;
}
.profile-photo:hover {
transform: scale(1.1);
transition: transform 0.3s ease-in-out;
}
h1, h2 {
color: #333;
}
p, a {
color: #555;
font-size: 16px;
text-decoration: none;
}
a {
color:rgb(127, 187, 255)
}
a:hover {
text-decoration: underline;
}
#bio {
line-height: 1.5em;
font-size: 20px;
font-family: Arial;
}
@media only screen and ( max-width: 600px) {
#business-card {
width: 90%;
padding: 15px;
}
}