-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (75 loc) · 1.5 KB
/
style.css
File metadata and controls
77 lines (75 loc) · 1.5 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
* {
font-family: 'Montserrat', sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
min-height: 100vh;
background-image: linear-gradient( 180.5deg, rgba(0,128,128,1) 8.5%, rgba(174,206,100,1) 118.2% );
}
.wrapper {
display: flex;
flex-direction: column;
margin-top: 20px;
background-color: #fff;
padding: 20px;
max-width: 780px;
width: 100%;
height: 570px;
border-radius: 5px;
text-align: center;
}
/* Buttons-block */
.caterory-btn {
padding: 10px;
cursor: pointer;
transition: all .3s linear;
outline: none;
border: none;
border-radius: 5px;
}
.caterory-btn i {
margin-right: 10px;
}
.caterory-btn.all {
background-color: rgb(153, 185, 236);
}
.caterory-btn.meat {
background-color: tomato;
}
.caterory-btn.fruits {
background-color: yellowgreen;
}
.caterory-btn.dairy-products {
background-color: bisque;
}
/* Category-block */
.categories-block {
margin-top: 30px;
}
.category-list {
list-style: none;
/* border: 1px solid #999; */
border-radius: 5px;
}
.category-item {
margin-bottom: 5px;
font-size: 28px;
}
.category-item i {
margin-right: 10px;
}
.category-item.meat {
background-color: rgba(255, 99, 71, .3);
}
.category-item.fruits {
background-color: rgba(154, 205, 50, .3);
}
.category-item.dairy-products {
background-color: rgba(255, 228, 196, .3);
}