-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
50 lines (43 loc) · 932 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
@import url('https://fonts.googleapis.com/css2?family=Outfit&display=swap');
:root {
/* Colors */
--White : hsl(0, 0%, 100%) ;
--Light_gray : hsl(212, 45%, 89%) ;
--Grayish_blue : hsl(220, 15%, 55%) ;
--Dark_blue : hsl(218, 44%, 22%) ;
}
html, body {
width : 100% ;
height : 100% ;
margin : 0 ;
padding : 0 ;
text-align: center;
font-family: 'Outfit', sans-serif;
font-size : 15px ;
}
body {
background-color: var(--Light_gray);
display : flex ;
flex-direction: column ;
align-items : center ;
justify-content : center ;
position : relative ;
}
.card {
background-color: var(--White);
max-width : 300px ;
padding : 20px ;
border-radius: 15px ;
align-self: center ;
}
.card img {
width : 100% ;
border-radius : 15px ;
}
.card p {
color : var(--Grayish_blue) ;
}
.attribution {
position : absolute ;
bottom : 0 ;
}