-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_search_panel.css
82 lines (70 loc) · 1.47 KB
/
main_search_panel.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
.panel {
background-color: #93c393;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 10px; /* Applied directly */
display: flex;
flex-direction: column;
min-width: 145px;
min-height: 100px;
}
.button-container {
display: flex;
flex-direction: column;
gap: 10px; /* Applied directly */
flex-grow: 1;
}
.vertical-buttons {
display: flex;
flex-direction: column;
gap: 10px; /* Applied directly */
}
.horizontal-buttons {
display: flex;
justify-content: center;
grid-template-columns: repeat(4, 1fr);
width: 100%;
gap: 3px;
}
.horizontal-button {
aspect-ratio: 1;
width: 100%;
max-width: 70px;
max-height: 70px;
}
.button {
border: none;
background-color: hsl(115.1, 26.2%, 45.7%);
color: white;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s;
}
.button:hover {
background-color: #0056b3;
}
.vertical-button {
padding: 10px;
}
.divider {
height: 2px;
background-color: #e0e0e0;
margin: 7px 0; /* Applied directly */
}
.post_panel {
background-color: #93c393;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 10px; /* Applied directly */
display: flex;
flex-direction: column;
min-width: 145px;
min-height: 70px;
margin-top: 8px;
margin-bottom: 10px;
}
.post_horizontal-buttons {
display: flex;
justify-content: center;
grid-template-columns: repeat(4, 1fr);
width: 100%;
gap: 12px;
}