-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
31 lines (27 loc) · 837 Bytes
/
Copy pathstyle.css
File metadata and controls
31 lines (27 loc) · 837 Bytes
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
:root {
font-size: 20px;
font-family: Arial, sans-serif;
--cor-primaria: #230430;
--cor-secundaria: rgba(169, 80, 207, 0.9);
--cor-hover: rgba(214, 25, 25, 0.5);
--cor-fundo: rgba(56, 8, 78, 0.2);
--sombra-caixa: 5px 5px 15px rgba(0, 0, 0, 0.3);
.caixa_video {
position: fixed;
z-index: +1;
width: 100%;
height: 100%;
filter: brightness(0.5);
pointer-events: none;
}
.projeto_caixa {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
word-wrap: break-word;
background-color: rgba(169, 80, 207, 0.9);
padding: 20px;
border-radius: 10px;
box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
width: 400px;
max-width: 100%;
}