-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (64 loc) · 1.06 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
text-align: center;
}
body {
font-family: "Inter", sans-serif;
font-size: 14px;
height: 100vh;
background-color: hsl(0, 0%, 8%);
display: flex;
align-items: center;
}
.container {
max-width: 360px;
margin: 0 auto;
display: flex;
align-content: center;
}
.card {
width: 360px;
border-radius: 9px;
padding: 30px;
background-color: hsl(0, 0%, 12%);
}
img {
width: 80px;
margin-bottom: 20px;
border-radius: 50%;
}
.link {
display: flex;
flex-direction: column;
justify-content: space-between;
}
h2 {
font-weight: 600;
color: hsl(0, 0%, 100%);
}
.address {
font-weight: 600;
color: hsl(75, 94%, 57%);
margin: 8px 0 25px 0;
}
p {
font-weight: 300;
color: hsl(0, 0%, 100%);
margin-bottom: 20px;
}
button {
font-weight: 700;
border: none;
border-radius: 6px;
width: 100%;
padding: 13px 0;
margin-bottom: 13px;
color: hsl(0, 0%, 100%);
background-color: hsl(0, 0%, 20%);
}
button:hover {
background-color: hsl(75, 94%, 57%);
color: hsl(0, 0%, 12%);
}