-
Notifications
You must be signed in to change notification settings - Fork 0
/
homestyle.css
106 lines (100 loc) · 1.62 KB
/
homestyle.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
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
98
99
100
101
102
103
104
105
*{
padding: 0px;
margin:0px;
}
a i {
transition: all 0.3s linear;
color:black;
}
a:hover i {
transform: scale(1.5);
}
.mglass{
color:black;
}
.mglass:hover{
color:azure;
}
.searchbar{
width:40rem;
}
.header{
position:relative;
}
.bannerq{
font-size:5em;
font-family:Georgia, 'Times New Roman', Times, serif;
text-shadow:7px 6px rgb(59, 53, 53);
position:absolute;
top:50%
}
.bannerq span{
font-family: 'Allura', cursive;
}
.cardsrecom{
font-family: 'Roboto', sans-serif;
font-weight:700;
}
.menuitems{
list-style: none;
text-decoration: none;
}
.menuitems a{
color:black;
text-decoration: none;
}
.allrestaurents{
font-family: 'Roboto', sans-serif;
font-weight:700;
}
.card-img-top{
width:100%;
height:200px;
object-fit: cover;
}
.card-body{
height:50px;
}
.btn-outline-warning{
font-weight: bolder;
border-width:3px;
}
.restname{
color: black;
font-weight: bolder;
text-decoration: none;
display:-webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
}
.footer{
background-color: rgb(28, 24, 24);
}
.footer h1{
color:rgb(71, 72, 73);
font-size:x-large;
font-weight: bolder;
}
.footer li{
list-style-type: none;
}
.footer a{
text-decoration: none;
color: rgb(255, 255, 255);
}
@media (max-width:1025px){
.searchbar{
width:20em;
}
.bannerq{
font-size:50px;
text-shadow:4px 4px rgb(59, 53, 53);
}
}
@media (max-width:480px){
.bannerq{
font-size:larger;
text-shadow:4px 4px rgb(59, 53, 53);
}
}