-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (81 loc) · 1.83 KB
/
Copy pathstyle.css
File metadata and controls
97 lines (81 loc) · 1.83 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root{
--bs-warning: #fe9f10;
--bs-font-sans-serif: Poppins, sans-serif !important;
--bs-warning-rgb: 254, 159, 16;
--bs-link-hover-color-rgb: #fe9f10;
--bs-light-rgb: 255, 248, 224;
}
.btn-warning{
--bs-btn-color: #fff;
--bs-btn-bg: #fe9f10;
--bs-btn-border-color: #fe9f10;
--bs-btn-hover-color: #fe9f10;
--bs-btn-hover-bg: #fff;
}
.btn-outline-warning{
--bs-btn-hover-color:white;
}
.btn:hover i{
color: #fe9f10;
}
h1, h2{
font-family: 'Lobster';
}
.nav-link.active{
color: var(--bs-warning) !important;
font-weight: bold;
}
.hero-side::before{
content: '';
position: absolute;
width: 100%; height: 100%;
background: url('assets/pattern.png');
opacity: 0.25;
}
.nav-link:focus, .nav-link:hover{
color: var(--bs-warning);
}
.food-item.hide{
display: none;
}
.btn.active{
color: white;
}
.img-line{
width: 50%;
height: 1px;
margin: 0 15px;
border-bottom: 1px dashed #7D7D7D;
}
#reserve form input{
border: none;
background: transparent;
margin: 1rem 0rem;
padding: 1rem;
color: white;
border-radius: 0;
border-bottom: 1px solid white;
}
#reserve form input::placeholder{
color: currentColor;
}
.icon{
background: #fff8e2;
}
.icon img{
width: 100%;
}
.border-right{
border-right: 1px dashed #ccc;
}
@media only screen and (max-width: 768px) {
html{
font-size: 50%;
}
}