-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
60 lines (48 loc) · 864 Bytes
/
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
body {
border: 25px 25px solid hsl(0, 0%, 100%);
width: 1440px;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
}
#image {
width: 280px;
border-radius: 20px;
margin-right: 20px;
}
@font-face {
font-family: 'outfit';
src: url(font/Outfit.ttf) format(truetype);
}
#important {
display: flex;
flex-direction: column;
font-size: 15px;
font-family: 'outfit';
}
#first {
font-weight: 700;
width: 170px;
color: hsl(218, 44%, 22%);
text-align: center;
}
#second {
font-weight: 400;
width: 200px;
color: hsl(220, 15%, 55%);
text-align: center;
}
.attribution {
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}
@media (max-width: 600px) {
body {
width: 375px;
}
}