-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
81 lines (63 loc) · 1.2 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
80
81
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
* {
font-family: "Outfit", sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-size: 15px;
position: relative;
}
h3 {
line-height: 2rem;
color: hsl(218, 44%, 22%);
font-weight: bold, 700;
font-size: 25px;
margin-left: 1.5rem;
margin-right: 1.5rem;
}
p{
font-size: 1rem;
line-height: 1.2rem;
color: hsl(208, 5%, 53%);
margin-top: 15px;
padding: 0 5px;
font-weight: 400;
margin-left: 1.5rem;
margin-right: 1.5rem;
}
.container {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background-color: hsl(218, 40%, 82%);
}
.card {
max-width: 400px;
border-radius: 20px;
background-color: #fff;
padding: 18px;
text-align: center;
}
.img-container {
overflow: hidden;
}
.img-container img {
max-width: 100%;
border-radius: 10px;
}
.content {
padding: 15px 10px;
margin-top: 7px;
margin-bottom: 10px;
}
.attribution {
position: relative;
bottom: 0;
left: 0;
right: 0;
padding: 7px;
text-align: center;
}