-
Notifications
You must be signed in to change notification settings - Fork 0
/
introdução.css
111 lines (96 loc) · 1.94 KB
/
introdução.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
* {
box-sizing: border-box;
}
body {
display: flex;
align-items: center;
justify-content: center;
margin: 0;
height: 100vh;
background: #221d2d;
color: #fdfcfd;
font-family: "Euclid Circular A", "Poppins";
}
.card {
display: flex;
align-items: center;
width: 75vw;
max-width: 650px;
padding: 50px 30px 50px 20px;
background: #121017;
border-radius: 24px;
}
.card img {
max-width: 280px;
width: 35vw;
height: 300px;
object-fit: cover;
margin-left: -60px;
margin-right: 30px;
border-radius: inherit;
box-shadow: 0 60px 40px rgb(0 0 0 / 8%);
}
.card h2 {
font-size: 26px;
font-weight: 400;
margin-top: 0;
margin-right: 30px;
margin-bottom: 10px;
}
.card h3 {
font-size: 16px;
font-weight: 400;
margin: 0;
opacity: 0.75;
}
.card p {
font-size: 14px;
font-weight: 400;
margin-bottom: 30px;
opacity: 0.5;
}
.card button {
border: 1px solid #f8f8f8;
background: transparent;
color: #f8f8f8;
font-family: inherit;
padding: 16px 26px;
font-size: 16px;
border-radius: 40px;
}
@media (width <= 600px) {
.card {
margin: 0 40px;
padding-left: 50px;
padding-right: 50px;
padding-bottom: 60px;
width: 100%;
text-align: center;
flex-direction: column;
}
.card h2 {
margin-right: 0;
font-size: 26px;
}
.card img {
margin: -100px 0 30px 0;
width: 100%;
max-width: 1000px;
height: 250px;
}
.card p {
max-width: 360px;
}
}
@media (width <= 440px) {
.card img {
height: 45vw;
width: 45vw;
border-radius: 50%;
margin: -140px 0 30px 0;
}
}
a{
color: #fdfcfd;
text-decoration: none;
}