-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.css
71 lines (66 loc) · 1.1 KB
/
common.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
table {
font-family: Arial, Helvetica, sans-serif;
border-collapse: collapse;
width: 90%;
margin: auto;
margin-top: 50px;
text-align: center;
}
table td,
table th {
border: 1px solid #ddd;
padding: 8px;
text-align: center;
}
table th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #0468aa;
color: white;
text-align: center;
}
body {
margin: 0;
padding: 0;
}
#navbar {
display: flex;
justify-content: space-around;
background-color: rgb(30, 121, 163);
padding: 0px;
}
a {
text-decoration: none;
color: white;
}
#filterVenue {
margin-left: 40px;
margin-bottom: 30px;
padding: 10px;
background-color: rgb(30, 121, 163);
color: white;
margin-top: 40px;
font-weight: bold;
}
.heading {
margin-bottom: 100px;
text-align: center;
}
#masaiForm {
display: flex;
justify-content: center;
align-items: center;
}
#masaiForm > input,
#masaiForm > select {
margin: 0px 10px;
padding: 10px;
}
#masaiForm > input[type="submit"] {
background-color: #0468aa;
border: 0;
color: white;
padding: 15px 20px;
font-weight: bold;
}