-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
53 lines (48 loc) · 871 Bytes
/
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
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap");
body {
background-color: hsl(212, 45%, 89%);
font-family: "Outfit", sans-serif;
}
p {
font-size: 15px;
text-align: center;
margin: 10px 20px;
}
img {
display: block;
width: 90%;
margin: auto;
border-radius: 10px;
}
.project {
position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
}
.card {
background-color: hsl(0, 0%, 100%);
width: 300px;
margin: auto;
padding-top: 15px;
border-radius: 20px;
}
.subheading {
color: hsl(218, 44%, 22%);
font-weight: 700;
font-size: 20px;
padding-top: 10px;
}
.description {
color: hsl(220, 15%, 55%);
font-weight: 400;
padding-bottom: 25px;
}
.attribution {
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}