-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
57 lines (49 loc) · 1.13 KB
/
Copy pathstyles.css
File metadata and controls
57 lines (49 loc) · 1.13 KB
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
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
:root{
--White: hsl(0, 0%, 100%);
--Light-gray: hsl(212, 45%, 89%);
--Grayish-blue: hsl(220, 15%, 55%);
--Dark-blue: hsl(218, 44%, 22%);
}
img{
max-width: 100%;
}
body{
background-color: var(--Light-gray);
font-family: "outfit", sans-serif;
font-size: 15px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: calc(100vh - 1px);
}
.contenedor{
background-color: var(--White);
border-radius: 1rem;
padding: 1.25rem;
margin-bottom: 2rem;
box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.05)
}
.contenedor img {
border-radius: 0.625rem;
margin-bottom: 1rem;
}
.contenedor h1{
color: var(--Dark-blue);
font-size: 22px;
text-align: center;
margin-top: 0rem;
margin-bottom: 1rem;
}
.contenedor p{
color: var(--Grayish-blue);
text-align: center;
}
@media (min-width: 375px){
.contenedor{
width: 280px;
}
}