-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (60 loc) · 1.1 KB
/
style.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
*{
padding: 0;
margin: 0;
font-family: sans-serif
}
body{
background-image: url(background.jfif);
background-size: cover;
}
.profile{
width: 350px;
height: 450px;
background: rgba(0, 0, 0, 0.8 );
margin: 20px auto;
border-radius: 5%;
}
.profile > img{
width: 180px;
height: 180px;
border-radius: 50%;
margin-left: 84px;
margin-top: 15px;
}
.profile > h1 {
display: grid;
place-items:center;
color: #eaeaea;
}
.profile > h2 {
color:#eaeaea;
font-weight: bold;
font-size: 20px;
text-align: center;
}
.profile > p {
display: grid;
place-items: center;
color: #eaeaea;
font-weight: bold;
margin-top: 10px;
margin-left: 10px;
}
.profile i:hover{
color:darkblue;
}
.icon {
margin-left: 131px;
margin-top: 10px;
}
.profile .icon i {
padding: 5px;
background: #eaeaea;
transition: 0.25s;
}
.profile .icon .github:hover{
color: blueviolet;
}
.profile .icon .youtube:hover{
color: red;
}