-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
65 lines (65 loc) · 1.08 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
main{
display: grid;
width: 70%;
margin: 80px;
margin-left: 10%;
grid-template-columns: 1fr 3fr;
column-gap: 20px;
}
@media(max-width: 960px){
main{
display: block;
width: 90%;
margin: 40px 20px 20px 20px;
}
}
.seats{
border: 1px solid grey;
text-align: center;
padding: 20px;
}
.how-to{
background: navy;
border-radius: 10px;
width: 100%;
height: 50px;
color: white;
}
.seats p{
color: blue;
}
#seat3{
margin-left: 30px;
}
.input-field{
border: 1px solid whitesmoke;
padding: 10px;
}
select{
width: 100%;
padding: 10px;
border-radius: 10px;
border: 1px solid grey;
}
.input-field input{
width: 93%;
padding: 10px;
border-radius: 10px;
border: 1px solid rgb(10, 10, 10);
}
.tabulate{
background: rgb(52, 52, 243);
border-radius: 10px;
margin: 10px;
width: 100px;
height: 50px;
color: white;
cursor: pointer;
}
table, td{
table-layout: fixed;
width: 100%;
margin: 20px 0px 20px 0px;
padding: 10px;
border: 1px solid black;
}