-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
93 lines (78 loc) · 1.52 KB
/
Copy pathstyles.css
File metadata and controls
93 lines (78 loc) · 1.52 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
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #1c1c1c;
color: #e0e0e0;
}
.header {
padding: 1em;
text-align: center;
background-color: #2a2a2a;
color: #9a66ff;
}
.container {
display: flex;
flex-wrap: wrap;
gap: 1.5em;
padding: 2em;
justify-content: center;
}
.project-card {
background-color: #2e2e2e;
border: 2px solid #9a66ff;
border-radius: 10px;
padding: 1.5em;
width: 280px;
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
cursor: pointer;
}
.project-card h2 {
color: #9a66ff;
margin-bottom: 0.5em;
}
.project-card p {
font-size: 0.9em;
color: #bfbfbf;
}
/* Efeito hover */
.project-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 16px rgba(154, 102, 255, 0.3);
}
/* Status dos projetos */
.status {
font-weight: bold;
padding: 0.2em 0.5em;
border-radius: 5px;
display: inline-flex;
align-items: center;
gap: 5px;
}
.status::before {
content: '';
display: inline-block;
width: 8px;
height: 8px;
border-radius: 50%;
}
/* Cor diferenciada para cada status */
.status.iniciado {
color: #4caf50;
}
.status.iniciado::before {
background-color: #4caf50;
}
/* Cor diferenciada para "em andamento" */
.status.em-andamento {
color: #ff9800;
}
.status.em-andamento::before {
background-color: #ff9800;
}
.status.nao-iniciado {
color: #ff4d4d;
}
.status.nao-iniciado::before {
background-color: #ff4d4d;
}