-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
62 lines (51 loc) · 1.02 KB
/
styles.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
@import url("./src/styles/header.css");
@import url("./src/styles/carousel.css");
@import url("./src/styles/modal.css");
@import url("./src/styles/categories.css");
@import url("./src/styles/products.css");
:root {
--black: black;
--white: #fff;
--light-grey: #ADB5BD;
--cinza: #6C757D;
--lilas: #9353FF;
--verde-limao: #DAFF01;
}
.bg-black {
background-color: var(--black);
}
.texto-menor {
font-size: 0.8rem;
}
.btn-lilas {
color: var(--white);
background-color: var(--lilas);
border-color: var(--lilas);
transition: .4s;
}
.btn-lilas:hover {
background-color: var(--verde-limao);
color: var(--lilas);
}
.btn-lilas:active {
background-color: var(--black);
color: var(--verde-limao);
}
.divs-facilidades,
.div-novidades {
width: 325px;
}
.verde-limao {
color: var(--verde-limao);
}
.nav-item:hover {
color: var(--verde-limao);
}
.cinza-claro {
color: #ADB5BD;
}
@media screen and (min-width: 768px) {
.div-novidades {
width: 655px;
}
}