-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (86 loc) · 1.79 KB
/
Copy pathstyle.css
File metadata and controls
103 lines (86 loc) · 1.79 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
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
:root {
--spacing-tiny: 4px;
--spacing-smaller: 8px;
--spacing-small: 12px;
--spacing-normal: 16px;
--spacing-medium: 24px;
--spacing-large: 32px;
--spacing-huge: 48px;
--spacing-massive: 64px;
--cor-primaria: #333;
--cor-secundária-backgraund: #f4f4f4;
}
body {
font-family: Arial, Helvetica, sans-serif;
margin: 0;
display: flex;
flex-direction: column;
background-color: var(--cor-secundária-backgraund);
height: 100vh;
}
.header {
background-color: var(--cor-primaria);
display: flex;
justify-content: space-between;
align-content: center;
padding: 20px;
}
.logo {
font-size: 20px;
color: white;
}
.menu {
display: flex;
gap: 15px;
}
a {
color: white;
}
a:hover {
color: lightgray;
cursor: pointer;
}
.list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px,1fr));
align-content: flex-start;
}
.card {
display: flex;
flex-direction: column;
align-items: center;
background-color: white;
padding: 20px;
gap: 15px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 5px;
}
.avatar {
width: 70px ;
height: 70px;
}
.profissao {
color: gray;
margin: 0;
}
a {
color: white;
text-decoration: none;
}
a:hover{
color: lightgray;
cursor: pointer;
}
.footer {
display: flex;
color: white;
background-color:#333;
justify-content: space-evenly;
}
.footer-menu {
display: flex;
align-content: flex-start;
flex-direction: column;
padding: 20px;
gap: 3px;
}