-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (67 loc) · 1.24 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
75
76
77
78
79
*{
margin: 0
}
html, body{
--gray: hsl(240, 9%, 89%);
--black: hsl(240, 6%, 13%);
height: 100%;
font-family: 'Roboto', sans-serif;
-webkit-font-smoothing: antialiased;
}
body{
display: grid;
place-items: center;
}
.container{
color: var(--gray);
max-width: 250px;
margin-left: auto;
margin-right: auto;
text-align: center;
}
.avatar{
width: 10rem;
margin: 11.5rem auto 0;
position: relative;
}
.avatar span{
position: absolute;
top: -15px;
z-index: 1;
}
.avatar > img {
width: 10rem;
height: 11.5rem;
object-fit: cover;
clip-path: polygon(50% 0, 100% 30%, 100% 75%, 50% 100%, 0 75%, 0 28%);;
}
main{
background: url(images/Mobile.png);
width: 375px;
height: 650px;
}
h1{
font-size:1.5rem;
margin-top: 1.0rem;
}
a{
color: var(--gray);
text-decoration: none;
margin-top: 0.25rem;
display: flex;
gap: 0.75rem;
justify-content: center;
align-items: center;
}
p{
margin-top: 2rem;
line-height:0.6cm
}
ul{
margin-top: 2.3rem;
list-style: none;
padding: 0;
display: flex;
gap:0.5rem;
justify-content: center;
}