-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.css
69 lines (61 loc) · 1.19 KB
/
about.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
body, h1, h2, p {
margin: 0;
padding: 0;
}
body {
font-family: 'Roboto Slab', serif;
background-color: beige;
}
header {
background-color: rgb(181,181,181);
color: rgb(0, 0, 0);
text-align: center;
padding: 1rem 0;
cursor: pointer;
}
main {
display: flex;
justify-content: center;
align-items: center;
height: 90vh;
}
.profile {
text-align: center;
border: 5px solid rgba(0, 0, 0, 0.622);
border-radius: 15px;
background-color: beige;
transition: 0.5s;
}
.profile:hover{
background-color: rgba(93, 93, 93, 0.479);
}
.profile img {
width: 180px;
height: 180px;
border-radius: 50%;
border: 5px solid rgba(0, 0, 0, 0.622);
object-fit: cover;
margin-bottom: 1rem;
cursor: pointer;
position: relative;
top: -50px;
transition: 0.5s;
}
.profile img:hover{
filter: brightness(60%);
}
.profile h2 {
font-size: 2rem;
margin-bottom: 3rem;
cursor: pointer;
}
.profile p {
font-size: 1.1rem;
margin-bottom: 1rem;
cursor: pointer;
}
.profile a {
color: #007bff;
text-decoration: none;
cursor: pointer;
}