forked from vutran2305/Store-MVC-ASP.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style2.css
57 lines (54 loc) · 1.3 KB
/
style2.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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap");
/* app controner*/
.app_container {
background-color: #F5F5F5;
}
.category{
border-radius: 2px;
background-color: var(--White--color);
}
.category_heading{
color: var(--text-color);
font-size: 1.7rem;
padding: 12px 16px;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.category_heading-icon{
font-size: 1.4rem;
margin-right: 4px;
position: relative;
top: -1px;
}
.category-list{
padding: 0 0 8px 0;
list-style:none ;
margin-left: 9px;
}
.category-item{
}
.category-item--active .category-item__link{
color: var(--primary-color);
}
.category-item--active .category-item__link ::before{
content: "";
position: absolute;
top:50%;
left:6px;
border:4px solid;
transform:translateY(calc(-50%-1px));
border-color: transparent transparent transparent var(--primary--color);
}
.category-item__link{
text-decoration: none;
color: var(--text-color);
font-size: 1.6rem;
padding: 4px 16px;
display: block;
transition: right linear 0.1s;
right: 0;
position: relative;
}
.category-item__link:hover{
right: -4px ;
color: var(--primary-color);
}