-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
115 lines (93 loc) · 1.74 KB
/
Copy pathstyle.css
File metadata and controls
115 lines (93 loc) · 1.74 KB
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
body {
background:#e1d7d4;
font-family: "Roboto Mono", monospace;
}
h1 {
font-family: Rubik;
margin: 0 auto;
color: #e34e45;
font-weight: 700;
font-size: 2.5em;
}
h4 {
margin-top: 0;
}
section:first-child {
display: grid;
justify-content: center;
padding: 50px 150px;
margin: 0 auto;
text-align: center;
}
#table {
background: #eee;
display: grid;
grid-template-columns: auto auto auto;
grid-template-rows: auto auto auto;
grid-gap: 1.5rem;
padding: 20px 50px;
border-radius: 5px;
}
#table div {
height: 75px;
width: 75px;
background: #ccc;
border-radius: 50%;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
color: #ADAAAA;
}
/* form */
form {
display: flex;
flex-direction: column;
justify-content: center;
max-width: 500px;
background: white;
border-radius: 5px;
padding: 20px;
margin: 0 auto;
box-shadow: 0px 0px 31px 1px rgba(0,0,0,0.3);
}
#cancel {
text-align: right;
cursor: pointer;
}
form h2 {
margin-top: 0;
color: #e34e45;
}
form input {
padding: 15px;
margin: 5px 0;
border-top: none;
border-right: none;
border-bottom: 1px solid #ccc;
border-left: none;
}
button {
margin: 20px 0;
padding: 15px;
background: #008000;
color: white;
box-shadow: 0px 5px 15px 1px rgba(0,0,0,0.3);
}
.reserved {
background: #adaaaa !important;
color: #eee !important;
cursor: not-allowed;
}
#bottom {
position: absolute;
width: 100%;
top: 100px;
display: none;
}
.available {
cursor: pointer;
}
.available:hover {
box-shadow: 0px 5px 15px 1px rgba(0,0,0,0.3);
}