-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteste.css
84 lines (79 loc) · 1.54 KB
/
teste.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
* {
margin: 0;
padding: 0;
}
:root{
--dark-cyan: hsl(185, 75%, 39%);
--heavy-blue: hsl(229, 23%, 23%);
--grey-blue: hsl(227, 10%, 46%);
--dark-gray: hsl(0, 0%, 59%);
}
body {
background: var(--dark-cyan);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-image: url(./midias/bg-pattern-top.svg), url(./midias/bg-pattern-bottom.svg);
background-repeat: no-repeat, no-repeat;
background-position: right 51vw bottom 50vh , left 51vw top 50vh;
}
.flex {
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
height: 100vh;
}
.card {
background: whitesmoke;
max-width: 320px;
height: 350px;
border-radius: 15px;
box-shadow: 0 1px 10px rgba(0, 0, 0, 0.21);
}
.img-header {
display: block;
border-radius: 14px 14px 0 0;
width: 100%;
}
.card-img {
display: block;
border: 4px solid honeydew;
border-radius: 50%;
margin-top: calc(-16%);
}
.card-body {
display: flex;
align-items: center;
flex-direction: column;
}
h3 {
margin-top: 15px;
color: rgb(66, 68, 68)
}
span {
color: var(--dark-gray);
font-weight: 400;
}
.cidade {
margin-top: 12px;
font-weight: 200;
font-size: 15px;
}
hr {
transform: translateY(30px);
color: gray;
}
.footer {
display: flex;
justify-content: space-evenly;
margin-top: 39px;
}
.footer-items {
text-align: center;
}
.footer-items h4 {
color: rgb(66, 68, 68);
font-size: 20px;
}
.atributos {
font-size: 10px;
}