-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (56 loc) · 1.11 KB
/
Copy pathstyle.css
File metadata and controls
67 lines (56 loc) · 1.11 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
58
59
60
61
62
63
64
65
66
67
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@600;800&display=swap');
*{
margin: 0;
padding: 0;
font-family: 'Figtree', sans-serif;
}
html, body{
height: 100%;
width: 100%;
}
.flex{display: flex;}
.main{
height: 100%;
width: 100%;
background-color: hsl(47, 88%, 63%);
justify-content: center;
align-items: center;
}
.card{
background-color: white;
width: 332px;
height: 467px;
border: solid 2px black;
border-radius: 20px;
box-shadow: 10px 10px black;
flex-direction: column;
padding: 24px;
justify-content: space-between;
}
.imagen{
border-radius: 15px;
overflow: hidden;
}
.learning{
height: 29px;
width: 80px;
background-color: hsl(47, 88%, 63%);
justify-content: center;
align-items: center;
border-radius: 5px;
}
#parrafo{
color: hsl(0, 0%, 50%);
}
#foto{
height: 30px;
}
.autor{
flex-direction: row;
align-items: center;
gap: 5px;
}
#titulo:hover{
color: hsl(47, 88%, 63%);
cursor: pointer;
}