-
Notifications
You must be signed in to change notification settings - Fork 0
/
mediaScreen.css
124 lines (120 loc) · 2.35 KB
/
mediaScreen.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
@media screen and (max-width:700px){
/* ---------banner------------ */
.banner{
margin-top: 10px;
height: 130vh;
/* background-color: #000000; */
}
.banner-sm{
text-align: center;
}
.banner-row{
display: flex;
flex-direction: column-reverse;
}
.banner-name{
font-weight: 700;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 2em;
}
.banner p{
font-size: 1rem;
margin-bottom: 20px;
}
.bttn-primery{
width: 120px;
height: 40px;
font-size: large;
background-color: #ffff;
color: #003a92;
border: #013c94 solid 2px;
}
.bttn-primery:hover{
background-color: #000000;
color: white;
border: none;
}
.banner-img img{
width: 100%;
height: 4 0px;
border-radius: 10px;
margin-top: 10px;
}
/* --------- FEATURESection------------- */
.FEATURE-row{
display: flex;
justify-content: space-evenly;
width: auto;
}
.FEATURE-col {
width: 90px;
}
.FEATURE-col img{
width: 100px;
}
.FEATURESection{
height: 200px;
margin-top: 20px;
}/* ---------------Letest Review------------------- */
.card-contain img{
height: 350px;
width: 420px;
margin: 0px 15px 0px 15px;
border-radius: 10px;
}
.red-butt{
border: none;
font-weight: 400;
margin-bottom: 20px;
margin-left: 10px;
background-color: cornsilk;
}
.red-butt:hover{
color: #853e0b;
}
.letstrevi-card{
margin-top: 30px;
margin-bottom: 50px;
}
/* -------------Restaurant--------------- */
.Restaurant{
margin: 10px 0px;
background-color: #f0f3f8;
}
.card{
border: none !important;
}
.card img{
border-radius: 15px;
}
/* --------------contact---------------- */
.contact{
border: #000000 2px solid;
padding: 3px;
display: flex;
flex-direction: column;
}
.contact-deti{
margin: 20px 0px;
}
.contact-deti input{
margin-left: 50px;
}
.contact-img img{
width: 400px;
height: 350px;
margin-left: 20px;
border-radius: 10px;
box-shadow: #9c7575 4px -2px 12px 2px;
}
.sub{
background-color: #003a92;
border: none;
color: #ffff;
}
.sub:hover{
border: #000000 1px solid;
color: #ff0000;
background-color: #f0f3f8;
}
}