-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorderSystem.css
More file actions
102 lines (84 loc) · 1.26 KB
/
Copy pathorderSystem.css
File metadata and controls
102 lines (84 loc) · 1.26 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
/* 基本スタイル */
body {
display: flex;
flex-direction: column;
align-items: center;
}
main {
width: 90%;
display: flex;
flex-direction: column;
align-items: center;
}
.container {
width: 95%;
display: flex;
flex-direction: column;
align-items: center;
}
button {
background-color: lightblue;
border: none;
width: 15%;
padding: 2%;
border-radius: 50%;
color: darkblue;
font-size: 100%;
}
button:hover {
cursor: pointer;
}
/* 注文スタイル */
form {
display: flex;
flex-direction: row;
gap: 2%;
}
.picture {
display: flex;
flex-direction: column;
align-items: center;
width: 15%;
border-style: solid;
border-color: orange;
border-radius: 5%;
padding: 1%;
margin: 1%;
gap: 1%;
}
.fruitName {
height: 15%;
}
img {
width: 90%;
height: 60%;
margin: 10px;
}
.fruitPrice {
height: 10%;
margin: 3%;
}
input {
width: 80%;
}
button {
margin: 20px;
}
/* 履歴スタイル */
table {
width: 100%;
border-style: dashed;
}
th, td {
width: 10%;
}
th {
background-color: lightgoldenrodyellow;
}
td {
text-align: center;
border-top: 3px solid darkcyan;
}
tr:last-child td{
text-align: end;
}