-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
127 lines (113 loc) · 2.4 KB
/
style.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
125
126
127
/* Website Background Styling */
html {
background: linear-gradient(200deg, rgb(255, 221, 128), rgb(255, 255, 255));
background-attachment: fixed;
height: 100%;
min-height: 100%;
cursor: pointer;
}
/* Body of Website Styling */
body {
display: block;
justify-content: center;
padding: 0rem 1rem;
padding-left: 40px;
padding-right: 40px;
padding-top: 10px;
margin:5px;
}
/* Header Styling */
.header {
padding: 1px;
text-align: center;
background: linear-gradient(200deg, rgb(243, 192, 125), rgb(241, 83, 55), rgb(243, 192, 125));
font-size: 20px;
font-family: Copperplate,Copperplate Gothic Light,fantasy;
margin: auto;
}
/* Image Logo Styling */
.header-img{
/* float: left; */
padding: 5px;
text-align: center;
}
/* Travel Pictures Styling */
.travel-imgs{
text-decoration: left;
border-radius: 50%;
position: relative;
display: inline-block;
}
/* City List Styling */
.city-list{
padding: 10px;
font-size: 30px;
font-family: Copperplate Gothic Light;
width: 400px;
box-shadow: 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
border-radius: 5px;
margin: auto;
font-weight: bold;
}
/* Add a deeper shadow */
.city-list:hover {
box-shadow: 18px 20px rgba(255, 0, 0, 0.2);
}
/*Padding inside the card container */
.container {
padding: 16px;
}
/* REstaurant data */
.hidden {
display: none;
}
.hidden-restaurant-data{
font-size: 18px;
margin-top: 5px;
padding: 5px;
}
/* Restaurant List Styling */
li {
list-style-type: none; /* Remove bullets */
margin-top: 15px;
margin: 2; /* Remove margins */
font-size: 22px;
font-family: Copperplate Gothic Light;
font-weight: normal;
}
/* Styling delete Buttons */
button{
background-color: #f80707;
text-align: center;
color: rgb(0, 0, 0);
margin: 4px 6px;
cursor: pointer;
border-radius: 8px;
}
/* styling Create Restaurant Form as whole */
.restaurant-form{
border: none;
background: linear-gradient(200deg, rgb(243, 192, 125), rgb(241, 83, 55), rgb(243, 192, 125));
text-align: center;
margin-top: 5px;
margin: auto;
}
/* Styling Form Submit Buttons */
.form-button{
background-color: #ece4e4;
text-align: center;
color: rgb(0, 0, 0);
margin: 4px 6px;
cursor: pointer;
border-radius: 8px;
}
/* styling the city dropdown */
.select-city-restaurant{
padding: 10px 10px;
border: none;
border-radius: 40px;
background-color: #f59c38;
font-family: Copperplate Gothic Light;
font-size: 16px;
}