-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
36 lines (33 loc) · 688 Bytes
/
Copy pathstyle.css
File metadata and controls
36 lines (33 loc) · 688 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
32
33
34
35
36
@import url(./style/header.css);
@import url(./style/banner.css);
@import url(./style/about.css);
@import url(./style/cardapio.css);
@import url(./style/conhecer.css);
@import url(./style/footer.css);
:root {
--vermelho-esc: #8C0712;
--vermelho: #D9072D;
--bg0: #fcf1e7;
--bg1: #FFF2E6;
--bg2:#F5D5A8;
--bg3: #D9933D;
--bg4: #F5A61D;
--marrom: #40260F;
--marrom-gradiente: #4b2504d2;
--font-one: 'Dynalight';
--font-two: 'Overlock';
--font-three: 'DM Serif Display';
}
html{
scroll-behavior: smooth;
}
body{
background-color: var(--bg1);
font-family: var(--font-two);
}
@keyframes descer {
to {
opacity: 1;
transform: translateY(0);
}
}