-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
79 lines (64 loc) · 1.17 KB
/
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
font-family: 'Roboto', sans-serif;
}
.pfp{
display: block;
margin: 0 auto;
border-radius: 50%;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
object-fit: cover;
object-position: center;
}
#title {
background-color: #333;
color: white;
text-align: center;
padding: 1rem 0;
}
section {
margin: 2rem 5rem;
padding: 2rem;
background-color: white;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
border-radius: 5px;
transition: box-shadow 0.1s, transform 0.15s;
}
section:hover{
box-shadow: 10px 10px 10px rgba(27, 7, 7, 0.1);
/* width: 81rem; */
transform: translateY(-5px) scale(1.005) translateZ(0);
}
ul {
list-style: none;
padding: 0;
}
li {
margin-bottom: 1rem;
}
a {
color: #007bff;
text-decoration: none;
}
audio,
video {
display: block;
margin: 1rem auto;
}
footer {
text-align: center;
padding: 1rem 0;
background-color: #333;
color: white;
}
footer p::first-letter {
color: yellow;
}