-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
81 lines (67 loc) · 1.56 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
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');
* {
margin: 0px;
padding: 0px;
}
:root {
--white:hsl(0, 0%, 100%);
--backgroundcolor: #D6E2F0;
--black: black;
--pcolor: #7B879D;
--darkblue: hsl(218, 44%, 22%);
--Grayish: hsl(220, 15%, 55%);
}
body {
background-color: var(--backgroundcolor);
font-family: 'Outfit', sans-serif;
height: 100vh;
font-size: 15px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#card {
/* nao se deve colocar a hight aqui pois s eu nao colocar, a altura sera ajustada atomaticamente dependendo do tamanho do conteúdo dentro do card*/
max-width: 272px;
background-color: var(--white);
border-radius: 10px;
padding: 16px;
box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.142);
margin-bottom: 16px;
}
#card img {
border-radius: 10px;
width: 100%;
max-width: 288px;
max-height: 288px;
}
#card h1 {
font-weight: 700;
font-size: 22px;
font-family: 'Outfit', sans-serif;
color: var(--darkblue);
width: 100%;
text-align: center;
margin-top: 10px;
margin-bottom: 10px;
}
#card p {
font-weight: 400;
font-family: 'Outfit', sans-serif;
text-align: center;
color: hsl(220, 15%, 55%);
font-size: 15px;
display: block;
margin-top: 16px;
margin-bottom: 16px;
}
#creditos {
color: var(--black);
text-align: center;
font-size: smaller;
}
#creditos a {
color: var(--darkblue);
}