-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (52 loc) · 934 Bytes
/
style.css
File metadata and controls
52 lines (52 loc) · 934 Bytes
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
body{
width: 100%;
height: 100vh;
background-color: hsl(0, 0%, 8%);
color: hsl(0, 0%, 100%);
display: grid;
place-items: center;
margin: 0;
font-family: "Inter", sans-serif;
}
.main-container{
width: 280px;
aspect-ratio: 8/13;
background-color: hsl(0, 0%, 12%);
padding: 20px;
border-radius: 15px;
}
button{
background-color: hsl(0, 0%, 20%);
color: hsl(0, 0%, 100%);
width: 100%;
aspect-ratio: 16/2.25;
border-radius: 10px;
margin: 8px 0;
border: none;
}
.image{
width: 100%;
height: fit-content;
display: flex;
display: grid;
place-items: center;
padding: 0;
margin: 0;
}
img{
width: 90px;
border-radius: 50%;
}
p,h3,h4{
text-align: center;
}
h3{
margin-bottom: 10px;
}
p{
color: hsl(0, 0%, 70%);
}
h4{
margin-top: 0;
color: hsl(75, 94%, 57%);
}