-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathorder.css.html
75 lines (62 loc) · 960 Bytes
/
order.css.html
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
<style>
body {
font-family: Microsoft JhengHei;
}
div {
-webkit-column-gap: 0px;
-moz-column-gap: 0px;
column-gap: 0px;
}
.header {
display: flex;
flex-direction: column;
text-align: center;
justify-content: center;
}
.logo > span {
margin-left: 30px;
font-size: 60px;
font-weight: 900;
color: #ddd;
}
.main {
margin: auto;
border-style: solid;
border-color: #000;
border-width: 0px;
width: 960px;
}
.header {
background-color: #003c4f;
width: 100%;
height: 200px;
background-color: #003c4f;
}
.container {
background-color: #dddddd;
width: 960px;
padding: 20px 0 20px 0;
}
.drinkList {
width: 100%;
margin: 10px 0 0 0;
}
td {
text-align: center;
color: #003c4f;
font-weight: bold;
padding: 0 12px 0 12px;
}
tr:hover {
background-color: #be9457;
}
td:focus {
border-style: solid;
border-color: #000;
border-width: 2px;
}
a {
color: inherit;
text-decoration: none;
}
</style>