-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
76 lines (75 loc) · 1.32 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
body{
text-align: center;
background-image: url(images/bg-pattern-top.svg), url(images/bg-pattern-bottom.svg);
background-position:top, bottom;
font-family: 'Kumbh Sans', sans-serif;
}
.container {
width:375px;
height: 100%;
margin: auto;
}
.main {
width: 350px;
height: 375px;
margin: 10% auto auto auto;
position: relative;
}
.profile-picture{
width: 25%;
position: absolute;
top: 100px;
left:37.5%;
border: 4px solid white;
border-radius: 50%;
padding: 0;
}
.top {
background-image: url(images/bg-pattern-card.svg);
height: 140px;
border-radius: 20px 20px 0 0;
}
.middle{
background-color: white;
height: 149px;
border-bottom: solid 1px hsl(0, 0%, 59%);
}
.bottom{
background-color: white;
height: 85px;
border-radius: 0 0 20px 20px;
}
h3 {
color: hsl(229, 23%, 23%);
font-weight: 700;
margin:0;
padding-top: 20%;
}
p {
color: hsl(227, 10%, 46%);
}
span{
font-weight: 400;
padding-left: 10px;
color: hsl(227, 10%, 46%);
}
.footer {
display: inline-block;
width:20%;
margin: auto;
padding: 0 10px;
}
.footer-text {
margin: 0;
padding-top: 10px;
font-size: 12px;
font-weight: 400;
}
.attribution {
font-size: 11px;
text-align: center;
margin: 20px
}
.attribution a {
color: hsl(228, 45%, 44%);
}