-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgohan_dousuru.css
89 lines (76 loc) · 1.46 KB
/
gohan_dousuru.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
body {
font-family: 'Hachi Maru Ppo', cursive;
margin: 20px;
cursor: url('image/cursor1.png'), auto;
background-color: #d5eaf6;
}
h1 {
text-align: center;
}
.description {
text-align: center;
margin-top: 2px;
}
a {
cursor: url('image/cursor2.png'), auto;
}
select {
cursor: url('image/cursor2.png'), auto;
width: 300px;
max-width: 100%;
}
input[type="text"],
button {
cursor: url('image/cursor2.png'), auto;
}
input[type="date"],
button {
cursor: url('image/cursor2.png'), auto;
}
.tile-container {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.tile {
border: 2px solid #ccc;
border-radius: 8px;
padding: 10px;
text-align: center;
width: 100px;
transition: border-color 0.3s;
cursor: url('image/cursor2.png'), auto;
}
.tile.selected {
border-color: #ffdbe0;
background-color: #ffe9ec;
}
.tile img {
width: 50px;
height: 50px;
margin-bottom: 5px;
cursor: url('image/cursor2.png'), auto;
}
.submit-button {
margin-top: 20px;
padding: 10px 15px;
background-color: #088F8F;
color: white;
border: none;
border-radius: 5px;
cursor: url('image/cursor2.png'), auto;
}
.tw-hidden {
display: none;
height: 0;
visibility: hidden;
overflow: hidden;
}
.container {
max-width: 600px;
margin: auto;
padding: 20px;
background: white;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}